# HG changeset patch # User michael # Date 1143666717 0 # Node ID b9f906a0b0f8299539983c670cf25efd11bdd306 # Parent 037570194464e7a14035e5e347e9de14d8e759cc fix gcc 2.95 compilation diff -r 037570194464 -r b9f906a0b0f8 mjpeg.c --- a/mjpeg.c Wed Mar 29 18:42:50 2006 +0000 +++ b/mjpeg.c Wed Mar 29 21:11:57 2006 +0000 @@ -1273,7 +1273,7 @@ /* AC coefs */ ac_vlc = &s->vlcs[1][ac_index]; i = 0; - OPEN_READER(re, &s->gb) + {OPEN_READER(re, &s->gb) for(;;) { UPDATE_CACHE(re, &s->gb); GET_VLC(code, re, &s->gb, s->vlcs[1][ac_index].table, 9, 2) @@ -1310,7 +1310,7 @@ block[j] = level * quant_matrix[j]; } } - CLOSE_READER(re, &s->gb) + CLOSE_READER(re, &s->gb)} return 0; }