Commit 6bc81380 authored by pulento's avatar pulento

Added Juergen Keil fix on quant_tab[4] type.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@166 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 36069c6f
......@@ -3,8 +3,8 @@
#
include config.mak
CFLAGS= $(OPTFLAGS) -Wall -g -I./libavcodec -I./libav
LDFLAGS= -g
CFLAGS= $(OPTFLAGS) -Wall -I./libavcodec -I./libav
LDFLAGS=
ifeq ($(TARGET_GPROF),yes)
CFLAGS+=-p
LDFLAGS+=-p
......
......@@ -778,7 +778,7 @@ int h263_decode_mb(MpegEncContext *s,
{
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)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment