don't complain about codec type/id mismatche for attachment streams
authorAurelien Jacobs <aurel@gnuage.org>
Wed, 12 Jan 2011 00:33:22 +0000 (00:33 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Wed, 12 Jan 2011 00:33:22 +0000 (00:33 +0000)
Originally committed as revision 26316 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/utils.c

index 8cc9299..86595a2 100644 (file)
@@ -524,7 +524,8 @@ int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
         avctx->codec_type = codec->type;
         avctx->codec_id   = codec->id;
     }
-    if(avctx->codec_id != codec->id || avctx->codec_type != codec->type){
+    if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
+                           && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
         av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
         goto free_and_end;
     }