diff options
author | James Almer <jamrial@gmail.com> | 2015-01-27 16:37:43 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-02-01 15:45:14 -0300 |
commit | 65e6ab0c5a9fbef06476ee302c97e0c95a073dd3 (patch) | |
tree | 6d50461b1f1f121154f4b066ed751380b687a647 /libavcodec/hevcdsp.h | |
parent | 4b15bba2aec93776bfdc69a1bca42a4795a7d191 (diff) | |
download | ffmpeg-65e6ab0c5a9fbef06476ee302c97e0c95a073dd3.tar.gz |
hevcdsp: remove unused parameter from sao_band_filter
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/hevcdsp.h')
-rw-r--r-- | libavcodec/hevcdsp.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h index ced3b99e1f..353677abe0 100644 --- a/libavcodec/hevcdsp.h +++ b/libavcodec/hevcdsp.h @@ -59,8 +59,7 @@ typedef struct HEVCDSPContext { void (*idct_dc[4])(int16_t *coeffs); void (*sao_band_filter)(uint8_t *_dst, uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, - struct SAOParams *sao, int *borders, - int width, int height, int c_idx); + struct SAOParams *sao, int width, int height, int c_idx); void (*sao_edge_filter[2])(uint8_t *_dst, uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, struct SAOParams *sao, int *borders, int _width, |