[Ffmpeg-cvslog] r6510 - trunk/libavcodec/vorbis_enc.c
ods15
subversion
Mon Oct 2 08:09:34 CEST 2006
Author: ods15
Date: Mon Oct 2 08:09:33 2006
New Revision: 6510
Modified:
trunk/libavcodec/vorbis_enc.c
Log:
Original Commit: r106 | ods15 | 2006-10-01 18:11:55 +0200 (Sun, 01 Oct 2006) | 2 lines
window -> apply_window_and_mdct
Modified: trunk/libavcodec/vorbis_enc.c
==============================================================================
--- trunk/libavcodec/vorbis_enc.c (original)
+++ trunk/libavcodec/vorbis_enc.c Mon Oct 2 08:09:33 2006
@@ -1308,7 +1308,7 @@
}
}
-static int window(venc_context_t * venc, signed short * audio, int samples) {
+static int apply_window_and_mdct(venc_context_t * venc, signed short * audio, int samples) {
int i, j, channel;
const float * win = venc->win[0];
int window_len = 1 << (venc->blocksize[0] - 1);
@@ -1389,7 +1389,7 @@
PutBitContext pb;
int i;
- if (!window(venc, audio, samples)) return 0;
+ if (!apply_window_and_mdct(venc, audio, samples)) return 0;
samples = 1 << (venc->blocksize[0] - 1);
init_put_bits(&pb, packets, buf_size);
More information about the ffmpeg-cvslog
mailing list