Commit bd791378 authored by aurel's avatar aurel

Try size 640x480 for FLC files which don't specify their size.

This is a ugly hack to fix playback of specular.flc.
closes issue71


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10117 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 96f57941
......@@ -94,8 +94,14 @@ static int flic_read_header(AVFormatContext *s,
st->codec->width = AV_RL16(&header[0x08]);
st->codec->height = AV_RL16(&header[0x0A]);
if (!st->codec->width || !st->codec->height)
return AVERROR_INVALIDDATA;
if (!st->codec->width || !st->codec->height) {
/* Ugly hack needed for the following sample: */
/* http://samples.mplayerhq.hu/fli-flc/fli-bugs/specular.flc */
av_log(s, AV_LOG_WARNING,
"File with no specified width/height. Trying 640x480.\n");
st->codec->width = 640;
st->codec->height = 480;
}
/* send over the whole 128-byte FLIC header */
st->codec->extradata_size = FLIC_HEADER_SIZE;
......
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