aboutsummaryrefslogtreecommitdiffstats
path: root/src/aac_decode.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-05-20 00:08:22 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-05-20 00:08:22 +0000
commit70d439736672922f4897f7b5b5e1a21dfae83040 (patch)
treeb267f69279ed472ee63b49b0fe51141ae3936a81 /src/aac_decode.c
parenta81573ef059ac9f006ea438574b1b7ff751ba55d (diff)
downloadmpd-70d439736672922f4897f7b5b5e1a21dfae83040.tar.gz
mpd-70d439736672922f4897f7b5b5e1a21dfae83040.tar.xz
mpd-70d439736672922f4897f7b5b5e1a21dfae83040.zip
some fixes for non-blocking seek :-)
git-svn-id: https://svn.musicpd.org/mpd/trunk@1100 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/aac_decode.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/aac_decode.c b/src/aac_decode.c
index 70ec21dd6..9391d3539 100644
--- a/src/aac_decode.c
+++ b/src/aac_decode.c
@@ -264,7 +264,6 @@ int aac_decode(OutputBuffer * cb, DecoderControl * dc) {
unsigned int sampleCount;
char * sampleBuffer;
size_t sampleBufferLen;
- int chunkLen = 0;
/*float * seekTable;
long seekTableEnd = -1;
int seekPositionFound = 0;*/
@@ -383,17 +382,6 @@ int aac_decode(OutputBuffer * cb, DecoderControl * dc) {
if(dc->state != DECODE_STATE_DECODE) return -1;
- if(!dc->stop && chunkLen>0) {
- cb->chunkSize[cb->end] = chunkLen;
- ++cb->end;
-
- if(cb->end>=buffered_chunks) {
- cb->end = 0;
- cb->wrap = 1;
- }
- chunkLen = 0;
- }
-
if(dc->seek) dc->seek = 0;
if(dc->stop) {