# HG changeset patch # User michaelni # Date 1035658603 0 # Node ID d1770a34e4f68349ed7ab08ee609fe5e638d9970 # Parent 9f8c4905928be800d6115553ce07549c39749785 segfault fix patch by (Juergen Keil ) diff -r 9f8c4905928b -r d1770a34e4f6 h263.c --- a/h263.c Fri Oct 25 16:06:32 2002 +0000 +++ b/h263.c Sat Oct 26 18:56:43 2002 +0000 @@ -4644,6 +4644,10 @@ 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; }