diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-11-11 00:29:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-11-11 00:29:49 +0000 |
commit | 7b24f9b4257c4bce8fbff067b12ad2aeaef7bd71 (patch) | |
tree | 9f871c6570ffb40f6c7a052ce3e747afc323ebc5 /libavformat/riff.c | |
parent | 5e8b05f8dfac7ab92d60bd61e2fe880a5a357fe2 (diff) | |
download | ffmpeg-7b24f9b4257c4bce8fbff067b12ad2aeaef7bd71.tar.gz |
libnut uses "MP3 " for mp3
Originally committed as revision 6963 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index fb2a7fc9af..d315c66afb 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -200,6 +200,7 @@ const CodecTag codec_wav_tags[] = { // for NuppelVideo (nuv.c) { CODEC_ID_PCM_S16LE, MKTAG('R', 'A', 'W', 'A') }, { CODEC_ID_MP3, MKTAG('L', 'A', 'M', 'E') }, + { CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') }, { 0, 0 }, }; |