Commit 09fffe9b authored by Jason Garrett-Glaser's avatar Jason Garrett-Glaser

H.264: fix grayscale decoding with explicit wpred

Originally committed as revision 26306 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 74093bb5
......@@ -1371,7 +1371,8 @@ static int pred_weight_table(H264Context *h){
h->use_weight= 0;
h->use_weight_chroma= 0;
h->luma_log2_weight_denom= get_ue_golomb(&s->gb);
h->chroma_log2_weight_denom= get_ue_golomb(&s->gb);
if(CHROMA)
h->chroma_log2_weight_denom= get_ue_golomb(&s->gb);
luma_def = 1<<h->luma_log2_weight_denom;
chroma_def = 1<<h->chroma_log2_weight_denom;
......
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