summaryrefslogtreecommitdiff
path: root/dxr3pesframe.h
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2009-06-05 16:09:50 +0200
committerChristian Gmeiner <christian.gmeiner@gmail.com>2009-06-05 16:09:50 +0200
commitaa46f29d19b3f53479d39056dde69c9b1b6cfe8b (patch)
tree98c2fe400b0ad76a3265938d990071dfc2a288a2 /dxr3pesframe.h
parent7204d3d5b04a0612dcfe318605e2083a184dff23 (diff)
parent258901012adff5929c9488fe621101d7aa3e42e7 (diff)
downloadvdr-plugin-dxr3-aa46f29d19b3f53479d39056dde69c9b1b6cfe8b.tar.gz
vdr-plugin-dxr3-aa46f29d19b3f53479d39056dde69c9b1b6cfe8b.tar.bz2
Merge branch 'master' of gitosis@community.xeatre.tv:vdr-plugin-dxr3
Diffstat (limited to 'dxr3pesframe.h')
-rw-r--r--dxr3pesframe.h26
1 files changed, 6 insertions, 20 deletions
diff --git a/dxr3pesframe.h b/dxr3pesframe.h
index b9aa664..5c561a3 100644
--- a/dxr3pesframe.h
+++ b/dxr3pesframe.h
@@ -114,20 +114,10 @@ public:
return m_verticalSize;
}
- SampleContext GetSampleContext() const
- {
- return ctx;
- }
-
- uint32_t GetDecodedSize() const
- {
- return decodedSize;
- }
-
- const int16_t *GetDecoded()
- {
- return decoded;
- }
+ // needed for audio
+ uint32_t decodedSize;
+ int16_t *decoded;
+ SampleContext ctx;
private:
ePesDataType m_pesDataType;
@@ -143,11 +133,6 @@ private:
static uint32_t m_staticAspectRatio;
- // needed for audio
- uint32_t decodedSize;
- const int16_t *decoded;
- SampleContext ctx;
-
static const uint32_t MAX_PES_HEADER_SIZE;
};
@@ -157,5 +142,6 @@ private:
// mode: c++
// c-file-style: "stroustrup"
// c-file-offsets: ((inline-open . 0))
-// indent-tabs-mode: t
+// tab-width: 4;
+// indent-tabs-mode: nil
// End: