# HG changeset patch # User benoit # Date 1234878087 0 # Node ID de631175196ead1965ce925c0fceb0af61ca8a73 # Parent e03f0d4f9e3da9748bb10c816cdaf5ce5200ea93 Move initialization of {luma,chroma}_weight_flag[] up, to make sure they are always initialized. Patch by Gwenole Beauchesne g${name} splitted-desktop com diff -r e03f0d4f9e3d -r de631175196e h264.c --- a/h264.c Tue Feb 17 12:11:46 2009 +0000 +++ b/h264.c Tue Feb 17 13:41:27 2009 +0000 @@ -3046,6 +3046,11 @@ int ref0, ref1, i; int cur_poc = s->current_picture_ptr->poc; + for (i = 0; i < 2; i++) { + h->luma_weight_flag[i] = 0; + h->chroma_weight_flag[i] = 0; + } + if( h->ref_count[0] == 1 && h->ref_count[1] == 1 && h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2*cur_poc){ h->use_weight= 0; @@ -3057,10 +3062,6 @@ h->use_weight_chroma= 2; h->luma_log2_weight_denom= 5; h->chroma_log2_weight_denom= 5; - for (i = 0; i < 2; i++) { - h->luma_weight_flag[i] = 0; - h->chroma_weight_flag[i] = 0; - } for(ref0=0; ref0 < h->ref_count[0]; ref0++){ int poc0 = h->ref_list[0][ref0].poc;