changeset 110:e00e5d93457c libavcodec

Added Juergen Keil fix on quant_tab[4] type.
author pulento
date Wed, 17 Oct 2001 18:05:35 +0000
parents dfa9fde4b72d
children 8e4c5a16c9fc
files h263.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/h263.c	Wed Oct 17 02:04:16 2001 +0000
+++ b/h263.c	Wed Oct 17 18:05:35 2001 +0000
@@ -778,7 +778,7 @@
 {
     int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant;
     INT16 *mot_val;
-    static UINT8 quant_tab[4] = { -1, -2, 1, 2 };
+    static INT8 quant_tab[4] = { -1, -2, 1, 2 };
 
     if (s->pict_type == P_TYPE) {
         if (get_bits1(&s->gb)) {