forked from FFmpeg/FFmpeg
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:
parent
4a7e068b8f
commit
d743065e18
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue