2007-10-06 22:27:27 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Linus Nielsen Feltzing
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2007-10-06 22:27:27 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef PCM_PLAYBACK_H
|
|
|
|
#define PCM_PLAYBACK_H
|
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
#include <string.h> /* size_t */
|
2007-10-06 22:27:27 +00:00
|
|
|
|
2008-10-14 11:43:32 +00:00
|
|
|
#define DMA_REC_ERROR_DMA (-1)
|
|
|
|
#ifdef HAVE_SPDIF_REC
|
|
|
|
#define DMA_REC_ERROR_SPDIF (-2)
|
|
|
|
#endif
|
|
|
|
|
2007-10-06 22:27:27 +00:00
|
|
|
/** RAW PCM routines used with playback and recording **/
|
|
|
|
|
2011-06-29 06:37:04 +00:00
|
|
|
/* Typedef for registered callbacks */
|
2010-05-24 16:42:32 +00:00
|
|
|
typedef void (*pcm_play_callback_type)(unsigned char **start,
|
2007-10-06 22:27:27 +00:00
|
|
|
size_t *size);
|
2010-05-24 16:42:32 +00:00
|
|
|
typedef void (*pcm_rec_callback_type)(int status, void **start, size_t *size);
|
2007-10-06 22:27:27 +00:00
|
|
|
|
2010-06-26 10:07:17 +00:00
|
|
|
/* set the pcm frequency - use values in hw_sampr_list
|
|
|
|
* when CONFIG_SAMPR_TYPES is #defined, or-in SAMPR_TYPE_* fields with
|
|
|
|
* frequency value. SAMPR_TYPE_PLAY is 0 and the default if none is
|
|
|
|
* specified. */
|
|
|
|
#ifdef CONFIG_SAMPR_TYPES
|
|
|
|
#ifdef SAMPR_TYPE_REC
|
|
|
|
unsigned int pcm_sampr_type_rec_to_play(unsigned int samplerate);
|
|
|
|
#endif
|
|
|
|
#endif /* CONFIG_SAMPR_TYPES */
|
|
|
|
|
2008-12-12 11:01:07 +00:00
|
|
|
void pcm_set_frequency(unsigned int samplerate);
|
2007-10-06 22:27:27 +00:00
|
|
|
/* apply settings to hardware immediately */
|
|
|
|
void pcm_apply_settings(void);
|
|
|
|
|
|
|
|
/** RAW PCM playback routines **/
|
|
|
|
|
|
|
|
/* Reenterable locks for locking and unlocking the playback interrupt */
|
|
|
|
void pcm_play_lock(void);
|
|
|
|
void pcm_play_unlock(void);
|
|
|
|
|
2010-05-27 12:00:29 +00:00
|
|
|
void pcm_init(void) INIT_ATTR;
|
2010-06-11 14:39:35 +00:00
|
|
|
void pcm_postinit(void);
|
2011-09-01 12:15:43 +00:00
|
|
|
bool pcm_is_initialized(void);
|
2007-10-06 22:27:27 +00:00
|
|
|
|
|
|
|
/* This is for playing "raw" PCM data */
|
2010-05-24 16:42:32 +00:00
|
|
|
void pcm_play_data(pcm_play_callback_type get_more,
|
2007-10-06 22:27:27 +00:00
|
|
|
unsigned char* start, size_t size);
|
|
|
|
|
|
|
|
void pcm_calculate_peaks(int *left, int *right);
|
2010-02-10 19:44:11 +00:00
|
|
|
const void* pcm_get_peak_buffer(int* count);
|
2007-10-06 22:27:27 +00:00
|
|
|
size_t pcm_get_bytes_waiting(void);
|
|
|
|
|
|
|
|
void pcm_play_stop(void);
|
|
|
|
void pcm_play_pause(bool play);
|
|
|
|
bool pcm_is_paused(void);
|
|
|
|
bool pcm_is_playing(void);
|
|
|
|
|
2011-06-29 06:37:04 +00:00
|
|
|
void pcm_play_set_dma_started_callback(void (* callback)(void));
|
2008-12-12 11:01:07 +00:00
|
|
|
|
2007-10-06 22:27:27 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
|
|
|
|
/** RAW PCM recording routines **/
|
|
|
|
|
|
|
|
/* Reenterable locks for locking and unlocking the recording interrupt */
|
|
|
|
void pcm_rec_lock(void);
|
|
|
|
void pcm_rec_unlock(void);
|
|
|
|
|
|
|
|
/* Initialize pcm recording interface */
|
|
|
|
void pcm_init_recording(void);
|
2010-05-13 20:39:03 +00:00
|
|
|
/* Uninitialize pcm recording interface */
|
2007-10-06 22:27:27 +00:00
|
|
|
void pcm_close_recording(void);
|
|
|
|
|
|
|
|
/* Start recording "raw" PCM data */
|
2010-05-24 16:42:32 +00:00
|
|
|
void pcm_record_data(pcm_rec_callback_type more_ready,
|
2007-10-06 22:27:27 +00:00
|
|
|
void *start, size_t size);
|
|
|
|
|
|
|
|
/* Stop tranferring data into supplied buffer */
|
|
|
|
void pcm_stop_recording(void);
|
|
|
|
|
2008-12-13 06:01:08 +00:00
|
|
|
/* Is pcm currently recording? */
|
|
|
|
bool pcm_is_recording(void);
|
|
|
|
|
2010-05-24 16:42:32 +00:00
|
|
|
/* Called by bottom layer ISR when transfer is complete. Returns non-zero
|
|
|
|
* size if successful. Setting start to NULL forces stop. */
|
|
|
|
void pcm_rec_more_ready_callback(int status, void **start, size_t *size);
|
2007-10-06 22:27:27 +00:00
|
|
|
|
|
|
|
void pcm_calculate_rec_peaks(int *left, int *right);
|
|
|
|
|
|
|
|
#endif /* HAVE_RECORDING */
|
|
|
|
|
|
|
|
#endif /* PCM_PLAYBACK_H */
|