diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2013-09-09 16:30:35 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-09-12 13:16:15 +0200 |
commit | c0779a67e85df856904ee6fab760c4233d4c2be5 (patch) | |
tree | 5e056922e51c0cb41d2f9af992849fc97c4c6019 /libavformat/mp3enc.c | |
parent | e2cd766ca1b9bb2ba72aca5f6ba5d8be15743984 (diff) | |
download | ffmpeg-c0779a67e85df856904ee6fab760c4233d4c2be5.tar.gz |
mp3: add .mpa extension
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavformat/mp3enc.c')
-rw-r--r-- | libavformat/mp3enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c index 4d7c798c95..574a3b2e95 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -306,7 +306,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, |