diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-21 09:53:27 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-21 09:53:27 +0200 |
commit | 3b1b5bde681febf6a3900438fbc2d386511c4393 (patch) | |
tree | c5366208fb27c2b8b2281f0eebf52af44a10e676 /remux.h | |
parent | 82813f48c4f95d8cedbd2add70baf7962aad2ca1 (diff) | |
download | vdr-3b1b5bde681febf6a3900438fbc2d386511c4393.tar.gz vdr-3b1b5bde681febf6a3900438fbc2d386511c4393.tar.bz2 |
Removed TsGetContinuityCounter() from remux.h, using TsContinuityCounter() instead
Diffstat (limited to 'remux.h')
-rw-r--r-- | remux.h | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: remux.h 4.4 2017/04/29 11:56:21 kls Exp $ + * $Id: remux.h 4.5 2017/05/21 09:44:52 kls Exp $ */ #ifndef __REMUX_H @@ -95,7 +95,7 @@ inline bool TsIsScrambled(const uchar *p) return p[3] & TS_SCRAMBLING_CONTROL; } -inline uchar TsGetContinuityCounter(const uchar *p) +inline uchar TsContinuityCounter(const uchar *p) { return p[3] & TS_CONT_CNT_MASK; } @@ -121,11 +121,6 @@ inline int TsGetPayload(const uchar **p) return 0; } -inline int TsContinuityCounter(const uchar *p) -{ - return p[3] & TS_CONT_CNT_MASK; -} - inline int64_t TsGetPcr(const uchar *p) { if (TsHasAdaptationField(p)) { |