1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-07 10:04:15 +02:00

segfault fix patch by (Juergen Keil <jk at tools dot de>)

Originally committed as revision 1073 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Jürgen Keil 2002-10-26 18:56:43 +00:00 committed by Michael Niedermayer
parent 917f58279d
commit 384855eebf

View File

@ -4644,6 +4644,10 @@ int intel_h263_decode_picture_header(MpegEncContext *s)
skip_bits(&s->gb, 8);
}
s->f_code = 1;
s->y_dc_scale_table=
s->c_dc_scale_table= ff_mpeg1_dc_scale_table;
return 0;
}