adec_math.h 1.36 KB
Newer Older
1
/*****************************************************************************
Sam Hocevar's avatar
 
Sam Hocevar committed
2
 * adec_math.h : PCM and DCT
3 4
 *****************************************************************************
 * Copyright (C) 1999, 2000 VideoLAN
Sam Hocevar's avatar
 
Sam Hocevar committed
5
 * $Id: adec_math.h,v 1.2 2001/03/21 13:42:34 sam Exp $
6
 *
Sam Hocevar's avatar
 
Sam Hocevar committed
7
 * Authors: Michel Kaempf <maxx@via.ecp.fr>
8 9 10 11 12
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
13
 * 
14 15
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
18
 *
19 20 21
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22
 *****************************************************************************/
23

24
/*****************************************************************************
25
 * Prototypes
26
 *****************************************************************************/
27 28 29
void     DCT32(float *x, adec_bank_t *b);
void     PCM(adec_bank_t *b, s16 **pcm, int jump);