mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
mpegaudiodsp: aarch64: Adjust function prototype after 2caa93b813
This commit is contained in:
parent
2dd464868c
commit
72a19f4013
@ -16,6 +16,7 @@
|
|||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "libavutil/attributes.h"
|
#include "libavutil/attributes.h"
|
||||||
@ -24,9 +25,9 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
void ff_mpadsp_apply_window_fixed_neon(int32_t *synth_buf, int32_t *window,
|
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,
|
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)
|
av_cold void ff_mpadsp_init_aarch64(MPADSPContext *s)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user