[FFmpeg-cvslog] avcodec/hevc: move qp_block_mask to where its used
Michael Niedermayer
git at videolan.org
Thu Dec 18 02:29:34 CET 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Dec 18 01:55:02 2014 +0100| [99f8c9e4d177643b3bad0540437c0e53a185b198] | committer: Michael Niedermayer
avcodec/hevc: move qp_block_mask to where its used
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=99f8c9e4d177643b3bad0540437c0e53a185b198
---
libavcodec/hevc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index 7a9935d..0a11c76 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -2102,7 +2102,6 @@ static int hls_coding_quadtree(HEVCContext *s, int x0, int y0,
HEVCLocalContext *lc = s->HEVClc;
const int cb_size = 1 << log2_cb_size;
int ret;
- int qp_block_mask = (1<<(s->sps->log2_ctb_size - s->pps->diff_cu_qp_delta_depth)) - 1;
int split_cu;
lc->ct_depth = cb_depth;
@@ -2125,6 +2124,7 @@ static int hls_coding_quadtree(HEVCContext *s, int x0, int y0,
}
if (split_cu) {
+ int qp_block_mask = (1<<(s->sps->log2_ctb_size - s->pps->diff_cu_qp_delta_depth)) - 1;
const int cb_size_split = cb_size >> 1;
const int x1 = x0 + cb_size_split;
const int y1 = y0 + cb_size_split;
More information about the ffmpeg-cvslog
mailing list