Commit 684d0a0b authored by Mickaël Raulet's avatar Mickaël Raulet Committed by Michael Niedermayer

avcodec/hevc: fix dead code

fix CID 1231985

cherry picked from commit 745a35a777eaa5f77b8660b44098110a29916aae
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5732b218
...@@ -1140,9 +1140,6 @@ static int hls_transform_tree(HEVCContext *s, int x0, int y0, ...@@ -1140,9 +1140,6 @@ static int hls_transform_tree(HEVCContext *s, int x0, int y0,
if (s->sps->chroma_format_idc == 2 && (!split_transform_flag || log2_trafo_size == 3)) { if (s->sps->chroma_format_idc == 2 && (!split_transform_flag || log2_trafo_size == 3)) {
cbf_cb[1] = ff_hevc_cbf_cb_cr_decode(s, trafo_depth); cbf_cb[1] = ff_hevc_cbf_cb_cr_decode(s, trafo_depth);
} }
} else if (trafo_depth == 0) {
cbf_cb[0] =
cbf_cb[1] = 0;
} }
if (trafo_depth == 0 || cbf_cr[0]) { if (trafo_depth == 0 || cbf_cr[0]) {
...@@ -1150,9 +1147,6 @@ static int hls_transform_tree(HEVCContext *s, int x0, int y0, ...@@ -1150,9 +1147,6 @@ static int hls_transform_tree(HEVCContext *s, int x0, int y0,
if (s->sps->chroma_format_idc == 2 && (!split_transform_flag || log2_trafo_size == 3)) { if (s->sps->chroma_format_idc == 2 && (!split_transform_flag || log2_trafo_size == 3)) {
cbf_cr[1] = ff_hevc_cbf_cb_cr_decode(s, trafo_depth); cbf_cr[1] = ff_hevc_cbf_cb_cr_decode(s, trafo_depth);
} }
} else if (trafo_depth == 0) {
cbf_cr[0] =
cbf_cr[1] = 0;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment