1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-23 09:45:06 +02:00

Do not read index chunks as audio/video data; closes issue 1336.

patch by Maksym Veremeyenko, verem m1stereo tv

Originally committed as revision 19700 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Maksym Veremeyenko 2009-08-25 09:46:16 +00:00 committed by Diego Biurrun
parent c58b82a29b
commit 7305d97f04

View File

@ -826,6 +826,12 @@ resync:
if(!((i-avi->last_pkt_pos)&1) && get_stream_idx(d+1) < s->nb_streams)
continue;
//detect ##ix chunk and skip
if(d[2] == 'i' && d[3] == 'x' && n < s->nb_streams){
url_fskip(pb, size);
goto resync;
}
//parse ##dc/##wb
if(n < s->nb_streams){
AVStream *st;