diff options
author | Dan Christiansen <danchr@daimi.au.dk> | 2003-10-19 20:57:47 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-19 20:57:47 +0000 |
commit | 4cb3f3b6376474ae251421d5bb318998a3776ae8 (patch) | |
tree | 87400aaf32c4950756d4fbfdb54e3b882721faf1 /libavformat/movenc.c | |
parent | cf9d24adf66bcb99ee168301d40b297266a62203 (diff) | |
download | ffmpeg-4cb3f3b6376474ae251421d5bb318998a3776ae8.tar.gz |
Using the extension m4a for audio only MPEG-4 files is increasingly
common, especially since Apple iTunes treats files with the two
extensions differently. Without the patch, FFmpeg won't know that m4a
is for MPEG-4 files
patch by (Dan Christiansen <danchr at daimi dot au dot dk>)
Originally committed as revision 2398 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d95adaf169..9ad2f09e81 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -889,8 +889,8 @@ static AVOutputFormat _3gp_oformat = { static AVOutputFormat mp4_oformat = { "mp4", "mp4 format", - NULL, - "mp4", + "application/mp4", + "mp4,m4a", sizeof(MOVContext), CODEC_ID_AAC, CODEC_ID_MPEG4, |