diff options
author | Mickaƫl Raulet <mraulet@insa-rennes.fr> | 2014-07-27 22:56:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-28 00:39:13 +0200 |
commit | 3b777db1320014286592706b7bb1c2e51364bb83 (patch) | |
tree | 6cb82e62da373e43694722789adee365800566a9 /libavcodec/hevc.c | |
parent | db0578a0e783eb9c25f4bdcaf0be0ab6dee48fcf (diff) | |
download | ffmpeg-3b777db1320014286592706b7bb1c2e51364bb83.tar.gz |
hevc: remove non necessary parameters to ff_hevc_set_qpy
cherry picked from commit 6f58c111ad9920d983bb18eacf901193bac5d937
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.c')
-rw-r--r-- | libavcodec/hevc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index e71d39ce0b..727f3a5ee2 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -905,7 +905,7 @@ static int hls_transform_unit(HEVCContext *s, int x0, int y0, return AVERROR_INVALIDDATA; } - ff_hevc_set_qPy(s, x0, y0, cb_xBase, cb_yBase, log2_cb_size); + ff_hevc_set_qPy(s, cb_xBase, cb_yBase, log2_cb_size); } if (s->sh.cu_chroma_qp_offset_enabled_flag && cbf_chroma && @@ -2115,7 +2115,7 @@ static int hls_coding_unit(HEVCContext *s, int x0, int y0, int log2_cb_size) } if (s->pps->cu_qp_delta_enabled_flag && lc->tu.is_cu_qp_delta_coded == 0) - ff_hevc_set_qPy(s, x0, y0, x0, y0, log2_cb_size); + ff_hevc_set_qPy(s, x0, y0, log2_cb_size); x = y_cb * min_cb_width + x_cb; for (y = 0; y < length; y++) { |