summaryrefslogtreecommitdiff
path: root/libavcodec/h264_parser.c
diff options
context:
space:
mode:
authorClément Bœsch <clement@stupeflix.com>2016-06-20 10:28:17 +0200
committerClément Bœsch <clement@stupeflix.com>2016-06-20 10:36:16 +0200
commit4fdea02d688cbe9a66db684b178180367cd5eb1b (patch)
treef609ec00fe5c19f00daa3ab1c4a701b834ce154b /libavcodec/h264_parser.c
parent432891a96e664d6c0e99a4d5ada78a87d561c92d (diff)
lavc/h264: add a logging ctx to ff_h264_pred_weight_table()
Diffstat (limited to 'libavcodec/h264_parser.c')
-rw-r--r--libavcodec/h264_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c
index 1f871fdf95..7dde3d54f7 100644
--- a/libavcodec/h264_parser.c
+++ b/libavcodec/h264_parser.c
@@ -198,7 +198,7 @@ static int scan_mmco_reset(AVCodecParserContext *s, GetBitContext *gb,
if ((p->ps.pps->weighted_pred && slice_type_nos == AV_PICTURE_TYPE_P) ||
(p->ps.pps->weighted_bipred_idc == 1 && slice_type_nos == AV_PICTURE_TYPE_B))
ff_h264_pred_weight_table(gb, p->ps.sps, ref_count, slice_type_nos,
- &pwt);
+ &pwt, avctx);
if (get_bits1(gb)) { // adaptive_ref_pic_marking_mode_flag
int i;