summaryrefslogtreecommitdiff
path: root/libavcodec/hevcdsp_template.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2015-01-27 16:37:43 -0300
committerJames Almer <jamrial@gmail.com>2015-02-01 15:45:14 -0300
commit65e6ab0c5a9fbef06476ee302c97e0c95a073dd3 (patch)
tree6d50461b1f1f121154f4b066ed751380b687a647 /libavcodec/hevcdsp_template.c
parent4b15bba2aec93776bfdc69a1bca42a4795a7d191 (diff)
hevcdsp: remove unused parameter from sao_band_filter
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/hevcdsp_template.c')
-rw-r--r--libavcodec/hevcdsp_template.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/hevcdsp_template.c b/libavcodec/hevcdsp_template.c
index 360a509374..a8fff45fad 100644
--- a/libavcodec/hevcdsp_template.c
+++ b/libavcodec/hevcdsp_template.c
@@ -303,8 +303,7 @@ IDCT_DC(32)
static void FUNC(sao_band_filter_0)(uint8_t *_dst, uint8_t *_src,
ptrdiff_t stride_dst, ptrdiff_t stride_src, SAOParams *sao,
- int *borders, int width, int height,
- int c_idx)
+ int width, int height, int c_idx)
{
pixel *dst = (pixel *)_dst;
pixel *src = (pixel *)_src;