summaryrefslogtreecommitdiff
path: root/libavcodec/mips/mpegaudiodsp_mips_fixed.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-03-21 15:59:31 -0300
committerJames Almer <jamrial@gmail.com>2017-03-21 16:04:22 -0300
commit9a0fbb9ca9256a2d081e440025b12f390d7380df (patch)
tree8cd8e0e41a94193b8aa99060ea0910f79028f4af /libavcodec/mips/mpegaudiodsp_mips_fixed.c
parenta0478341f34be544e28b83ecfd768922de309416 (diff)
parent2caa93b813adc5dbb7771dfe615da826a2947d18 (diff)
Merge commit '2caa93b813adc5dbb7771dfe615da826a2947d18'
* commit '2caa93b813adc5dbb7771dfe615da826a2947d18': mpegaudiodsp: Change type of array stride parameters to ptrdiff_t Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/mips/mpegaudiodsp_mips_fixed.c')
-rw-r--r--libavcodec/mips/mpegaudiodsp_mips_fixed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mips/mpegaudiodsp_mips_fixed.c b/libavcodec/mips/mpegaudiodsp_mips_fixed.c
index ed8c89089e..1c9c68d23c 100644
--- a/libavcodec/mips/mpegaudiodsp_mips_fixed.c
+++ b/libavcodec/mips/mpegaudiodsp_mips_fixed.c
@@ -61,7 +61,7 @@
#if !HAVE_MIPS32R6 && !HAVE_MIPS64R6
static void ff_mpadsp_apply_window_mips_fixed(int32_t *synth_buf, int32_t *window,
- int *dither_state, int16_t *samples, int incr)
+ int *dither_state, int16_t *samples, ptrdiff_t incr)
{
register const int32_t *w, *w2, *p;
int j;