diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-08-26 13:34:07 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-08-26 13:34:07 +0200 |
commit | 449ffebcac1e857b4c11f60b3c310ac337a4abc8 (patch) | |
tree | afa6d71296927d6e33d4c25ed9c34983b9715815 /remux.h | |
parent | ed807972ac8aadd42a72f09a89bfba81be2644d7 (diff) | |
download | vdr-449ffebcac1e857b4c11f60b3c310ac337a4abc8.tar.gz vdr-449ffebcac1e857b4c11f60b3c310ac337a4abc8.tar.bz2 |
Implemented cAudioRepacker
Diffstat (limited to 'remux.h')
-rw-r--r-- | remux.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: remux.h 1.14 2005/08/07 10:28:07 kls Exp $ + * $Id: remux.h 1.15 2005/08/26 13:22:19 kls Exp $ */ #ifndef __REMUX_H @@ -15,6 +15,15 @@ #include "ringbuffer.h" #include "tools.h" +enum ePesHeader { + phNeedMoreData = -1, + phInvalid = 0, + phMPEG1 = 1, + phMPEG2 = 2 + }; + +ePesHeader AnalyzePesHeader(const uchar *Data, int Count, int &PesPayloadOffset, bool *ContinuationHeader = NULL); + // Picture types: #define NO_PICTURE 0 #define I_FRAME 1 |