diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-25 02:59:35 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-26 03:43:33 +0100 |
commit | be61983d52c29e919acd25d1788fef9a91784a8b (patch) | |
tree | b5e82eb66e743bcdf34495d0b002b5c2450ccb5d /libavcodec/ra144.c | |
parent | 3d21b4f607930b65d96741c0e6d81d3212e7a6c0 (diff) | |
download | ffmpeg-be61983d52c29e919acd25d1788fef9a91784a8b.tar.gz |
Make ff_add_wav static to ra144.c
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit 1a8867486215abe3b705f7d189723d528cea2b70)
Diffstat (limited to 'libavcodec/ra144.c')
-rw-r--r-- | libavcodec/ra144.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 35b7921ec4..9baa06850f 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -1503,8 +1503,8 @@ const int16_t * const ff_lpc_refl_cb[10]={ lpc_refl_cb6, lpc_refl_cb7, lpc_refl_cb8, lpc_refl_cb9, lpc_refl_cb10 }; -void ff_add_wav(int16_t *dest, int n, int skip_first, int *m, const int16_t *s1, - const int8_t *s2, const int8_t *s3) +static void ff_add_wav(int16_t *dest, int n, int skip_first, int *m, const int16_t *s1, + const int8_t *s2, const int8_t *s3) { int i; int v[3]; |