]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Add doxy comment
authorvitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 23 Jun 2008 20:12:12 +0000 (20:12 +0000)
committervitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 23 Jun 2008 20:12:12 +0000 (20:12 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13917 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/ra144.c

index bf1266904e75ff62b67de5745170033ba1395147..fb31714511331f392e961e732d4ac1d7ac5bdfa3 100644 (file)
@@ -136,6 +136,13 @@ static void add_wav(int n, int skip_first, int *m, const int16_t *s1,
         dest[i] = ((*(s1++))*v[0] + (*(s2++))*v[1] + (*(s3++))*v[2]) >> 12;
 }
 
+/**
+ * LPC Filter. Each output value is predicted from the 10 previous computed
+ * ones. It overwrites the input with the output.
+ *
+ * @param in the input of the filter. It should be an array of size len + 10.
+ * The 10 first input values are used to evaluate the first filtered one.
+ */
 static void lpc_filter(const int16_t *lpc_coefs, uint16_t *in, int len)
 {
     int x, i;