diff options
Diffstat (limited to 'dxr3pesframe.h')
-rw-r--r-- | dxr3pesframe.h | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/dxr3pesframe.h b/dxr3pesframe.h index b9aa664..bead78b 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; }; |