2 (c) Copyright 1998-2001 - Tord Jansson
3 ======================================
5 This file is part of the BladeEnc MP3 Encoder, based on
6 ISO's reference code for MPEG Layer 3 compression, and might
7 contain smaller or larger sections that are directly taken
8 from ISO's reference code.
10 All changes to the ISO reference code herein are either
11 copyrighted by Tord Jansson (tord.jansson@swipnet.se)
12 or sublicensed to Tord Jansson by a third party.
14 BladeEnc is free software; you can redistribute this file
15 and/or modify it under the terms of the GNU Lesser General Public
16 License as published by the Free Software Foundation; either
17 version 2.1 of the License, or (at your option) any later version.
21 ------------ Changes ------------
23 2000-12-11 Andre Piotrowski
25 - reformatted, redesigned
35 #define ORG_BUFFERS 0 /* 1 = use original buffer concept */
41 /***********************************************************************
45 ***********************************************************************/
47 /* Psychoacoustic Model 2 Definitions */
57 /***********************************************************************
59 * Encoder Function Prototype Declarations
61 ***********************************************************************/
64 void initWindowFilterSubband (void);
73 short buffer[2][1152],
75 unsigned int samples_read,
78 void windowFilterSubband
90 FLOAT buffer[2][2048],
92 unsigned int samples_read,
95 void windowFilterSubband
108 #endif /* __ENCODER__ */