2005-07-13 12:48:22 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Miika Pekkarinen
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "config.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "panic.h"
|
|
|
|
#include <kernel.h>
|
|
|
|
#include "pcmbuf.h"
|
|
|
|
#include "pcm_playback.h"
|
|
|
|
#include "logf.h"
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
#include "cpu.h"
|
|
|
|
#endif
|
|
|
|
#include "system.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "buffer.h"
|
2005-07-21 11:44:00 +00:00
|
|
|
#include "settings.h"
|
|
|
|
#include "audio.h"
|
2005-08-20 11:13:19 +00:00
|
|
|
#include "dsp.h"
|
2005-07-13 12:48:22 +00:00
|
|
|
|
2005-07-21 11:44:00 +00:00
|
|
|
#define CHUNK_SIZE PCMBUF_GUARD
|
2005-07-13 12:48:22 +00:00
|
|
|
/* Must be a power of 2 */
|
2005-07-21 11:44:00 +00:00
|
|
|
#define NUM_PCM_BUFFERS 64
|
2005-07-13 12:48:22 +00:00
|
|
|
#define NUM_PCM_BUFFERS_MASK (NUM_PCM_BUFFERS - 1)
|
2005-07-21 11:44:00 +00:00
|
|
|
#define PCMBUF_WATERMARK (CHUNK_SIZE * 6)
|
2005-07-13 12:48:22 +00:00
|
|
|
|
|
|
|
/* Audio buffer related settings. */
|
2005-07-21 11:44:00 +00:00
|
|
|
static long pcmbuf_size = 0; /* Size of the PCM buffer. */
|
2005-07-13 12:48:22 +00:00
|
|
|
static char *audiobuffer;
|
|
|
|
static long audiobuffer_pos; /* Current audio buffer write index. */
|
|
|
|
long audiobuffer_free; /* Amount of bytes left in the buffer. */
|
|
|
|
static long audiobuffer_fillpos; /* Amount audiobuffer_pos will be increased. */
|
|
|
|
static char *guardbuf;
|
|
|
|
|
|
|
|
static void (*pcmbuf_event_handler)(void);
|
|
|
|
|
|
|
|
/* Crossfade related. */
|
|
|
|
static int crossfade_mode;
|
|
|
|
static bool crossfade_enabled;
|
|
|
|
static bool crossfade_active;
|
|
|
|
static bool crossfade_init;
|
|
|
|
static int crossfade_pos;
|
|
|
|
static int crossfade_amount;
|
|
|
|
static int crossfade_rem;
|
|
|
|
|
|
|
|
/* Crossfade modes. If CFM_CROSSFADE is selected, normal
|
|
|
|
* crossfader will activate. Selecting CFM_FLUSH is a special
|
|
|
|
* operation that only overwrites the pcm buffer without crossfading.
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
CFM_CROSSFADE,
|
2005-07-22 16:46:27 +00:00
|
|
|
CFM_MIX,
|
2005-07-13 12:48:22 +00:00
|
|
|
CFM_FLUSH
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Structure we can use to queue pcm chunks in memory to be played
|
|
|
|
* by the driver code. */
|
|
|
|
struct pcmbufdesc
|
|
|
|
{
|
|
|
|
void *addr;
|
|
|
|
int size;
|
|
|
|
/* Call this when the buffer has been played */
|
|
|
|
void (*callback)(void);
|
|
|
|
} pcmbuffers[NUM_PCM_BUFFERS];
|
|
|
|
|
|
|
|
volatile int pcmbuf_read_index;
|
|
|
|
volatile int pcmbuf_write_index;
|
|
|
|
int pcmbuf_unplayed_bytes;
|
2005-08-20 11:13:19 +00:00
|
|
|
int pcmbuf_mix_used_bytes;
|
2005-07-13 12:48:22 +00:00
|
|
|
int pcmbuf_watermark;
|
|
|
|
void (*pcmbuf_watermark_event)(int bytes_left);
|
2005-07-21 11:44:00 +00:00
|
|
|
static int last_chunksize;
|
2005-08-20 11:13:19 +00:00
|
|
|
static long mixpos = 0;
|
2005-07-13 12:48:22 +00:00
|
|
|
|
2005-08-28 19:55:30 +00:00
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
|
|
|
static bool boost_mode;
|
|
|
|
|
2005-08-28 14:16:03 +00:00
|
|
|
void pcmbuf_boost(bool state)
|
2005-07-13 12:48:22 +00:00
|
|
|
{
|
|
|
|
static bool boost_state = false;
|
|
|
|
|
|
|
|
if (crossfade_init || crossfade_active || boost_mode)
|
|
|
|
return ;
|
|
|
|
|
|
|
|
if (state != boost_state) {
|
|
|
|
cpu_boost(state);
|
|
|
|
boost_state = state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-28 19:55:30 +00:00
|
|
|
void pcmbuf_set_boost_mode(bool state)
|
|
|
|
{
|
|
|
|
if (state)
|
|
|
|
pcmbuf_boost(true);
|
|
|
|
boost_mode = state;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
int pcmbuf_num_used_buffers(void)
|
|
|
|
{
|
|
|
|
return (pcmbuf_write_index - pcmbuf_read_index) & NUM_PCM_BUFFERS_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pcmbuf_callback(unsigned char** start, long* size)
|
|
|
|
{
|
|
|
|
struct pcmbufdesc *desc = &pcmbuffers[pcmbuf_read_index];
|
|
|
|
|
2005-07-21 11:44:00 +00:00
|
|
|
pcmbuf_unplayed_bytes -= last_chunksize;
|
|
|
|
audiobuffer_free += last_chunksize;
|
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
if(desc->size == 0)
|
|
|
|
{
|
|
|
|
/* The buffer is finished, call the callback function */
|
|
|
|
if(desc->callback)
|
|
|
|
desc->callback();
|
|
|
|
|
|
|
|
/* Advance to the next buffer */
|
|
|
|
pcmbuf_read_index = (pcmbuf_read_index + 1) & NUM_PCM_BUFFERS_MASK;
|
|
|
|
desc = &pcmbuffers[pcmbuf_read_index];
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pcmbuf_num_used_buffers())
|
|
|
|
{
|
2005-07-19 19:57:23 +00:00
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
*start = desc->addr;
|
2005-07-19 19:57:23 +00:00
|
|
|
*size = desc->size;
|
2005-07-13 12:48:22 +00:00
|
|
|
|
|
|
|
/* Update the buffer descriptor */
|
2005-07-19 19:57:23 +00:00
|
|
|
desc->addr += desc->size;
|
|
|
|
desc->size = 0;
|
2005-07-13 12:48:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* No more buffers */
|
|
|
|
*size = 0;
|
|
|
|
if (pcmbuf_event_handler)
|
|
|
|
pcmbuf_event_handler();
|
|
|
|
}
|
|
|
|
|
2005-07-21 11:44:00 +00:00
|
|
|
last_chunksize = *size;
|
2005-07-13 12:48:22 +00:00
|
|
|
if(pcmbuf_unplayed_bytes <= pcmbuf_watermark)
|
|
|
|
{
|
|
|
|
if(pcmbuf_watermark_event)
|
|
|
|
{
|
|
|
|
pcmbuf_watermark_event(pcmbuf_unplayed_bytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcmbuf_set_watermark(int numbytes, void (*callback)(int bytes_left))
|
|
|
|
{
|
|
|
|
pcmbuf_watermark = numbytes;
|
|
|
|
pcmbuf_watermark_event = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pcmbuf_add_chunk(void *addr, int size, void (*callback)(void))
|
|
|
|
{
|
|
|
|
/* We don't use the last buffer, since we can't see the difference
|
|
|
|
between the full and empty condition */
|
|
|
|
if(pcmbuf_num_used_buffers() < (NUM_PCM_BUFFERS - 2))
|
|
|
|
{
|
|
|
|
pcmbuffers[pcmbuf_write_index].addr = addr;
|
|
|
|
pcmbuffers[pcmbuf_write_index].size = size;
|
|
|
|
pcmbuffers[pcmbuf_write_index].callback = callback;
|
|
|
|
pcmbuf_write_index = (pcmbuf_write_index+1) & NUM_PCM_BUFFERS_MASK;
|
|
|
|
pcmbuf_unplayed_bytes += size;
|
2005-08-20 11:13:19 +00:00
|
|
|
pcmbuf_mix_used_bytes = MAX(0, pcmbuf_mix_used_bytes - size);
|
2005-07-13 12:48:22 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcmbuf_watermark_callback(int bytes_left)
|
|
|
|
{
|
|
|
|
/* Fill audio buffer by boosting cpu */
|
|
|
|
pcmbuf_boost(true);
|
2005-10-21 06:40:45 +00:00
|
|
|
if (bytes_left <= CHUNK_SIZE * 2 && crossfade_mode != CFM_FLUSH)
|
2005-07-13 12:48:22 +00:00
|
|
|
crossfade_active = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcmbuf_add_event(void (*event_handler)(void))
|
|
|
|
{
|
|
|
|
pcmbuf_event_handler = event_handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int pcmbuf_get_latency(void)
|
|
|
|
{
|
|
|
|
int latency;
|
|
|
|
|
2005-07-22 06:32:55 +00:00
|
|
|
latency = (pcmbuf_unplayed_bytes + pcm_get_bytes_waiting())
|
2005-08-22 21:54:34 +00:00
|
|
|
* 1000 / 4 / 44100;
|
2005-07-13 12:48:22 +00:00
|
|
|
if (latency < 0)
|
|
|
|
latency = 0;
|
|
|
|
|
|
|
|
return latency;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pcmbuf_is_lowdata(void)
|
|
|
|
{
|
|
|
|
if (!pcm_is_playing() || pcm_is_paused() || crossfade_init || crossfade_active)
|
|
|
|
return false;
|
|
|
|
|
2005-07-21 11:44:00 +00:00
|
|
|
if (pcmbuf_unplayed_bytes < CHUNK_SIZE * 4)
|
2005-07-13 12:48:22 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-07-22 16:46:27 +00:00
|
|
|
bool pcmbuf_crossfade_init(int type)
|
2005-07-13 12:48:22 +00:00
|
|
|
{
|
2005-07-21 11:44:00 +00:00
|
|
|
if (pcmbuf_size - audiobuffer_free < CHUNK_SIZE * 8 || !crossfade_enabled
|
2005-07-13 12:48:22 +00:00
|
|
|
|| crossfade_active || crossfade_init) {
|
2005-07-15 16:42:01 +00:00
|
|
|
pcmbuf_flush_audio();
|
2005-07-13 12:48:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
logf("pcmbuf_crossfade_init");
|
|
|
|
pcmbuf_boost(true);
|
2005-07-22 16:46:27 +00:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case CROSSFADE_MODE_CROSSFADE:
|
|
|
|
crossfade_mode = CFM_CROSSFADE;
|
|
|
|
break;
|
|
|
|
case CROSSFADE_MODE_MIX:
|
|
|
|
crossfade_mode = CFM_MIX;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
crossfade_init = true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcmbuf_play_stop(void)
|
|
|
|
{
|
|
|
|
pcm_play_stop();
|
2005-07-21 11:44:00 +00:00
|
|
|
last_chunksize = 0;
|
2005-07-13 12:48:22 +00:00
|
|
|
pcmbuf_unplayed_bytes = 0;
|
2005-08-20 11:13:19 +00:00
|
|
|
pcmbuf_mix_used_bytes = 0;
|
2005-07-13 12:48:22 +00:00
|
|
|
pcmbuf_read_index = 0;
|
|
|
|
pcmbuf_write_index = 0;
|
|
|
|
audiobuffer_pos = 0;
|
|
|
|
audiobuffer_fillpos = 0;
|
2005-07-21 11:44:00 +00:00
|
|
|
audiobuffer_free = pcmbuf_size;
|
2005-07-13 12:48:22 +00:00
|
|
|
crossfade_init = false;
|
|
|
|
crossfade_active = false;
|
|
|
|
|
|
|
|
pcmbuf_set_boost_mode(false);
|
|
|
|
pcmbuf_boost(false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-07-21 11:44:00 +00:00
|
|
|
void pcmbuf_init(long bufsize)
|
2005-07-13 12:48:22 +00:00
|
|
|
{
|
2005-07-21 11:44:00 +00:00
|
|
|
pcmbuf_size = bufsize;
|
2005-07-13 12:48:22 +00:00
|
|
|
audiobuffer = &audiobuf[(audiobufend - audiobuf) -
|
2005-07-21 11:44:00 +00:00
|
|
|
pcmbuf_size - PCMBUF_GUARD];
|
|
|
|
guardbuf = &audiobuffer[pcmbuf_size];
|
2005-07-13 12:48:22 +00:00
|
|
|
pcmbuf_event_handler = NULL;
|
|
|
|
pcmbuf_play_stop();
|
|
|
|
}
|
|
|
|
|
2005-07-21 11:44:00 +00:00
|
|
|
long pcmbuf_get_bufsize(void)
|
|
|
|
{
|
|
|
|
return pcmbuf_size;
|
|
|
|
}
|
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
/** Initialize a track switch so that audio playback will not stop but
|
|
|
|
* the switch to next track would happen as soon as possible.
|
|
|
|
*/
|
|
|
|
void pcmbuf_flush_audio(void)
|
|
|
|
{
|
|
|
|
if (crossfade_init || crossfade_active || !pcm_is_playing()) {
|
|
|
|
pcmbuf_play_stop();
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
2005-07-19 19:57:23 +00:00
|
|
|
pcmbuf_boost(true);
|
2005-07-13 12:48:22 +00:00
|
|
|
crossfade_mode = CFM_FLUSH;
|
|
|
|
crossfade_init = true;
|
|
|
|
}
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
/* Force playback. */
|
|
|
|
void pcmbuf_play_start(void)
|
|
|
|
{
|
|
|
|
if (!pcm_is_playing() && pcmbuf_unplayed_bytes)
|
|
|
|
pcm_play_data(pcmbuf_callback);
|
|
|
|
}
|
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
void pcmbuf_flush_fillpos(void)
|
|
|
|
{
|
|
|
|
int copy_n;
|
|
|
|
|
|
|
|
copy_n = MIN(audiobuffer_fillpos, CHUNK_SIZE);
|
|
|
|
|
|
|
|
if (copy_n) {
|
|
|
|
while (!pcmbuf_add_chunk(&audiobuffer[audiobuffer_pos],
|
|
|
|
copy_n, pcmbuf_event_handler)) {
|
|
|
|
pcmbuf_boost(false);
|
|
|
|
sleep(1);
|
|
|
|
/* This is a fatal error situation that should never happen. */
|
|
|
|
if (!pcm_is_playing()) {
|
|
|
|
logf("pcm_flush_fillpos error");
|
2005-07-19 19:57:23 +00:00
|
|
|
pcm_play_data(pcmbuf_callback);
|
|
|
|
return ;
|
2005-07-13 12:48:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pcmbuf_event_handler = NULL;
|
|
|
|
audiobuffer_pos += copy_n;
|
2005-07-21 11:44:00 +00:00
|
|
|
if (audiobuffer_pos >= pcmbuf_size)
|
|
|
|
audiobuffer_pos -= pcmbuf_size;
|
2005-07-13 12:48:22 +00:00
|
|
|
audiobuffer_free -= copy_n;
|
|
|
|
audiobuffer_fillpos -= copy_n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void crossfade_start(void)
|
|
|
|
{
|
|
|
|
int bytesleft = pcmbuf_unplayed_bytes;
|
|
|
|
|
|
|
|
crossfade_init = 0;
|
2005-07-15 07:57:09 +00:00
|
|
|
if (bytesleft < CHUNK_SIZE * 4) {
|
2005-07-13 12:48:22 +00:00
|
|
|
logf("crossfade rejected");
|
|
|
|
pcmbuf_play_stop();
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
logf("crossfade_start");
|
|
|
|
pcmbuf_boost(true);
|
2005-10-21 06:40:45 +00:00
|
|
|
while (audiobuffer_fillpos != 0)
|
|
|
|
pcmbuf_flush_fillpos();
|
2005-07-13 12:48:22 +00:00
|
|
|
crossfade_active = true;
|
|
|
|
crossfade_pos = audiobuffer_pos;
|
|
|
|
|
|
|
|
switch (crossfade_mode) {
|
2005-07-22 16:46:27 +00:00
|
|
|
case CFM_MIX:
|
2005-07-13 12:48:22 +00:00
|
|
|
case CFM_CROSSFADE:
|
|
|
|
crossfade_amount = (bytesleft - (CHUNK_SIZE * 2))/2;
|
|
|
|
crossfade_rem = crossfade_amount;
|
|
|
|
break ;
|
|
|
|
|
|
|
|
case CFM_FLUSH:
|
2005-10-21 06:40:45 +00:00
|
|
|
crossfade_amount = bytesleft /2;
|
2005-07-13 12:48:22 +00:00
|
|
|
crossfade_rem = crossfade_amount;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
crossfade_pos -= crossfade_amount*2;
|
|
|
|
if (crossfade_pos < 0)
|
2005-07-21 11:44:00 +00:00
|
|
|
crossfade_pos += pcmbuf_size;
|
2005-07-13 12:48:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline
|
|
|
|
int crossfade(short *buf, const short *buf2, int length)
|
|
|
|
{
|
|
|
|
int size, i;
|
|
|
|
int val1, val2;
|
|
|
|
|
|
|
|
size = MIN(length, crossfade_rem);
|
|
|
|
switch (crossfade_mode) {
|
2005-07-22 16:46:27 +00:00
|
|
|
/* Mix two streams. */
|
|
|
|
case CFM_MIX:
|
|
|
|
/* Bias & add & clip. */
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
buf[i] = MIN(MAX(buf[i] + buf2[i], -32768), 32767);
|
|
|
|
}
|
|
|
|
break ;
|
|
|
|
|
|
|
|
/* Fade two streams. */
|
2005-07-13 12:48:22 +00:00
|
|
|
case CFM_CROSSFADE:
|
|
|
|
val1 = (crossfade_rem<<10)/crossfade_amount;
|
|
|
|
val2 = ((crossfade_amount-crossfade_rem)<<10)/crossfade_amount;
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
buf[i] = ((buf[i] * val1) + (buf2[i] * val2)) >> 10;
|
|
|
|
}
|
|
|
|
break ;
|
|
|
|
|
2005-07-22 16:46:27 +00:00
|
|
|
/* Join two streams. */
|
2005-07-13 12:48:22 +00:00
|
|
|
case CFM_FLUSH:
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
buf[i] = buf2[i];
|
|
|
|
}
|
|
|
|
//memcpy((char *)buf, (char *)buf2, size*2);
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
crossfade_rem -= size;
|
|
|
|
if (crossfade_rem <= 0)
|
|
|
|
crossfade_active = false;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool prepare_insert(long length)
|
|
|
|
{
|
|
|
|
if (crossfade_init)
|
|
|
|
crossfade_start();
|
|
|
|
|
|
|
|
if (audiobuffer_free < length + audiobuffer_fillpos
|
|
|
|
+ CHUNK_SIZE && !crossfade_active) {
|
|
|
|
pcmbuf_boost(false);
|
|
|
|
return false;
|
|
|
|
}
|
2005-07-19 19:57:23 +00:00
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
if (!pcm_is_playing()) {
|
|
|
|
pcmbuf_boost(true);
|
|
|
|
crossfade_active = false;
|
2005-07-21 11:44:00 +00:00
|
|
|
if (audiobuffer_free < pcmbuf_size - CHUNK_SIZE*4) {
|
2005-07-13 12:48:22 +00:00
|
|
|
logf("pcm starting");
|
|
|
|
pcm_play_data(pcmbuf_callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* pcmbuf_request_buffer(long length, long *realsize)
|
|
|
|
{
|
|
|
|
void *ptr = NULL;
|
2005-07-15 07:57:09 +00:00
|
|
|
|
2005-10-21 06:40:45 +00:00
|
|
|
if (!prepare_insert(length))
|
|
|
|
{
|
|
|
|
*realsize = 0;
|
|
|
|
return NULL;
|
2005-07-13 12:48:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (crossfade_active) {
|
|
|
|
*realsize = MIN(length, PCMBUF_GUARD);
|
|
|
|
ptr = &guardbuf[0];
|
|
|
|
} else {
|
2005-07-21 11:44:00 +00:00
|
|
|
*realsize = MIN(length, pcmbuf_size - audiobuffer_pos
|
2005-07-13 12:48:22 +00:00
|
|
|
- audiobuffer_fillpos);
|
|
|
|
if (*realsize < length) {
|
|
|
|
*realsize += MIN((long)(length - *realsize), PCMBUF_GUARD);
|
|
|
|
}
|
|
|
|
ptr = &audiobuffer[audiobuffer_pos + audiobuffer_fillpos];
|
|
|
|
}
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pcmbuf_is_crossfade_active(void)
|
|
|
|
{
|
|
|
|
return crossfade_active || crossfade_init;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcmbuf_flush_buffer(long length)
|
|
|
|
{
|
|
|
|
int copy_n;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
if (crossfade_active) {
|
|
|
|
buf = &guardbuf[0];
|
|
|
|
length = MIN(length, PCMBUF_GUARD);
|
|
|
|
while (length > 0 && crossfade_active) {
|
2005-07-21 11:44:00 +00:00
|
|
|
copy_n = MIN(length, pcmbuf_size - crossfade_pos);
|
2005-07-13 12:48:22 +00:00
|
|
|
copy_n = 2 * crossfade((short *)&audiobuffer[crossfade_pos],
|
|
|
|
(const short *)buf, copy_n/2);
|
|
|
|
buf += copy_n;
|
|
|
|
length -= copy_n;
|
|
|
|
crossfade_pos += copy_n;
|
2005-07-21 11:44:00 +00:00
|
|
|
if (crossfade_pos >= pcmbuf_size)
|
|
|
|
crossfade_pos -= pcmbuf_size;
|
2005-07-13 12:48:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while (length > 0) {
|
2005-07-21 11:44:00 +00:00
|
|
|
copy_n = MIN(length, pcmbuf_size - audiobuffer_pos);
|
2005-07-13 12:48:22 +00:00
|
|
|
memcpy(&audiobuffer[audiobuffer_pos], buf, copy_n);
|
|
|
|
audiobuffer_fillpos = copy_n;
|
|
|
|
buf += copy_n;
|
|
|
|
length -= copy_n;
|
|
|
|
if (length > 0)
|
|
|
|
pcmbuf_flush_fillpos();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
audiobuffer_fillpos += length;
|
|
|
|
|
|
|
|
try_flush:
|
2005-07-21 11:44:00 +00:00
|
|
|
if (audiobuffer_fillpos < CHUNK_SIZE && pcmbuf_size
|
2005-07-13 12:48:22 +00:00
|
|
|
- audiobuffer_pos - audiobuffer_fillpos > 0)
|
|
|
|
return ;
|
|
|
|
|
2005-07-21 11:44:00 +00:00
|
|
|
copy_n = audiobuffer_fillpos - (pcmbuf_size - audiobuffer_pos);
|
2005-07-13 12:48:22 +00:00
|
|
|
if (copy_n > 0) {
|
|
|
|
audiobuffer_fillpos -= copy_n;
|
|
|
|
pcmbuf_flush_fillpos();
|
|
|
|
copy_n = MIN(copy_n, PCMBUF_GUARD);
|
|
|
|
memcpy(&audiobuffer[0], &guardbuf[0], copy_n);
|
|
|
|
audiobuffer_fillpos = copy_n;
|
|
|
|
goto try_flush;
|
|
|
|
}
|
|
|
|
pcmbuf_flush_fillpos();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pcmbuf_insert_buffer(char *buf, long length)
|
|
|
|
{
|
|
|
|
long copy_n = 0;
|
|
|
|
|
|
|
|
if (!prepare_insert(length))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
if (crossfade_active) {
|
|
|
|
while (length > 0 && crossfade_active) {
|
2005-07-21 11:44:00 +00:00
|
|
|
copy_n = MIN(length, pcmbuf_size - crossfade_pos);
|
2005-07-13 12:48:22 +00:00
|
|
|
|
|
|
|
copy_n = 2 * crossfade((short *)&audiobuffer[crossfade_pos],
|
|
|
|
(const short *)buf, copy_n/2);
|
|
|
|
buf += copy_n;
|
|
|
|
length -= copy_n;
|
|
|
|
crossfade_pos += copy_n;
|
2005-07-21 11:44:00 +00:00
|
|
|
if (crossfade_pos >= pcmbuf_size)
|
|
|
|
crossfade_pos -= pcmbuf_size;
|
2005-07-13 12:48:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while (length > 0) {
|
2005-07-21 11:44:00 +00:00
|
|
|
copy_n = MIN(length, pcmbuf_size - audiobuffer_pos);
|
2005-07-13 12:48:22 +00:00
|
|
|
memcpy(&audiobuffer[audiobuffer_pos], buf, copy_n);
|
|
|
|
audiobuffer_fillpos = copy_n;
|
|
|
|
buf += copy_n;
|
|
|
|
length -= copy_n;
|
|
|
|
if (length > 0)
|
|
|
|
pcmbuf_flush_fillpos();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (length > 0) {
|
2005-07-21 11:44:00 +00:00
|
|
|
copy_n = MIN(length, pcmbuf_size - audiobuffer_pos -
|
2005-07-13 12:48:22 +00:00
|
|
|
audiobuffer_fillpos);
|
|
|
|
copy_n = MIN(CHUNK_SIZE - audiobuffer_fillpos, copy_n);
|
|
|
|
|
|
|
|
memcpy(&audiobuffer[audiobuffer_pos+audiobuffer_fillpos],
|
|
|
|
buf, copy_n);
|
|
|
|
buf += copy_n;
|
|
|
|
audiobuffer_fillpos += copy_n;
|
|
|
|
length -= copy_n;
|
|
|
|
|
|
|
|
/* Pre-buffer to meet CHUNK_SIZE requirement */
|
|
|
|
if (audiobuffer_fillpos < CHUNK_SIZE && length == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
pcmbuf_flush_fillpos();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-08-20 11:13:19 +00:00
|
|
|
/* Generates a constant square wave sound with a given frequency
|
|
|
|
in Hertz for a duration in milliseconds. */
|
|
|
|
void pcmbuf_beep(int frequency, int duration, int amplitude)
|
|
|
|
{
|
|
|
|
int state = 0, count = 0;
|
|
|
|
int interval = NATIVE_FREQUENCY / frequency;
|
|
|
|
int pos;
|
|
|
|
short *buf = (short *)audiobuffer;
|
|
|
|
int bufsize = pcmbuf_size / 2;
|
|
|
|
|
|
|
|
/* FIXME: Should start playback. */
|
|
|
|
//if (pcmbuf_unplayed_bytes * 1000 < 4 * NATIVE_FREQUENCY * duration)
|
|
|
|
// return ;
|
|
|
|
|
|
|
|
pos = (audiobuffer_pos - pcmbuf_unplayed_bytes) / 2;
|
|
|
|
if (pos < 0)
|
|
|
|
pos += bufsize;
|
|
|
|
|
|
|
|
duration = NATIVE_FREQUENCY / 1000 * duration;
|
|
|
|
while (duration-- > 0)
|
|
|
|
{
|
|
|
|
if (state) {
|
|
|
|
buf[pos] = MIN(MAX(buf[pos] + amplitude, -32768), 32767);
|
|
|
|
if (++pos >= bufsize)
|
|
|
|
pos = 0;
|
|
|
|
buf[pos] = MIN(MAX(buf[pos] + amplitude, -32768), 32767);
|
|
|
|
} else {
|
|
|
|
buf[pos] = MIN(MAX(buf[pos] - amplitude, -32768), 32767);
|
|
|
|
if (++pos >= bufsize)
|
|
|
|
pos = 0;
|
|
|
|
buf[pos] = MIN(MAX(buf[pos] - amplitude, -32768), 32767);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (++count >= interval)
|
|
|
|
{
|
|
|
|
count = 0;
|
|
|
|
if (state)
|
|
|
|
state = 0;
|
|
|
|
else
|
|
|
|
state = 1;
|
|
|
|
}
|
|
|
|
pos++;
|
|
|
|
if (pos >= bufsize)
|
|
|
|
pos = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns pcm buffer usage in percents (0 to 100). */
|
|
|
|
int pcmbuf_usage(void)
|
|
|
|
{
|
|
|
|
return pcmbuf_unplayed_bytes * 100 / pcmbuf_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
int pcmbuf_mix_usage(void)
|
|
|
|
{
|
|
|
|
return pcmbuf_mix_used_bytes * 100 / pcmbuf_unplayed_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcmbuf_reset_mixpos(void)
|
|
|
|
{
|
|
|
|
int bufsize = pcmbuf_size / 2;
|
|
|
|
|
|
|
|
pcmbuf_mix_used_bytes = 0;
|
|
|
|
mixpos = (audiobuffer_pos - pcmbuf_unplayed_bytes) / 2;
|
|
|
|
if (mixpos < 0)
|
|
|
|
mixpos += bufsize;
|
|
|
|
if (mixpos >= bufsize)
|
|
|
|
mixpos -= bufsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcmbuf_mix(char *buf, long length)
|
|
|
|
{
|
|
|
|
short *ibuf = (short *)buf;
|
|
|
|
short *obuf = (short *)audiobuffer;
|
|
|
|
int bufsize = pcmbuf_size / 2;
|
|
|
|
|
|
|
|
if (pcmbuf_mix_used_bytes == 0)
|
|
|
|
pcmbuf_reset_mixpos();
|
|
|
|
|
|
|
|
pcmbuf_mix_used_bytes += length;
|
|
|
|
length /= 2;
|
|
|
|
|
|
|
|
while (length-- > 0) {
|
2005-10-22 21:07:35 +00:00
|
|
|
obuf[mixpos] = MIN(MAX(obuf[mixpos]/4 + *ibuf, -32768), 32767);
|
2005-08-20 11:13:19 +00:00
|
|
|
|
|
|
|
ibuf++;
|
|
|
|
mixpos++;
|
|
|
|
if (mixpos >= bufsize)
|
|
|
|
mixpos = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
void pcmbuf_crossfade_enable(bool on_off)
|
|
|
|
{
|
|
|
|
crossfade_enabled = on_off;
|
2005-07-21 11:44:00 +00:00
|
|
|
|
2005-07-13 12:48:22 +00:00
|
|
|
if (crossfade_enabled) {
|
2005-07-21 11:44:00 +00:00
|
|
|
pcmbuf_set_watermark(pcmbuf_size - (CHUNK_SIZE*6), pcmbuf_watermark_callback);
|
2005-07-13 12:48:22 +00:00
|
|
|
} else {
|
|
|
|
pcmbuf_set_watermark(PCMBUF_WATERMARK, pcmbuf_watermark_callback);
|
2005-07-21 11:44:00 +00:00
|
|
|
}
|
2005-07-13 12:48:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool pcmbuf_is_crossfade_enabled(void)
|
|
|
|
{
|
|
|
|
return crossfade_enabled;
|
|
|
|
}
|
|
|
|
|