OSDN Git Service

ARM: fix ff_apply_window_int16_neon() prototype
authorMans Rullgard <mans@mansr.com>
Thu, 24 Mar 2011 20:22:34 +0000 (20:22 +0000)
committerMans Rullgard <mans@mansr.com>
Thu, 24 Mar 2011 20:43:47 +0000 (20:43 +0000)
The length argument should be unsigned.  No change in code.

Signed-off-by: Mans Rullgard <mans@mansr.com>
libavcodec/arm/dsputil_init_neon.c

index eb0bc57..cd58011 100644 (file)
@@ -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)
 {