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
|
|
|
|
|
2006-12-06 08:34:55 +00:00
|
|
|
#define DMA_REC_ERROR_DMA (-1)
|
2006-11-06 18:07:30 +00:00
|
|
|
#ifdef HAVE_SPDIF_IN
|
2006-12-06 08:34:55 +00:00
|
|
|
#define DMA_REC_ERROR_SPDIF (-2)
|
2006-11-06 18:07:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* RAW pcm data recording
|
|
|
|
* These calls are nescessary only when using the raw pcm apis directly.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Initialize pcm recording interface */
|
|
|
|
void pcm_init_recording(void);
|
|
|
|
/* Uninitialze pcm recording interface */
|
|
|
|
void pcm_close_recording(void);
|
|
|
|
|
|
|
|
/* Start recording "raw" PCM data */
|
2006-12-06 08:34:55 +00:00
|
|
|
void pcm_record_data(pcm_more_callback_type2 more_ready,
|
|
|
|
void *start, size_t size);
|
2006-08-28 22:38:41 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
/* Stop tranferring data into supplied buffer */
|
|
|
|
void pcm_stop_recording(void);
|
|
|
|
|
2006-12-06 08:34:55 +00:00
|
|
|
/* Continue transferring data in - call during interrupt handler */
|
|
|
|
void pcm_record_more(void *start, size_t size);
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
void pcm_calculate_rec_peaks(int *left, int *right);
|
|
|
|
|
|
|
|
/** General functions for high level codec recording **/
|
2006-11-14 02:46:59 +00:00
|
|
|
/* pcm_rec_error_clear is deprecated for general use. audio_error_clear
|
|
|
|
should be used */
|
2006-11-28 15:00:56 +00:00
|
|
|
void pcm_rec_error_clear(void);
|
2006-11-14 02:46:59 +00:00
|
|
|
/* pcm_rec_status is deprecated for general use. audio_status merges the
|
|
|
|
results for consistency with the hardware codec version */
|
2006-11-28 15:00:56 +00:00
|
|
|
unsigned long pcm_rec_status(void);
|
2005-11-12 04:00:56 +00:00
|
|
|
void pcm_rec_init(void);
|
2006-08-28 22:38:41 +00:00
|
|
|
int pcm_rec_current_bitrate(void);
|
2006-11-06 18:07:30 +00:00
|
|
|
int pcm_rec_encoder_afmt(void); /* AFMT_* value, AFMT_UNKNOWN if none */
|
|
|
|
int pcm_rec_rec_format(void); /* Format index or -1 otherwise */
|
|
|
|
unsigned long pcm_rec_sample_rate(void);
|
2006-08-28 22:38:41 +00:00
|
|
|
int pcm_get_num_unprocessed(void);
|
2005-12-02 01:04:03 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
/* audio.h contains audio_* recording functions */
|
2005-08-13 17:28:59 +00:00
|
|
|
|
2006-11-29 14:23:24 +00:00
|
|
|
|
|
|
|
/** The following are for internal use between pcm_record.c and target-
|
|
|
|
specific portion **/
|
|
|
|
/* the registered callback function for when more data is available */
|
2006-12-06 08:34:55 +00:00
|
|
|
extern volatile pcm_more_callback_type2 pcm_callback_more_ready;
|
2006-11-29 14:23:24 +00:00
|
|
|
/* DMA transfer in is currently active */
|
2006-12-06 08:34:55 +00:00
|
|
|
extern volatile bool pcm_recording;
|
2006-11-29 14:23:24 +00:00
|
|
|
|
|
|
|
/* APIs implemented in the target-specific portion */
|
2006-12-06 08:34:55 +00:00
|
|
|
extern void pcm_rec_dma_start(void *addr, size_t size);
|
2006-11-29 14:23:24 +00:00
|
|
|
extern void pcm_rec_dma_stop(void);
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
#endif /* PCM_RECORD_H */
|