summaryrefslogtreecommitdiff
path: root/remux.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-08-26 13:34:07 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-08-26 13:34:07 +0200
commit449ffebcac1e857b4c11f60b3c310ac337a4abc8 (patch)
treeafa6d71296927d6e33d4c25ed9c34983b9715815 /remux.h
parented807972ac8aadd42a72f09a89bfba81be2644d7 (diff)
downloadvdr-449ffebcac1e857b4c11f60b3c310ac337a4abc8.tar.gz
vdr-449ffebcac1e857b4c11f60b3c310ac337a4abc8.tar.bz2
Implemented cAudioRepacker
Diffstat (limited to 'remux.h')
-rw-r--r--remux.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/remux.h b/remux.h
index 0cd570e0..ab296553 100644
--- a/remux.h
+++ b/remux.h
@@ -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