[FFmpeg-soc] [soc]: r2451 - aacenc/aacpsy.c
kostya
subversion at mplayerhq.hu
Sun Jun 15 12:07:10 CEST 2008
Author: kostya
Date: Sun Jun 15 12:07:10 2008
New Revision: 2451
Log:
Use enum instead of numeric constant
Modified:
aacenc/aacpsy.c
Modified: aacenc/aacpsy.c
==============================================================================
--- aacenc/aacpsy.c (original)
+++ aacenc/aacpsy.c Sun Jun 15 12:07:10 2008
@@ -41,7 +41,7 @@ static void psy_null_window(AACPsyContex
int ch;
for(ch = 0; ch < apc->avctx->channels; ch++){
- cpe->ch[ch].ics.window_sequence = 0;
+ cpe->ch[ch].ics.window_sequence = ONLY_LONG_SEQUENCE;
cpe->ch[ch].ics.window_shape = 1;
cpe->ch[ch].ics.num_windows = 1;
cpe->ch[ch].ics.swb_sizes = apc->bands1024;
More information about the FFmpeg-soc
mailing list