summaryrefslogtreecommitdiff
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorDan Christiansen <danchr@daimi.au.dk>2003-10-19 20:57:47 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-10-19 20:57:47 +0000
commit4cb3f3b6376474ae251421d5bb318998a3776ae8 (patch)
tree87400aaf32c4950756d4fbfdb54e3b882721faf1 /libavformat/movenc.c
parentcf9d24adf66bcb99ee168301d40b297266a62203 (diff)
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.c4
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,