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/mod_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/mod_plugin.c')
-rw-r--r-- | src/inputPlugins/mod_plugin.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/inputPlugins/mod_plugin.c b/src/inputPlugins/mod_plugin.c index 4ab1338bf..179dc707c 100644 --- a/src/inputPlugins/mod_plugin.c +++ b/src/inputPlugins/mod_plugin.c @@ -176,7 +176,6 @@ static int mod_decode(struct decoder * decoder, char *path) return -1; } - dc.totalTime = 0; audio_format.bits = 16; audio_format.sampleRate = 44100; audio_format.channels = 2; @@ -185,7 +184,7 @@ static int mod_decode(struct decoder * decoder, char *path) 1.0 / ((audio_format.bits * audio_format.channels / 8.0) * (float)audio_format.sampleRate); - decoder_initialized(decoder, &audio_format); + decoder_initialized(decoder, &audio_format, 0); while (1) { if (dc.command == DECODE_COMMAND_SEEK) { |