Remove accidentally commited commented code, no functional changes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9784 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2aa85a2b6a
commit
2da61ff3fb
1 changed files with 3 additions and 15 deletions
|
@ -83,25 +83,13 @@ static struct pcmbufdesc *pcmbuf_read_end IDATA_ATTR;
|
||||||
static struct pcmbufdesc *pcmbuf_write IDATA_ATTR;
|
static struct pcmbufdesc *pcmbuf_write IDATA_ATTR;
|
||||||
static struct pcmbufdesc *pcmbuf_write_end IDATA_ATTR;
|
static struct pcmbufdesc *pcmbuf_write_end IDATA_ATTR;
|
||||||
static size_t last_chunksize IDATA_ATTR;
|
static size_t last_chunksize IDATA_ATTR;
|
||||||
/*
|
|
||||||
static inline size_t pcmbuf_unplayed_bytes(void)
|
|
||||||
{
|
|
||||||
size_t bytes = 0;
|
|
||||||
if (pcmbuf_read)
|
|
||||||
{
|
|
||||||
struct pcmbufdesc *pcmbuf_chunk = pcmbuf_read;
|
|
||||||
do
|
|
||||||
{
|
|
||||||
bytes += pcmbuf_chunk->size;
|
|
||||||
pcmbuf_chunk = pcmbuf_chunk->link;
|
|
||||||
} while (pcmbuf_chunk);
|
|
||||||
}
|
|
||||||
return bytes;
|
|
||||||
} */
|
|
||||||
static size_t pcmbuf_unplayed_bytes IDATA_ATTR;
|
static size_t pcmbuf_unplayed_bytes IDATA_ATTR;
|
||||||
static size_t pcmbuf_watermark IDATA_ATTR;
|
static size_t pcmbuf_watermark IDATA_ATTR;
|
||||||
|
|
||||||
static struct pcmbufdesc *pcmbuf_mix_chunk IDATA_ATTR;
|
static struct pcmbufdesc *pcmbuf_mix_chunk IDATA_ATTR;
|
||||||
static size_t pcmbuf_mix_sample IDATA_ATTR;
|
static size_t pcmbuf_mix_sample IDATA_ATTR;
|
||||||
|
|
||||||
static bool low_latency_mode = false;
|
static bool low_latency_mode = false;
|
||||||
static bool pcmbuf_flush;
|
static bool pcmbuf_flush;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue