changeset 770:d1770a34e4f6 libavcodec

segfault fix patch by (Juergen Keil <jk at tools dot de>)
author michaelni
date Sat, 26 Oct 2002 18:56:43 +0000
parents 9f8c4905928b
children d4cc92144266
files h263.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;
 }