# HG changeset patch # User andoma # Date 1219678783 0 # Node ID d4b086282604de552feb29db5987e8fbd474d456 # Parent 8329c0373f69783ed286a503a218f9728a5539a9 When setting codec_id during codec probe we must also set codec_type. diff -r 8329c0373f69 -r d4b086282604 utils.c --- a/utils.c Mon Aug 25 06:20:00 2008 +0000 +++ b/utils.c Mon Aug 25 15:39:43 2008 +0000 @@ -352,14 +352,19 @@ fmt = av_probe_input_format2(pd, 1, &score); if (fmt) { - if (!strcmp(fmt->name, "mp3")) + if (!strcmp(fmt->name, "mp3")) { st->codec->codec_id = CODEC_ID_MP3; - else if (!strcmp(fmt->name, "ac3")) + st->codec->codec_type = CODEC_TYPE_AUDIO; + } else if (!strcmp(fmt->name, "ac3")) { st->codec->codec_id = CODEC_ID_AC3; - else if (!strcmp(fmt->name, "mpegvideo")) + st->codec->codec_type = CODEC_TYPE_AUDIO; + } else if (!strcmp(fmt->name, "mpegvideo")) { st->codec->codec_id = CODEC_ID_MPEG2VIDEO; - else if (!strcmp(fmt->name, "h264")) + st->codec->codec_type = CODEC_TYPE_VIDEO; + } else if (!strcmp(fmt->name, "h264")) { st->codec->codec_id = CODEC_ID_H264; + st->codec->codec_type = CODEC_TYPE_VIDEO; + } } return !!fmt; }