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;
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to