Hello, Benjamin Larsson wrote: > Benjamin Larsson wrote: > + out_window[k] = (int)(window[k]*(1<<15)); I think making this: out_window[k] = fix15(window[k]); would do the same thing and be more consistant with the rest of the ac3enc code. -Justin