diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-07-28 04:25:51 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-07-28 04:25:51 +0000 |
commit | 5e707c5905335b36b5a933337e3a2af0fbb6983c (patch) | |
tree | 591b11fefcfe7c4d4f101eec6ab48698390d1d12 /libavcodec/ra288.c | |
parent | c6ad13044abb264594374d04845e5ef17e975942 (diff) | |
download | ffmpeg-5e707c5905335b36b5a933337e3a2af0fbb6983c.tar.gz |
Remove redundant comments
Originally committed as revision 14450 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r-- | libavcodec/ra288.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index d02ed97d24..443f184c38 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -60,7 +60,6 @@ static void colmult(float *tgt, const float *m1, const float *m2, int n) *tgt++ = *m1++ * *m2++; } -/* Decode and produce output */ static void decode(RA288Context *ractx, float gain, int cb_coef) { int x, y; @@ -217,7 +216,6 @@ static void backward_filter(RA288Context *ractx) colmult(ractx->gain_lpc, ractx->gain_lpc, gain_bw_tab, 10); } -/* Decode a block (celp) */ static int ra288_decode_frame(AVCodecContext * avctx, void *data, int *data_size, const uint8_t * buf, int buf_size) |