Commit 2eb3db5f authored by Oded Shimon's avatar Oded Shimon

Original Commit: r110 | ods15 | 2006-10-01 19:17:32 +0200 (Sun, 01 Oct 2006) | 2 lines

slight simlification for residue division by floor

Originally committed as revision 6514 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f8a6a56a
......@@ -1424,11 +1424,8 @@ static int vorbis_encode_frame(AVCodecContext * avccontext, unsigned char * pack
floor_encode(venc, fc, &pb, posts, &venc->floor[i * samples], samples);
}
for (i = 0; i < venc->channels; i++) {
int j;
for (j = 0; j < samples; j++) {
venc->coeffs[i * samples + j] /= venc->floor[i * samples + j];
}
for (i = 0; i < venc->channels * samples; i++) {
venc->coeffs[i] /= venc->floor[i];
}
for (i = 0; i < mapping->coupling_steps; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment