diff options
author | phintuka <phintuka> | 2010-02-03 13:49:39 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-02-03 13:49:39 +0000 |
commit | bb14f94a312d0e6814cfc7cd74ce8f57e2e60431 (patch) | |
tree | aa1065ba3609cce78ee9a0c0879a03333e2f9f40 | |
parent | 9b75289fb191d9bc6076ed2dfc2b4bdb2fc9a525 (diff) | |
download | xineliboutput-bb14f94a312d0e6814cfc7cd74ce8f57e2e60431.tar.gz xineliboutput-bb14f94a312d0e6814cfc7cd74ce8f57e2e60431.tar.bz2 |
Added SC_SEQUENCE_END
-rw-r--r-- | tools/mpeg.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/mpeg.h b/tools/mpeg.h index c1a8bdf5..43251b09 100644 --- a/tools/mpeg.h +++ b/tools/mpeg.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: mpeg.h,v 1.7 2010-02-02 22:41:38 phintuka Exp $ + * $Id: mpeg.h,v 1.8 2010-02-03 13:49:39 phintuka Exp $ * */ @@ -17,8 +17,9 @@ extern "C" { #endif -#define SC_PICTURE 0x00 /* picture atart code */ -#define SC_SEQUENCE 0xb3 /* sequence header */ +#define SC_PICTURE 0x00 /* picture atart code */ +#define SC_SEQUENCE 0xb3 /* sequence header */ +#define SC_SEQUENCE_END 0xb7 #if defined(__i386__) || defined(__x86_64__) # define IS_SC_PICTURE(buf) (*(const uint32_t *)(buf) == 0x00010000U) |