diff options
author | schmirl <schmirl> | 2009-06-30 06:04:33 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2009-06-30 06:04:33 +0000 |
commit | 7b8e396f775608968ebe274e36fc776bb295dd97 (patch) | |
tree | e444931f7d53a9f904b09d5f59d1a64cd628e38e /remux/ts2pes.h | |
parent | 64bf3e5ecf2657b2926fe389fb949f8cf6e7cae7 (diff) | |
download | vdr-plugin-streamdev-7b8e396f775608968ebe274e36fc776bb295dd97.tar.gz vdr-plugin-streamdev-7b8e396f775608968ebe274e36fc776bb295dd97.tar.bz2 |
now there's a common baseclass for all remuxers, make use of it
Modified Files:
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 2867a41..61ac857 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 2009/06/29 06:23:33 schmirl Exp $ + * $Id: ts2pes.h,v 1.3 2009/06/30 06:04:33 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 |