# HG changeset patch # User michael # Date 1085149765 0 # Node ID 3a78447c3b533a657a139f646620f7dc00444dd7 # Parent b7f43fc816db98e1c32aa2d508875e9555a28984 oops, forgot to commit that change from the warning fixes by (Michael Roitzsch ) diff -r b7f43fc816db -r 3a78447c3b53 dv.c --- a/dv.c Fri May 21 13:44:03 2004 +0000 +++ b/dv.c Fri May 21 14:29:25 2004 +0000 @@ -171,8 +171,12 @@ free_vlc(&dv_vlc); for (i = 0; i < NB_DV_VLC - 1; i++) { - if (dv_vlc_run[i] >= DV_VLC_MAP_RUN_SIZE || dv_vlc_level[i] >= DV_VLC_MAP_LEV_SIZE) + if (dv_vlc_run[i] >= DV_VLC_MAP_RUN_SIZE) continue; +#ifdef DV_CODEC_TINY_TARGET + if (dv_vlc_level[i] >= DV_VLC_MAP_LEV_SIZE) + continue; +#endif if (dv_vlc_map[dv_vlc_run[i]][dv_vlc_level[i]].size != 0) continue;