diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2010-01-09 20:53:17 +0100 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2010-01-09 20:53:17 +0100 |
commit | 7ebd290822891494ce536126a2ee446bcd69876e (patch) | |
tree | cee2f08545efdc3e1eb302e5a9def60ecc9cf87a /dxr3syncbuffer.h | |
parent | 2c2988b4a7afd8f049f2b7ac8a793a6f390b7cf7 (diff) | |
download | vdr-plugin-dxr3-7ebd290822891494ce536126a2ee446bcd69876e.tar.gz vdr-plugin-dxr3-7ebd290822891494ce536126a2ee446bcd69876e.tar.bz2 |
there is no need for m_count variable
Diffstat (limited to 'dxr3syncbuffer.h')
-rw-r--r-- | dxr3syncbuffer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dxr3syncbuffer.h b/dxr3syncbuffer.h index 9b84abd..49ed8c6 100644 --- a/dxr3syncbuffer.h +++ b/dxr3syncbuffer.h @@ -38,7 +38,7 @@ const uint32_t UNKNOWN_ASPECT_RATIO = 0xFFFFFFFF; class cFixedLengthFrame : private Uncopyable { public: cFixedLengthFrame() : samplerate(UNKNOWN_DATA_RATE), channels(UNKNOWN_CHANNEL_COUNT), aspectratio(UNKNOWN_ASPECT_RATIO), - pts(0), m_count(0), m_length(0) + pts(0), m_length(0) {} ~cFixedLengthFrame(); @@ -56,7 +56,6 @@ public: private: uint8_t* m_pData; - int m_count; int m_length; }; |