diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-07-19 09:38:22 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-07-19 09:38:22 +0000 |
commit | 86329cce041444332317f517cd6b55f089cdfe50 (patch) | |
tree | 9d88e0f17f0d420f42c5144c432fd88f68ea8ee8 /libavformat/gxf.h | |
parent | 1d94a6620fb8b18ccbba75b7ca74db2fe885e054 (diff) | |
download | ffmpeg-86329cce041444332317f517cd6b55f089cdfe50.tar.gz |
GXF muxer
Originally committed as revision 5787 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/gxf.h')
-rw-r--r-- | libavformat/gxf.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libavformat/gxf.h b/libavformat/gxf.h new file mode 100644 index 0000000000..b23dfd86a0 --- /dev/null +++ b/libavformat/gxf.h @@ -0,0 +1,13 @@ +#ifndef FFMPEG_GXF_H +#define FFMPEG_GXF_H + +/* gxf.c */ +typedef enum { + PKT_MAP = 0xbc, + PKT_MEDIA = 0xbf, + PKT_EOS = 0xfb, + PKT_FLT = 0xfc, + PKT_UMF = 0xfd +} pkt_type_t; + +#endif /* FFMPEG_GXF_H */ |