diff options
author | Clément Bœsch <u@pkh.me> | 2013-11-23 21:42:24 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2013-11-23 22:19:38 +0100 |
commit | bea93944653f5f9270b5d200b11b2c64fe472914 (patch) | |
tree | 4e24f6cdac123cbeab6978176583b3361d448143 | |
parent | 321b33876262ad332b3030eb6e3d0739540e4209 (diff) | |
download | ffmpeg-bea93944653f5f9270b5d200b11b2c64fe472914.tar.gz |
avcodec/vp9dsp: remove unused stride parameter in loop_filter().
The stride argument is passed either as stridea or strideb.
-rw-r--r-- | libavcodec/vp9dsp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/vp9dsp.c b/libavcodec/vp9dsp.c index 203088c846..ec0b411c93 100644 --- a/libavcodec/vp9dsp.c +++ b/libavcodec/vp9dsp.c @@ -1476,8 +1476,7 @@ static av_cold void vp9dsp_itxfm_init(VP9DSPContext *dsp) #undef init_idct } -static av_always_inline void loop_filter(uint8_t *dst, ptrdiff_t stride, - int E, int I, int H, +static av_always_inline void loop_filter(uint8_t *dst, int E, int I, int H, ptrdiff_t stridea, ptrdiff_t strideb, int wd) { @@ -1589,7 +1588,7 @@ static void loop_filter_##dir##_##wd##_8_c(uint8_t *dst, \ ptrdiff_t stride, \ int E, int I, int H) \ { \ - loop_filter(dst, stride, E, I, H, stridea, strideb, wd); \ + loop_filter(dst, E, I, H, stridea, strideb, wd); \ } #define lf_8_fns(wd) \ |