Signed-off-by: Andreas Rheinhardt <[email protected]>
---
libavcodec/hevc_cabac.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/hevc_cabac.c b/libavcodec/hevc_cabac.c
index 9b8c8e342d..a194f8a02a 100644
--- a/libavcodec/hevc_cabac.c
+++ b/libavcodec/hevc_cabac.c
@@ -1282,7 +1282,7 @@ void ff_hevc_hls_residual_coding(HEVCContext *s, int x0,
int y0,
int scf_offset = 0;
if (s->ps.sps->transform_skip_context_enabled_flag &&
(transform_skip_flag || lc->cu.cu_transquant_bypass_flag)) {
- ctx_idx_map_p = (uint8_t*) &ctx_idx_map[4 * 16];
+ ctx_idx_map_p = &ctx_idx_map[4 * 16];
if (c_idx == 0) {
scf_offset = 40;
} else {
@@ -1292,9 +1292,9 @@ void ff_hevc_hls_residual_coding(HEVCContext *s, int x0,
int y0,
if (c_idx != 0)
scf_offset = 27;
if (log2_trafo_size == 2) {
- ctx_idx_map_p = (uint8_t*) &ctx_idx_map[0];
+ ctx_idx_map_p = &ctx_idx_map[0];
} else {
- ctx_idx_map_p = (uint8_t*) &ctx_idx_map[(prev_sig + 1) <<
4];
+ ctx_idx_map_p = &ctx_idx_map[(prev_sig + 1) << 4];
if (c_idx == 0) {
if ((x_cg > 0 || y_cg > 0))
scf_offset += 3;
--
2.34.1
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".