Make ff_add_wav static to ra144.c

Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit 1a88674862)
This commit is contained in:
Diego Elio Pettenò 2011-01-25 02:59:35 +01:00 committed by Michael Niedermayer
parent 3d21b4f607
commit be61983d52
2 changed files with 2 additions and 4 deletions

View File

@ -1503,7 +1503,7 @@ 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,
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;

View File

@ -56,8 +56,6 @@ typedef struct {
uint16_t adapt_cb[146+2];
} RA144Context;
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);
void ff_copy_and_dup(int16_t *target, const int16_t *source, int offset);
int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx);
void ff_eval_coefs(int *coefs, const int *refl);