[FFmpeg-cvslog] r14444 - trunk/libavcodec/ra288.c
vitor
subversion
Mon Jul 28 00:22:51 CEST 2008
Author: vitor
Date: Mon Jul 28 00:22:51 2008
New Revision: 14444
Log:
Add a few comments pointing to the G.728 specification
Modified:
trunk/libavcodec/ra288.c
Modified: trunk/libavcodec/ra288.c
==============================================================================
--- trunk/libavcodec/ra288.c (original)
+++ trunk/libavcodec/ra288.c Mon Jul 28 00:22:51 2008
@@ -74,11 +74,13 @@ static void decode(RA288Context *ractx,
ractx->sb[x] = -scalar_product_float(ractx->sb + x + 1,
ractx->sp_lpc, 36);
- /* convert log and do rms */
+ /* block 46 of G.728 spec */
sum = 32. - scalar_product_float(ractx->gain_lpc, ractx->lhist, 10);
+ /* block 47 of G.728 spec */
sum = av_clipf(sum, 0, 60);
+ /* block 48 of G.728 spec */
sumsum = exp(sum * 0.1151292546497) * gain; /* pow(10.0,sum/20)*f */
for (x=0; x < 5; x++)
More information about the ffmpeg-cvslog
mailing list