From 0b389aee4d224a9c1805338fd72dacdcb45e9a82 Mon Sep 17 00:00:00 2001 From: Alexander Strange Date: Wed, 17 Jun 2009 00:37:06 +0000 Subject: [PATCH] Add '.mp1' for MP1 audio in MOV/CAF. Tested with streamcopy of 'mp1-sample.mp1' in incoming. Originally committed as revision 19212 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/isom.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/isom.c b/libavformat/isom.c index 0e040c4546..23d716fef3 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -195,6 +195,7 @@ const AVCodecTag codec_movaudio_tags[] = { { CODEC_ID_MACE3, MKTAG('M', 'A', 'C', '3') }, /* Macintosh Audio Compression and Expansion 3:1 */ { CODEC_ID_MACE6, MKTAG('M', 'A', 'C', '6') }, /* Macintosh Audio Compression and Expansion 6:1 */ + { CODEC_ID_MP1, MKTAG('.', 'm', 'p', '1') }, /* MPEG layer 1 */ { CODEC_ID_MP2, MKTAG('.', 'm', 'p', '2') }, /* MPEG layer 2 */ { CODEC_ID_MP3, MKTAG('.', 'm', 'p', '3') }, /* MPEG layer 3 */ /* sample files at http://www.3ivx.com/showcase.html use this tag */