diff options
-rw-r--r-- | tools/h264.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/h264.h b/tools/h264.h index 3cde1508..e7e55189 100644 --- a/tools/h264.h +++ b/tools/h264.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: h264.h,v 1.4 2008-06-11 15:50:27 phintuka Exp $ + * $Id: h264.h,v 1.5 2008-07-29 12:55:28 phintuka Exp $ * */ @@ -18,8 +18,9 @@ extern "C" { #include "mpeg.h" -#define NAL_SPS 0x07 -#define NAL_AUD 0x09 +#define NAL_SPS 0x07 /* Sequence Parameter Set */ +#define NAL_AUD 0x09 /* Access Unit Delimiter */ +#define NAL_END_SEQ 0x10 /* End of Sequence */ typedef struct { int width; |