summaryrefslogtreecommitdiff
path: root/dxr3pesframe.h
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2009-04-15 07:55:50 +0200
committerChristian Gmeiner <christian.gmeiner@gmail.com>2009-04-15 07:55:50 +0200
commit20e7abde6689b41807e84f1074b8e747622cf03b (patch)
treeda494ad479c32bb2f83d9160f90ccfd690ff70a3 /dxr3pesframe.h
parentce1429756946637a538872a606bfeaa755be2fb3 (diff)
downloadvdr-plugin-dxr3-20e7abde6689b41807e84f1074b8e747622cf03b.tar.gz
vdr-plugin-dxr3-20e7abde6689b41807e84f1074b8e747622cf03b.tar.bz2
rename es to payload in pesframe and co
Diffstat (limited to 'dxr3pesframe.h')
-rw-r--r--dxr3pesframe.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/dxr3pesframe.h b/dxr3pesframe.h
index c0f1202..9c68b89 100644
--- a/dxr3pesframe.h
+++ b/dxr3pesframe.h
@@ -105,8 +105,8 @@ public:
m_pesDataType(PES_UNKNOWN_DATA),
m_bValid(false),
m_pPesStart(0),
- m_pEsStart(0),
- m_esLength(0),
+ m_payload(0),
+ m_payloadLength(0),
m_pts(0),
m_videoFrameType(UNKNOWN_FRAME),
m_aspectRatio(m_staticAspectRatio),
@@ -133,16 +133,16 @@ public:
return m_pPesStart;
}
- const uint8_t* GetEsStart() const
+ const uint8_t* GetPayload() const
{
assert(m_bValid);
- return m_pEsStart;
+ return m_payload;
}
- uint32_t GetEsLength() const
+ uint32_t GetPayloadLength() const
{
assert(m_bValid);
- return m_esLength;
+ return m_payloadLength;
}
const uint8_t* GetNextStart() const
@@ -213,8 +213,8 @@ protected:
m_pesDataType = PES_UNKNOWN_DATA;
m_bValid = false;
m_pPesStart = 0;
- m_pEsStart = 0;
- m_esLength = 0;
+ m_payload = 0;
+ m_payloadLength = 0;
m_pts = 0;
m_videoFrameType = UNKNOWN_FRAME;
m_aspectRatio = m_staticAspectRatio;
@@ -228,8 +228,8 @@ protected:
ePesDataType m_pesDataType;
bool m_bValid;
const uint8_t* m_pPesStart;
- const uint8_t* m_pEsStart;
- uint32_t m_esLength;
+ const uint8_t* m_payload;
+ uint32_t m_payloadLength;
uint32_t m_pts;
eVideoFrameType m_videoFrameType;