mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-02-13 19:05:37 +00:00
H.264: fix grayscale decoding with explicit wpred
Originally committed as revision 26306 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
74093bb593
commit
09fffe9bd4
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue