2005-06-19 03:05:53 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Linus Nielsen Feltzing
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef PCM_RECORD_H
|
|
|
|
#define PCM_RECORD_H
|
|
|
|
|
2005-11-12 04:00:56 +00:00
|
|
|
unsigned long pcm_rec_status(void);
|
|
|
|
void pcm_rec_init(void);
|
|
|
|
void pcm_rec_mux(int source);
|
2005-06-19 03:05:53 +00:00
|
|
|
|
2005-12-02 01:04:03 +00:00
|
|
|
void pcm_rec_get_peaks(int *left, int *right);
|
|
|
|
|
2005-11-12 04:00:56 +00:00
|
|
|
/* audio.h contains audio recording functions */
|
2005-08-13 17:28:59 +00:00
|
|
|
|
2005-06-19 03:05:53 +00:00
|
|
|
#endif
|