mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-28 09:44:33 +08:00
ARM: fix ff_apply_window_int16_neon() prototype
The length argument should be unsigned. No change in code. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
@ -169,7 +169,7 @@ int32_t ff_scalarproduct_and_madd_int16_neon(int16_t *v1, const int16_t *v2,
|
|||||||
const int16_t *v3, int len, int mul);
|
const int16_t *v3, int len, int mul);
|
||||||
|
|
||||||
void ff_apply_window_int16_neon(int16_t *dst, const int16_t *src,
|
void ff_apply_window_int16_neon(int16_t *dst, const int16_t *src,
|
||||||
const int16_t *window, int n);
|
const int16_t *window, unsigned n);
|
||||||
|
|
||||||
void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
|
void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user