summaryrefslogtreecommitdiff
path: root/dxr3pesframe.h
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2009-04-20 07:35:56 +0200
committerChristian Gmeiner <christian.gmeiner@gmail.com>2009-04-20 07:35:56 +0200
commit82e43dfb074b8fa3433e78fabe4fa8c7b0e09fbc (patch)
treecec6ac9cf3ee6181fa95197319c03a72d852c851 /dxr3pesframe.h
parente84bdab30df96e732a770d3651b4249e49630c33 (diff)
downloadvdr-plugin-dxr3-82e43dfb074b8fa3433e78fabe4fa8c7b0e09fbc.tar.gz
vdr-plugin-dxr3-82e43dfb074b8fa3433e78fabe4fa8c7b0e09fbc.tar.bz2
extend cDxr3PesFrame about SampleContext and decode buffer
Diffstat (limited to 'dxr3pesframe.h')
-rw-r--r--dxr3pesframe.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/dxr3pesframe.h b/dxr3pesframe.h
index 3a8cdf9..c4723f7 100644
--- a/dxr3pesframe.h
+++ b/dxr3pesframe.h
@@ -24,6 +24,7 @@
#include <assert.h>
#include <stdint.h>
+#include "dxr3audio.h"
#include "Uncopyable.h"
// ==================================
@@ -150,6 +151,11 @@ protected:
static uint32_t m_staticAspectRatio;
+ // needed for audio
+ uint32_t decodedSize;
+ const int16_t *decoded;
+ SampleContext ctx;
+
protected:
static const uint32_t MAX_PES_HEADER_SIZE;
};