mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Merge commit 'c0779a67e85df856904ee6fab760c4233d4c2be5'
* commit 'c0779a67e85df856904ee6fab760c4233d4c2be5': mp3: add .mpa extension Conflicts: libavformat/mp3dec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
44fb7de8ee
@ -360,6 +360,6 @@ AVInputFormat ff_mp3_demuxer = {
|
||||
.read_seek = mp3_seek,
|
||||
.priv_data_size = sizeof(MP3DecContext),
|
||||
.flags = AVFMT_GENERIC_INDEX,
|
||||
.extensions = "mp2,mp3,m2a", /* XXX: use probe */
|
||||
.extensions = "mp2,mp3,m2a,mpa", /* XXX: use probe */
|
||||
.priv_class = &demuxer_class,
|
||||
};
|
||||
|
@ -385,7 +385,7 @@ AVOutputFormat ff_mp2_muxer = {
|
||||
.name = "mp2",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("MP2 (MPEG audio layer 2)"),
|
||||
.mime_type = "audio/x-mpeg",
|
||||
.extensions = "mp2,m2a",
|
||||
.extensions = "mp2,m2a,mpa",
|
||||
.audio_codec = AV_CODEC_ID_MP2,
|
||||
.video_codec = AV_CODEC_ID_NONE,
|
||||
.write_packet = ff_raw_write_packet,
|
||||
|
Loading…
Reference in New Issue
Block a user