diff options
Diffstat (limited to 'dxr3pesframe.h')
-rw-r--r-- | dxr3pesframe.h | 26 |
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: |