mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-04-11 16:37:45 -04:00
move target-specific pcm operations into builtin_pcm_sink. in subsequent commits, another pcm_sink is added, and it becomes possible to switch between them. Change-Id: I8f8b9661e01d6e6472f34224ddc3760856778457
105 lines
2.1 KiB
C
105 lines
2.1 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2025 Aidan MacDonald
|
|
*
|
|
* 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.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
#include "pcm.h"
|
|
#include "pcm-internal.h"
|
|
#include "pcm_sampr.h"
|
|
#include "pcm_sink.h"
|
|
|
|
static void sink_set_freq(uint16_t freq)
|
|
{
|
|
(void)freq;
|
|
}
|
|
|
|
static void sink_dma_init(void)
|
|
{
|
|
}
|
|
|
|
static void sink_dma_postinit(void)
|
|
{
|
|
}
|
|
|
|
static void sink_dma_start(const void *addr, size_t size)
|
|
{
|
|
(void)addr;
|
|
(void)size;
|
|
}
|
|
|
|
static void sink_dma_stop(void)
|
|
{
|
|
}
|
|
|
|
static void sink_lock(void)
|
|
{
|
|
}
|
|
|
|
static void sink_unlock(void)
|
|
{
|
|
}
|
|
|
|
struct pcm_sink builtin_pcm_sink = {
|
|
.caps = {
|
|
.samprs = hw_freq_sampr,
|
|
.num_samprs = HW_NUM_FREQ,
|
|
.default_freq = HW_FREQ_DEFAULT,
|
|
},
|
|
.ops = {
|
|
.init = sink_dma_init,
|
|
.postinit = sink_dma_postinit,
|
|
.set_freq = sink_set_freq,
|
|
.lock = sink_lock,
|
|
.unlock = sink_unlock,
|
|
.play = sink_dma_start,
|
|
.stop = sink_dma_stop,
|
|
},
|
|
};
|
|
|
|
#ifdef HAVE_RECORDING
|
|
void pcm_rec_dma_init(void)
|
|
{
|
|
}
|
|
|
|
void pcm_rec_dma_close(void)
|
|
{
|
|
}
|
|
|
|
void pcm_rec_dma_start(void *addr, size_t size)
|
|
{
|
|
(void)addr;
|
|
(void)size;
|
|
}
|
|
|
|
void pcm_rec_dma_stop(void)
|
|
{
|
|
}
|
|
|
|
void pcm_rec_lock(void)
|
|
{
|
|
}
|
|
|
|
void pcm_rec_unlock(void)
|
|
{
|
|
}
|
|
|
|
const void *pcm_rec_dma_get_peak_buffer(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
#endif
|