summaryrefslogtreecommitdiff
path: root/libavcodec/hevc_filter.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/hevc_filter.c
parent4b15bba2aec93776bfdc69a1bca42a4795a7d191 (diff)
downloadffmpeg-65e6ab0c5a9fbef06476ee302c97e0c95a073dd3.tar.gz
hevcdsp: remove unused parameter from sao_band_filter
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/hevc_filter.c')
-rw-r--r--libavcodec/hevc_filter.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/hevc_filter.c b/libavcodec/hevc_filter.c
index 3aaf3e55f2..30ade745e9 100644
--- a/libavcodec/hevc_filter.c
+++ b/libavcodec/hevc_filter.c
@@ -258,11 +258,8 @@ static void sao_filter_CTB(HEVCContext *s, int x, int y)
switch (sao->type_idx[c_idx]) {
case SAO_BAND:
copy_CTB(dst, src, width << s->sps->pixel_shift, height, stride_dst, stride_src);
- s->hevcdsp.sao_band_filter(src, dst,
- stride_src, stride_dst,
- sao,
- edges, width,
- height, c_idx);
+ s->hevcdsp.sao_band_filter(src, dst, stride_src, stride_dst,
+ sao, width, height, c_idx);
restore_tqb_pixels(s, x, y, width, height, c_idx);
sao->type_idx[c_idx] = SAO_APPLIED;
break;