diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-11-26 23:23:01 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-11-28 11:18:49 -0500 |
commit | cdaa1f84fb6f6e8234e95e9322c647c6a432e0bf (patch) | |
tree | ee6c745bad9e6913da3367ef18c627960fd67586 /libavformat/nut.c | |
parent | db9dbfb72a653b63745914ce00c96c85af231adc (diff) | |
download | ffmpeg-cdaa1f84fb6f6e8234e95e9322c647c6a432e0bf.tar.gz |
lavf: move "MP3 " fourcc from riff to nut
Original commit, 7b24f9b, says it was added because it is used in libnut.
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r-- | libavformat/nut.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 65fadbfa47..196e04e54f 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -145,6 +145,7 @@ const AVCodecTag ff_nut_audio_tags[] = { { AV_CODEC_ID_PCM_U32LE, MKTAG('P', 'U', 'D', 32 ) }, { AV_CODEC_ID_PCM_U8, MKTAG('P', 'U', 'D', 8 ) }, { AV_CODEC_ID_PCM_S16LE_PLANAR, MKTAG('P', 'S', 'P', 16 ) }, + { AV_CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') }, { AV_CODEC_ID_NONE, 0 } }; |