mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 10:30:05 +01:00
avcodec/hevcdsp: rename sao_band_filter c functions
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -216,7 +216,7 @@ void ff_hevc_dsp_init(HEVCDSPContext *hevcdsp, int bit_depth)
|
||||
hevcdsp->sao_band_filter[1] = \
|
||||
hevcdsp->sao_band_filter[2] = \
|
||||
hevcdsp->sao_band_filter[3] = \
|
||||
hevcdsp->sao_band_filter[4] = FUNC(sao_band_filter_0, depth); \
|
||||
hevcdsp->sao_band_filter[4] = FUNC(sao_band_filter, depth); \
|
||||
hevcdsp->sao_edge_filter[0] = \
|
||||
hevcdsp->sao_edge_filter[1] = \
|
||||
hevcdsp->sao_edge_filter[2] = \
|
||||
|
||||
@@ -301,7 +301,7 @@ IDCT_DC(32)
|
||||
#undef SCALE
|
||||
#undef ADD_AND_SCALE
|
||||
|
||||
static void FUNC(sao_band_filter_0)(uint8_t *_dst, uint8_t *_src,
|
||||
static void FUNC(sao_band_filter)(uint8_t *_dst, uint8_t *_src,
|
||||
ptrdiff_t stride_dst, ptrdiff_t stride_src,
|
||||
int16_t *sao_offset_val, int sao_left_class,
|
||||
int width, int height)
|
||||
|
||||
Reference in New Issue
Block a user