Commit 75204092 authored by Michael Niedermayer's avatar Michael Niedermayer

10l

Originally committed as revision 3174 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent cc11e2b3
...@@ -325,6 +325,9 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -325,6 +325,9 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
st->codec.codec_id = CODEC_ID_XAN_DPCM; st->codec.codec_id = CODEC_ID_XAN_DPCM;
break; break;
default: default:
st->codec.codec_type = CODEC_TYPE_DATA;
st->codec.codec_id= CODEC_ID_NONE;
st->codec.codec_tag= 0;
url_fskip(pb, size); url_fskip(pb, size);
break; break;
} }
......
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