[FFmpeg-cvslog] Explicitely fail for unsupported codecs when muxing caf.
Carl Eugen Hoyos
git at videolan.org
Mon Aug 1 01:03:03 CEST 2011
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Mon Aug 1 00:28:04 2011 +0200| [c6e0332f3062efb00a8c577e11aee70821874b2e] | committer: Carl Eugen Hoyos
Explicitely fail for unsupported codecs when muxing caf.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c6e0332f3062efb00a8c577e11aee70821874b2e
---
libavformat/cafenc.c | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c
index 2d64bec..29b1d56 100644
--- a/libavformat/cafenc.c
+++ b/libavformat/cafenc.c
@@ -101,6 +101,17 @@ static int caf_write_header(AVFormatContext *s)
unsigned int codec_tag = ff_codec_get_tag(ff_codec_caf_tags, enc->codec_id);
switch (enc->codec_id) {
+ case CODEC_ID_AAC:
+ case CODEC_ID_AC3:
+ case CODEC_ID_ALAC:
+ case CODEC_ID_AMR_NB:
+ case CODEC_ID_QCELP:
+ case CODEC_ID_QDM2:
+ av_log(s, AV_LOG_ERROR, "muxing codec currently unsupported\n");
+ return AVERROR_PATCHWELCOME;
+ }
+
+ switch (enc->codec_id) {
case CODEC_ID_PCM_S8:
case CODEC_ID_PCM_S16LE:
case CODEC_ID_PCM_S16BE:
More information about the ffmpeg-cvslog
mailing list