diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-08-01 22:30:15 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-08-01 22:30:15 +0000 |
commit | 7fe4744bcdc9689786015fca2390169e6e439813 (patch) | |
tree | be7dd19848d01e69264ff708ffabb362139e036c /libavformat | |
parent | 9b4f605ccf2b04c40645948322bad1691f7ab9f9 (diff) | |
download | ffmpeg-7fe4744bcdc9689786015fca2390169e6e439813.tar.gz |
fix ending null entry in table
Originally committed as revision 5885 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mxf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c index 72ba85e924..77e79b69ab 100644 --- a/libavformat/mxf.c +++ b/libavformat/mxf.c @@ -699,6 +699,7 @@ static const MXFCodecUL mxf_codec_uls[] = { { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x02,0x03,0x02,0x01,0x00 }, CODEC_ID_AC3 }, { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x02,0x03,0x02,0x05,0x00 }, CODEC_ID_MP2 }, /* MP2 or MP3 */ //{ { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x02,0x03,0x02,0x1C,0x00 }, CODEC_ID_DOLBY_E }, /* Dolby-E */ + { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, CODEC_ID_NONE }, }; static enum CodecID mxf_get_codec_id(const MXFCodecUL *uls, UID *uid) |