diff options
author | schmirl <schmirl> | 2009-06-30 06:03:15 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2009-06-30 06:03:15 +0000 |
commit | abb8e8003352454aee644952a98c55d4a64af303 (patch) | |
tree | d3d44fabecd19fa4c7a37d4b6df554f8e44c46ac /remux/ts2pes.h | |
parent | 412c6982b6deba6089cc729704bebab784ef3313 (diff) | |
download | vdr-plugin-streamdev-abb8e8003352454aee644952a98c55d4a64af303.tar.gz vdr-plugin-streamdev-abb8e8003352454aee644952a98c55d4a64af303.tar.bz2 |
now there's a common baseclass for all remuxers, make use of it
Modified Files:
Tag: v0_4
HISTORY remux/ts2pes.c remux/ts2pes.h remux/tsremux.h
server/livestreamer.c server/livestreamer.h
Diffstat (limited to 'remux/ts2pes.h')
-rw-r--r-- | remux/ts2pes.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/remux/ts2pes.h b/remux/ts2pes.h index 47c879e..4f3dd3c 100644 --- a/remux/ts2pes.h +++ b/remux/ts2pes.h @@ -4,7 +4,7 @@ * This file is based on a copy of remux.h from Klaus Schmidinger's * VDR, version 1.6.0. * - * $Id: ts2pes.h,v 1.2.2.2 2009/06/29 06:25:28 schmirl Exp $ + * $Id: ts2pes.h,v 1.2.2.3 2009/06/30 06:03:16 schmirl Exp $ */ #ifndef VDR_STREAMDEV_TS2PES_H @@ -38,11 +38,9 @@ public: int Put(const uchar *Data, int Count); ///< Puts at most Count bytes of Data into the remuxer. ///< \return Returns the number of bytes actually consumed from Data. - uchar *Get(int &Count, uchar *PictureType = NULL); + uchar *Get(int &Count); ///< Gets all currently available data from the remuxer. ///< \return Count contains the number of bytes the result points to, and - ///< PictureType (if not NULL) will contain one of NO_PICTURE, I_FRAME, P_FRAME - ///< or B_FRAME. void Del(int Count); ///< Deletes Count bytes from the remuxer. Count must be the number returned ///< from a previous call to Get(). Several calls to Del() with fractions of |