Browse Source

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
tags/v0.5
Oded Shimon 19 years ago
parent
commit
af1cb7ee4c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/vorbis_enc.c

+ 2
- 2
libavcodec/vorbis_enc.c 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 {


Loading…
Cancel
Save