summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorFrancesco Lavra <francescolavra@interfree.it>2010-06-11 08:04:22 +0000
committerVitor Sessak <vitor1001@gmail.com>2010-06-11 08:04:22 +0000
commit5ec29beeb4922e57786075cb426d9c9c4125627e (patch)
tree1e75696eabaa2c8e8785a6687bd801209cc79525 /libavcodec
parent6ea6c8ebcfae8413311f087ecbcd07f0063c2529 (diff)
Cosmetics: indent
Patch by Francesco Lavra (firstnamelastname@interfree.it) Originally committed as revision 23575 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/ra144.c4
-rw-r--r--libavcodec/ra144.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c
index d49e0a0e8e..c528c3274a 100644
--- a/libavcodec/ra144.c
+++ b/libavcodec/ra144.c
@@ -1503,7 +1503,7 @@ const int16_t * const ff_lpc_refl_cb[10]={
};
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)
+ const int8_t *s2, const int8_t *s3)
{
int i;
int v[3];
@@ -1579,7 +1579,7 @@ int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx)
/**
* Evaluate the LPC filter coefficients from the reflection coefficients.
- * Does the inverse of the eval_refl() function.
+ * Does the inverse of the ff_eval_refl() function.
*/
void ff_eval_coefs(int *coefs, const int *refl)
{
diff --git a/libavcodec/ra144.h b/libavcodec/ra144.h
index 965a450e8a..26ca5a5fb8 100644
--- a/libavcodec/ra144.h
+++ b/libavcodec/ra144.h
@@ -50,7 +50,7 @@ typedef struct {
} 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);
+ 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);