From 7fe4744bcdc9689786015fca2390169e6e439813 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Tue, 1 Aug 2006 22:30:15 +0000 Subject: [PATCH] fix ending null entry in table Originally committed as revision 5885 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mxf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mxf.c b/libavformat/mxf.c index 72ba85e..77e79b6 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) -- 2.7.4