From 2da61ff3fbd01573a725684df50b3625bdf0aa45 Mon Sep 17 00:00:00 2001 From: Brandon Low Date: Mon, 24 Apr 2006 01:32:28 +0000 Subject: [PATCH] Remove accidentally commited commented code, no functional changes git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9784 a1c6a512-1295-4272-9138-f99709370657 --- apps/pcmbuf.c | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c index ff7d4cfa82..0c037abb4b 100644 --- a/apps/pcmbuf.c +++ b/apps/pcmbuf.c @@ -83,25 +83,13 @@ static struct pcmbufdesc *pcmbuf_read_end IDATA_ATTR; static struct pcmbufdesc *pcmbuf_write IDATA_ATTR; static struct pcmbufdesc *pcmbuf_write_end 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_watermark IDATA_ATTR; + static struct pcmbufdesc *pcmbuf_mix_chunk IDATA_ATTR; static size_t pcmbuf_mix_sample IDATA_ATTR; + static bool low_latency_mode = false; static bool pcmbuf_flush;