diff options
author | James Almer <jamrial@gmail.com> | 2015-08-21 02:24:30 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-08-21 02:24:30 -0300 |
commit | 7a806c68a62c0d9bd00c1e16c103456cc8f11e6e (patch) | |
tree | e83a23616d0715eba9eff87884ea6b80b6efd9d7 /libavcodec/hevcdsp_template.c | |
parent | e32a99264be6ce0d3ec060fdb8b56463b2f0b8cd (diff) | |
download | ffmpeg-7a806c68a62c0d9bd00c1e16c103456cc8f11e6e.tar.gz |
avcodec/hevcdsp: rename sao_band_filter c functions
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/hevcdsp_template.c')
-rw-r--r-- | libavcodec/hevcdsp_template.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/hevcdsp_template.c b/libavcodec/hevcdsp_template.c index c547eec4f9..b840d179c3 100644 --- a/libavcodec/hevcdsp_template.c +++ b/libavcodec/hevcdsp_template.c @@ -301,10 +301,10 @@ IDCT_DC(32) #undef SCALE #undef ADD_AND_SCALE -static void FUNC(sao_band_filter_0)(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) +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) { pixel *dst = (pixel *)_dst; pixel *src = (pixel *)_src; |