summaryrefslogtreecommitdiff
path: root/vpx_dsp/x86
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-02-11 19:43:36 -0800
committerJames Zern <jzern@google.com>2016-02-16 14:59:00 -0800
commit37225744dbf30d79711fa9ef182d2007a51b11bd (patch)
tree445774c2a51de11f47f43848289fb73720df252c /vpx_dsp/x86
parent47dee375db30e803a9ff8c0694040b1eb819add7 (diff)
downloadlibvpx-37225744dbf30d79711fa9ef182d2007a51b11bd.tar
libvpx-37225744dbf30d79711fa9ef182d2007a51b11bd.tar.gz
libvpx-37225744dbf30d79711fa9ef182d2007a51b11bd.tar.bz2
libvpx-37225744dbf30d79711fa9ef182d2007a51b11bd.zip
vpx_lpf_vertical_8: remove unused count param
Change-Id: Ic69406da00afb0f06588e8c0deb2b043952b078c
Diffstat (limited to 'vpx_dsp/x86')
-rw-r--r--vpx_dsp/x86/loopfilter_sse2.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/vpx_dsp/x86/loopfilter_sse2.c b/vpx_dsp/x86/loopfilter_sse2.c
index ed1012736..086d075fa 100644
--- a/vpx_dsp/x86/loopfilter_sse2.c
+++ b/vpx_dsp/x86/loopfilter_sse2.c
@@ -1492,11 +1492,10 @@ void vpx_lpf_vertical_4_dual_sse2(uint8_t *s, int p, const uint8_t *blimit0,
void vpx_lpf_vertical_8_sse2(unsigned char *s, int p,
const unsigned char *blimit,
const unsigned char *limit,
- const unsigned char *thresh, int count) {
+ const unsigned char *thresh) {
DECLARE_ALIGNED(8, unsigned char, t_dst[8 * 8]);
unsigned char *src[1];
unsigned char *dst[1];
- (void)count;
// Transpose 8x8
src[0] = s - 4;