diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-11-08 18:10:04 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-10 00:13:48 +0100 |
commit | 72a19f4013ec2c7f8581416f8ad4bf81df163fb6 (patch) | |
tree | fbc973c4d5e7fc22466c2808d3e0989c8092c804 /libavcodec/aarch64 | |
parent | 2dd464868c64fa21a6e3bd63ad364ff12999c7d0 (diff) | |
download | ffmpeg-72a19f4013ec2c7f8581416f8ad4bf81df163fb6.tar.gz |
mpegaudiodsp: aarch64: Adjust function prototype after 2caa93b813adc5dbb7771dfe615da826a2947d18
Diffstat (limited to 'libavcodec/aarch64')
-rw-r--r-- | libavcodec/aarch64/mpegaudiodsp_init.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/aarch64/mpegaudiodsp_init.c b/libavcodec/aarch64/mpegaudiodsp_init.c index a8b2baf955..849e310f62 100644 --- a/libavcodec/aarch64/mpegaudiodsp_init.c +++ b/libavcodec/aarch64/mpegaudiodsp_init.c @@ -16,6 +16,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <stddef.h> #include <stdint.h> #include "libavutil/attributes.h" @@ -24,9 +25,9 @@ #include "config.h" void ff_mpadsp_apply_window_fixed_neon(int32_t *synth_buf, int32_t *window, - int *dither, int16_t *samples, int incr); + int *dither, int16_t *samples, ptrdiff_t incr); void ff_mpadsp_apply_window_float_neon(float *synth_buf, float *window, - int *dither, float *samples, int incr); + int *dither, float *samples, ptrdiff_t incr); av_cold void ff_mpadsp_init_aarch64(MPADSPContext *s) { |