Skip to content

Commit

Permalink
lavf: move "MP3 " fourcc from riff to nut
Browse files Browse the repository at this point in the history
Original commit, 7b24f9b, says it was added because it is used in libnut.
  • Loading branch information
justinruggles committed Nov 28, 2012
1 parent db9dbfb commit cdaa1f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions libavformat/nut.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
};

Expand Down
1 change: 0 additions & 1 deletion libavformat/riff.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,6 @@ const AVCodecTag ff_codec_wav_tags[] = {
// for NuppelVideo (nuv.c)
{ AV_CODEC_ID_PCM_S16LE, MKTAG('R', 'A', 'W', 'A') },
{ AV_CODEC_ID_MP3, MKTAG('L', 'A', 'M', 'E') },
{ AV_CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') },
{ AV_CODEC_ID_NONE, 0 },
};

Expand Down

0 comments on commit cdaa1f8

Please sign in to comment.