Commit 94c1a03e authored by michael's avatar michael

Add mpegvideo and H.264 to the codec probe.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14187 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9af267e2
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment