Original Commit: r67 | ods15 | 2006-09-25 20:33:06 +0300 (Mon, 25 Sep 2006) | 2 lines

horrible off-by-one causing lots of troubles...

Originally committed as revision 6472 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Oded Shimon 2006-10-02 06:08:01 +00:00
parent cbb834afa1
commit af1cb7ee4c

View File

@ -847,7 +847,7 @@ static int window(venc_context_t * venc, signed short * audio, int samples) {
float * offset = venc->samples + channel*window_len*2 + window_len;
j = channel;
for (i = 0; i < samples; i++, j += venc->channels)
offset[i] = audio[j] / 32768. * win[window_len - i] / n;
offset[i] = audio[j] / 32768. / n * win[window_len - i - 1];
}
} else {
for (channel = 0; channel < venc->channels; channel++) {
@ -864,7 +864,7 @@ static int window(venc_context_t * venc, signed short * audio, int samples) {
float * offset = venc->saved + channel*window_len;
j = channel;
for (i = 0; i < samples; i++, j += venc->channels)
offset[i] = audio[j] / 32768. * win[i] / n;
offset[i] = audio[j] / 32768. / n * win[i];
}
venc->have_saved = 1;
} else {