From 312d24d5e9b94a8c4363d3830ab328022064f19d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 12 Jul 2008 19:56:25 +0000 Subject: [PATCH] Add mpegvideo and H.264 to the codec probe. Originally committed as revision 14187 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/utils.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavformat/utils.c b/libavformat/utils.c index eafeef9..9f573d6 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -303,6 +303,10 @@ static int set_codec_from_probe_data(AVStream *st, AVProbeData *pd, int score) st->codec->codec_id = CODEC_ID_MP3; else if (strncmp(fmt->name, "ac3", 3) == 0) st->codec->codec_id = CODEC_ID_AC3; + else if (!strcmp(fmt->name, "mpegvideo")) + st->codec->codec_id = CODEC_ID_MPEG2VIDEO; + else if (!strcmp(fmt->name, "h264")) + st->codec->codec_id = CODEC_ID_H264; } return !!fmt; } -- 2.7.4