diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-24 20:22:34 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-03-24 20:43:47 +0000 |
commit | d743065e18c19b63591a5e3eb9aa8aeeeaefdb37 (patch) | |
tree | 5f955d4c59a582ddd1bbf8f23cec1d9351bbcc5b | |
parent | 4a7e068b8fb15b646c465d360ee478e02d100ca4 (diff) | |
download | ffmpeg-d743065e18c19b63591a5e3eb9aa8aeeeaefdb37.tar.gz |
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>
-rw-r--r-- | libavcodec/arm/dsputil_init_neon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/dsputil_init_neon.c b/libavcodec/arm/dsputil_init_neon.c index eb0bc575e8..cd58011a2c 100644 --- a/libavcodec/arm/dsputil_init_neon.c +++ b/libavcodec/arm/dsputil_init_neon.c @@ -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) { |