diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-03-21 16:14:31 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-03-28 09:48:31 +0200 |
commit | e481458bc308ee838deaeacac51929514762e7a7 (patch) | |
tree | 5ce061d8d1ffa62aded7fdac43e95ee00d8e5ea9 /libavcodec/h264_mc_template.c | |
parent | 90ed6c5cf7f236bc9efb47c97b40358c666d1386 (diff) | |
download | ffmpeg-e481458bc308ee838deaeacac51929514762e7a7.tar.gz |
h264: factor out pred weight table parsing into a separate file
This will allow decoupling the parser from the decoder.
Diffstat (limited to 'libavcodec/h264_mc_template.c')
-rw-r--r-- | libavcodec/h264_mc_template.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264_mc_template.c b/libavcodec/h264_mc_template.c index a2958598ab..8ae1eef90a 100644 --- a/libavcodec/h264_mc_template.c +++ b/libavcodec/h264_mc_template.c @@ -48,9 +48,9 @@ static void mc_part(const H264Context *h, H264SliceContext *sl, const h264_biweight_func *weight_avg, int list0, int list1) { - if ((sl->use_weight == 2 && list0 && list1 && - (sl->implicit_weight[sl->ref_cache[0][scan8[n]]][sl->ref_cache[1][scan8[n]]][sl->mb_y & 1] != 32)) || - sl->use_weight == 1) + if ((sl->pwt.use_weight == 2 && list0 && list1 && + (sl->pwt.implicit_weight[sl->ref_cache[0][scan8[n]]][sl->ref_cache[1][scan8[n]]][sl->mb_y & 1] != 32)) || + sl->pwt.use_weight == 1) mc_part_weighted(h, sl, n, square, height, delta, dest_y, dest_cb, dest_cr, x_offset, y_offset, qpix_put, chroma_put, weight_op[0], weight_op[1], weight_avg[0], |