Commit 1c169711 authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Carl Eugen Hoyos

Fix raw vc1 decoding - this is supposed to break FATE.

Patch by Michael.

Originally committed as revision 23582 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 07ff7825
...@@ -283,6 +283,7 @@ static int video_read_header(AVFormatContext *s, ...@@ -283,6 +283,7 @@ static int video_read_header(AVFormatContext *s,
st->codec->codec_id == CODEC_ID_MPEG4 || st->codec->codec_id == CODEC_ID_MPEG4 ||
st->codec->codec_id == CODEC_ID_DIRAC || st->codec->codec_id == CODEC_ID_DIRAC ||
st->codec->codec_id == CODEC_ID_DNXHD || st->codec->codec_id == CODEC_ID_DNXHD ||
st->codec->codec_id == CODEC_ID_VC1 ||
st->codec->codec_id == CODEC_ID_H264) { st->codec->codec_id == CODEC_ID_H264) {
st->codec->time_base= (AVRational){1,25}; st->codec->time_base= (AVRational){1,25};
} }
......
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