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 +++++-------- src/player.c | 6 +----- src/player.h | 1 - 3 files changed, 6 insertions(+), 14 deletions(-) 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); } diff --git a/src/player.c b/src/player.c index 9427ddf21..4b96f8584 100644 --- a/src/player.c +++ b/src/player.c @@ -442,11 +442,7 @@ int getPlayerSoftwareVolume() { double getPlayerTotalPlayTime() { PlayerControl * pc = &(getPlayerData()->playerControl); - if(pc->state==PLAYER_STATE_STOP) { - return pc->totalPlayTime; - } - - return pc->totalPlayTime+pc->elapsedTime-pc->beginTime; + return pc->totalPlayTime; } unsigned int getPlayerSampleRate() { diff --git a/src/player.h b/src/player.h index 9b9647c59..11f408fdc 100644 --- a/src/player.h +++ b/src/player.h @@ -66,7 +66,6 @@ typedef struct _PlayerControl { volatile mpd_sint8 bits; volatile mpd_sint8 channels; volatile mpd_uint32 sampleRate; - volatile float beginTime; volatile float totalTime; volatile float elapsedTime; volatile float fileTime; -- cgit v1.2.3