diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-02-08 05:12:30 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-02-08 05:12:30 +0000 |
commit | 5ac4d7689d753147f89b3322593d6998e32d27c4 (patch) | |
tree | 50b467ac3ac14896987aa760458768383c1244df /libavformat/mxf.h | |
parent | 251bf87560c0c4d1c0a35e73eed76fa6d60a6ab3 (diff) | |
download | ffmpeg-5ac4d7689d753147f89b3322593d6998e32d27c4.tar.gz |
reuse MXFCodecUL for data def and simplify
Originally committed as revision 17042 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mxf.h')
-rw-r--r-- | libavformat/mxf.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libavformat/mxf.h b/libavformat/mxf.h index ff6ad00249..99553a5378 100644 --- a/libavformat/mxf.h +++ b/libavformat/mxf.h @@ -55,15 +55,10 @@ typedef struct { typedef struct { UID uid; unsigned matching_len; - enum CodecID id; + int id; } MXFCodecUL; -typedef struct { - UID uid; - enum CodecType type; -} MXFDataDefinitionUL; - -extern const MXFDataDefinitionUL ff_mxf_data_definition_uls[]; +extern const MXFCodecUL ff_mxf_data_definition_uls[]; extern const MXFCodecUL ff_mxf_codec_uls[]; #ifdef DEBUG |