From 710ec5695b549c1875cf0cdd274d7c00b11494a5 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Thu, 3 Jun 2004 12:34:25 +0000 Subject: better method for computing total time played git-svn-id: https://svn.musicpd.org/mpd/trunk@1317 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/decode.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'src/decode.c') diff --git a/src/decode.c b/src/decode.c index f19301c66..ed6861ffd 100644 --- a/src/decode.c +++ b/src/decode.c @@ -127,6 +127,9 @@ int calculateCrossFadeChunks(PlayerControl * pc, AudioFormat * af) { pc->sampleRate = dc->audioFormat.sampleRate; \ pc->bits = dc->audioFormat.bits; \ pc->channels = dc->audioFormat.channels; \ + sizeToTime = 8.0/cb->audioFormat.bits/ \ + cb->audioFormat.channels/ \ + cb->audioFormat.sampleRate; \ } \ else if(dc->state!=DECODE_STATE_START || *decode_pid <= 0) { \ strncpy(pc->erroredUrl, pc->utf8url, MAXPATHLEN); \ @@ -198,7 +201,6 @@ int decodeSeek(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb, while(*decode_pid>0 && dc->seek) my_usleep(10000); if(!dc->seekError) { pc->elapsedTime = dc->seekWhere; - pc->beginTime = pc->elapsedTime; ret = 0; } } @@ -240,7 +242,6 @@ int decodeSeek(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb, if(pause) closeAudioDevice(); \ } \ if(pc->seek) { \ - pc->totalPlayTime+= pc->elapsedTime-pc->beginTime; \ if(decodeSeek(pc,dc,cb,&decodeWaitedOn) == 0) { \ doCrossFade = 0; \ nextChunk = -1; \ @@ -248,7 +249,6 @@ int decodeSeek(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb, } \ } \ if(pc->stop) { \ - pc->totalPlayTime+= pc->elapsedTime-pc->beginTime; \ quitDecode(pc,dc); \ return; \ } @@ -410,6 +410,7 @@ void decodeParent(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb) { int test; int decodeWaitedOn = 0; char silence[CHUNK_SIZE]; + double sizeToTime = 0.0; memset(silence,0,CHUNK_SIZE); @@ -417,7 +418,6 @@ void decodeParent(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb) { pc->state = PLAYER_STATE_PLAY; pc->play = 0; - pc->beginTime = pc->elapsedTime; kill(getppid(),SIGUSR1); while(*decode_pid>0 && !cb->wrap && cb->end-cb->begintotalPlayTime+= sizeToTime*cb->chunkSize[cb->begin]; cb->begin++; if(cb->begin>=buffered_chunks) { cb->begin = 0; @@ -524,8 +525,6 @@ void decodeParent(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb) { } } else if(cb->next==cb->begin) { - pc->totalPlayTime+= pc->elapsedTime- - pc->beginTime; if(doCrossFade==1 && nextChunk>=0) { nextChunk = cb->begin+crossFadeChunks; test = cb->end; @@ -563,7 +562,6 @@ void decodeParent(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb) { pc->queueState = PLAYER_QUEUE_EMPTY; kill(getppid(),SIGUSR1); } - pc->beginTime = cb->times[cb->begin]; } else if(*decode_pid<=0 || (dc->state==DECODE_STATE_STOP && !dc->start)) @@ -576,7 +574,6 @@ void decodeParent(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb) { } } - pc->totalPlayTime+= pc->elapsedTime-pc->beginTime; \ quitDecode(pc,dc); } -- cgit v1.2.3