From ca081217cda87bf8c5a32b0584665bce9b266d95 Mon Sep 17 00:00:00 2001 From: Christophe Gisquet Date: Wed, 23 Jul 2014 13:39:40 +0200 Subject: [PATCH] hevcdsp: change types of SAO parameters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From openhevc Reviewed-by: Mickaƫl Raulet Signed-off-by: Michael Niedermayer --- libavcodec/hevcdsp.h | 4 ++-- libavcodec/hevcdsp_template.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h index 8564deb1a0..ba42984fb6 100644 --- a/libavcodec/hevcdsp.h +++ b/libavcodec/hevcdsp.h @@ -31,11 +31,11 @@ typedef struct SAOParams { int offset_abs[3][4]; ///< sao_offset_abs int offset_sign[3][4]; ///< sao_offset_sign - int band_position[3]; ///< sao_band_position + uint8_t band_position[3]; ///< sao_band_position int eo_class[3]; ///< sao_eo_class - int offset_val[3][5]; ///offset_val[c_idx]; + int16_t *sao_offset_val = sao->offset_val[c_idx]; int sao_left_class = sao->band_position[c_idx]; stride_dst /= sizeof(pixel); @@ -368,7 +368,7 @@ static void FUNC(sao_edge_filter)(uint8_t *_dst, uint8_t *_src, { { -1, -1 }, { 1, 1 } }, // 45 degree { { 1, -1 }, { -1, 1 } }, // 135 degree }; - int *sao_offset_val = sao->offset_val[c_idx]; + int16_t *sao_offset_val = sao->offset_val[c_idx]; int sao_eo_class = sao->eo_class[c_idx]; pixel *dst = (pixel *)_dst; pixel *src = (pixel *)_src; @@ -406,7 +406,7 @@ static void FUNC(sao_edge_filter_0)(uint8_t *_dst, uint8_t *_src, int x, y; pixel *dst = (pixel *)_dst; pixel *src = (pixel *)_src; - int *sao_offset_val = sao->offset_val[c_idx]; + int16_t *sao_offset_val = sao->offset_val[c_idx]; int sao_eo_class = sao->eo_class[c_idx]; int init_x = 0, init_y = 0, width = _width, height = _height; @@ -459,7 +459,7 @@ static void FUNC(sao_edge_filter_1)(uint8_t *_dst, uint8_t *_src, int x, y; pixel *dst = (pixel *)_dst; pixel *src = (pixel *)_src; - int *sao_offset_val = sao->offset_val[c_idx]; + int16_t *sao_offset_val = sao->offset_val[c_idx]; int sao_eo_class = sao->eo_class[c_idx]; int init_x = 0, init_y = 0, width = _width, height = _height;