Browse Source

movenc: add m4b to ipod format extensions

m4b is commonly used as extension for m4a audiobook files.
The format is exactly the same. The only thing that differs
is the extension.

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.0
Lukas Stabe Michael Niedermayer 8 years ago
parent
commit
d3f1b0d3d8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/movenc.c

+ 1
- 1
libavformat/movenc.c View File

@@ -6664,7 +6664,7 @@ AVOutputFormat ff_ipod_muxer = {
.name = "ipod", .name = "ipod",
.long_name = NULL_IF_CONFIG_SMALL("iPod H.264 MP4 (MPEG-4 Part 14)"), .long_name = NULL_IF_CONFIG_SMALL("iPod H.264 MP4 (MPEG-4 Part 14)"),
.mime_type = "video/mp4", .mime_type = "video/mp4",
.extensions = "m4v,m4a",
.extensions = "m4v,m4a,m4b",
.priv_data_size = sizeof(MOVMuxContext), .priv_data_size = sizeof(MOVMuxContext),
.audio_codec = AV_CODEC_ID_AAC, .audio_codec = AV_CODEC_ID_AAC,
.video_codec = AV_CODEC_ID_H264, .video_codec = AV_CODEC_ID_H264,


Loading…
Cancel
Save