[FFmpeg-cvslog] mp3: add .mpa extension

Vittorio Giovara git at videolan.org
Thu Sep 12 15:07:19 CEST 2013


ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Mon Sep  9 16:30:35 2013 +0200| [c0779a67e85df856904ee6fab760c4233d4c2be5] | committer: Diego Biurrun

mp3: add .mpa extension

Signed-off-by: Diego Biurrun <diego at biurrun.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c0779a67e85df856904ee6fab760c4233d4c2be5
---

 libavformat/mp3dec.c |    2 +-
 libavformat/mp3enc.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c
index 14edc4a..5c263ed 100644
--- a/libavformat/mp3dec.c
+++ b/libavformat/mp3dec.c
@@ -282,5 +282,5 @@ 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 */
 };
diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c
index 4d7c798..574a3b2 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,



More information about the ffmpeg-cvslog mailing list