[FFmpeg-devel] [PATCH]Support more codecs when muxing caf

Carl Eugen Hoyos cehoyos at ag.or.at
Sun Aug 21 15:21:01 CEST 2011


Hi!

Attached patch allows writing alac, amr_nb and qmd2 into caf.
A few lines of code are duplicated from movenc.c, if this is unacceptable, 
please advice.

Please comment, Carl Eugen
-------------- next part --------------
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c
index 80263e4..0dd4b34 100644
--- a/libavformat/cafenc.c
+++ b/libavformat/cafenc.c
@@ -107,9 +107,6 @@ static int caf_write_header(AVFormatContext *s)
     switch (enc->codec_id) {
     case CODEC_ID_AAC:
     case CODEC_ID_AC3:
-    case CODEC_ID_ALAC:
-    case CODEC_ID_AMR_NB:
-    case CODEC_ID_QDM2:
         av_log(s, AV_LOG_ERROR, "muxing codec currently unsupported\n");
         return AVERROR_PATCHWELCOME;
     }
@@ -161,6 +158,28 @@ static int caf_write_header(AVFormatContext *s)
         ff_mov_write_chan(pb, enc->channel_layout);
     }
 
+    if (enc->codec_id == CODEC_ID_ALAC) {
+        ffio_wfourcc(pb, "kuki");
+        avio_wb64(pb, 12 + enc->extradata_size);
+        avio_write(pb, "\0\0\0\14frmaalac", 12);
+        avio_write(pb, enc->extradata, enc->extradata_size);
+    } else if (enc->codec_id == CODEC_ID_AMR_NB) {
+        ffio_wfourcc(pb, "kuki");
+        avio_wb64(pb, 29);
+        avio_write(pb, "\0\0\0\14frmasamr", 12);
+        avio_wb32(pb, 0x11); /* size */
+        avio_write(pb, "samrFFMP", 8);
+        avio_w8(pb, 0); /* decoder version */
+
+        avio_wb16(pb, 0x81FF); /* Mode set (all modes for AMR_NB) */
+        avio_w8(pb, 0x00); /* Mode change period (no restriction) */
+        avio_w8(pb, 0x01); /* Frames per sample */
+    } else if (enc->codec_id == CODEC_ID_QDM2) {
+        ffio_wfourcc(pb, "kuki");
+        avio_wb64(pb, enc->extradata_size);
+        avio_write(pb, enc->extradata, enc->extradata_size);
+    }
+
     ffio_wfourcc(pb, "data"); //< Audio Data chunk
     caf->data = avio_tell(pb);
     avio_wb64(pb, -1);        //< mChunkSize


More information about the ffmpeg-devel mailing list