comparison liba52/downmix.c @ 1412:e101d1cffec6 libavcodec

when changing version, please keep my changes (win32 compile fix)
author bellard
date Sun, 24 Aug 2003 13:57:42 +0000
parents 68d0a38bd802
children 0b546eab515d
comparison
equal deleted inserted replaced
1411:c2e63cb94d06 1412:e101d1cffec6
18 * 18 *
19 * You should have received a copy of the GNU General Public License 19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software 20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */ 22 */
23
24 #include "config.h"
25
26 #include <string.h>
27 #include <inttypes.h>
28
29 #include "a52.h" 23 #include "a52.h"
30 #include "a52_internal.h" 24 #include "a52_internal.h"
31 25
32 #define CONVERT(acmod,output) (((output) << 3) + (acmod)) 26 #define CONVERT(acmod,output) (((output) << 3) + (acmod))
33 27