# HG changeset patch # User michael # Date 1086047042 0 # Node ID c89a3019e088d7f70ee03cf6705a8974004ebd9a # Parent 19c713e14316e016a9098a3a08d4731816b28aca 10l fix by (Wolfram Gloger ) diff -r 19c713e14316 -r c89a3019e088 h261.c --- a/h261.c Mon May 31 20:18:08 2004 +0000 +++ b/h261.c Mon May 31 23:44:02 2004 +0000 @@ -246,7 +246,7 @@ DCTELEM block[6][64]) { MpegEncContext * const s = &h->s; - int i, cbp, xy; + int i, cbp, xy, old_mtype; cbp = 63; // Read mba @@ -272,7 +272,7 @@ ff_update_block_index(s); // Read mtype - int old_mtype = h->mtype; + old_mtype = h->mtype; h->mtype = get_vlc2(&s->gb, h261_mtype_vlc.table, H261_MTYPE_VLC_BITS, 2); h->mtype = h261_mtype_map[h->mtype];