diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:05 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:05 +0200 |
commit | 0d8b551c5a3aeadfd6901469946078d5a95ecb42 (patch) | |
tree | 3fd36e06ef46dfcfc7f9e426b42668318aec8d59 /src/inputPlugins/aac_plugin.c | |
parent | 4590a98f0eb9484e185e7e0c25a3373c8e9076ea (diff) | |
download | mpd-0d8b551c5a3aeadfd6901469946078d5a95ecb42.tar.gz mpd-0d8b551c5a3aeadfd6901469946078d5a95ecb42.tar.xz mpd-0d8b551c5a3aeadfd6901469946078d5a95ecb42.zip |
added parameter total_time to decoder_initialized()
Similar to the previous patch: pass total_time instead of manipulating
dc->totalTime directly.
Diffstat (limited to 'src/inputPlugins/aac_plugin.c')
-rw-r--r-- | src/inputPlugins/aac_plugin.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/inputPlugins/aac_plugin.c b/src/inputPlugins/aac_plugin.c index 4fa54c646..f2d15101d 100644 --- a/src/inputPlugins/aac_plugin.c +++ b/src/inputPlugins/aac_plugin.c @@ -338,8 +338,6 @@ static int aac_decode(struct decoder * mpd_decoder, char *path) audio_format.bits = 16; - dc.totalTime = totalTime; - file_time = 0.0; advanceAacBuffer(&b, bread); @@ -372,7 +370,8 @@ static int aac_decode(struct decoder * mpd_decoder, char *path) if (dc.state != DECODE_STATE_DECODE) { audio_format.channels = frameInfo.channels; audio_format.sampleRate = sampleRate; - decoder_initialized(mpd_decoder, &audio_format); + decoder_initialized(mpd_decoder, &audio_format, + totalTime); } advanceAacBuffer(&b, frameInfo.bytesconsumed); |