[FFmpeg-soc] [soc]: r1515 - amr/amrnbfloatdec.c
superdump
subversion at mplayerhq.hu
Tue Dec 4 01:53:00 CET 2007
Author: superdump
Date: Tue Dec 4 01:52:59 2007
New Revision: 1515
Log:
Add missing argument to synthesis() call
Modified:
amr/amrnbfloatdec.c
Modified: amr/amrnbfloatdec.c
==============================================================================
--- amr/amrnbfloatdec.c (original)
+++ amr/amrnbfloatdec.c Tue Dec 4 01:52:59 2007
@@ -973,7 +973,7 @@ static void synthesis(AMRContext *p, flo
// Check for overflows
for(i=0; i<AMR_SUBFRAME_SIZE; i++) {
if(FFABS(samples[i])>1.0)
- synthesis(excitation, lpc, samples, 1);
+ synthesis(p, excitation, lpc, samples, 1);
}
}
More information about the FFmpeg-soc
mailing list