diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-08-01 00:28:04 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-08-01 00:58:49 +0200 |
commit | c6e0332f3062efb00a8c577e11aee70821874b2e (patch) | |
tree | 971aa963ef69cafd2c2b40d74c9cfb2aedc5cd8f /libavformat/cafenc.c | |
parent | b35477a2f203a64fddd1a3fa96d8d6682839f788 (diff) | |
download | ffmpeg-c6e0332f3062efb00a8c577e11aee70821874b2e.tar.gz |
Explicitely fail for unsupported codecs when muxing caf.
Diffstat (limited to 'libavformat/cafenc.c')
-rw-r--r-- | libavformat/cafenc.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c index 2d64beca9a..29b1d56a9d 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: |