summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2008-07-29 12:55:28 +0000
committerphintuka <phintuka>2008-07-29 12:55:28 +0000
commitf299ee929d549129f7683b055c66d5b29520491b (patch)
tree784f1ee412744916d0337837ee4fbbd03766378b
parent01c4068b4fe412ee44ce2517beea4304a11233cf (diff)
downloadxineliboutput-f299ee929d549129f7683b055c66d5b29520491b.tar.gz
xineliboutput-f299ee929d549129f7683b055c66d5b29520491b.tar.bz2
Added NAL End of Sequence
-rw-r--r--tools/h264.h7
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;