diff options
author | Max Kellermann <max@duempel.org> | 2008-11-02 17:01:51 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-02 17:01:51 +0100 |
commit | c9e15bc418d4a27305b39ccc63e631ac5e329c8b (patch) | |
tree | 0e97c8b6c829f464374d3b2cbcbc3fb01e4bebe4 /src/decoder/mpc_plugin.c | |
parent | c7a374bdcbe85a794b047c638e57b9358d2d095b (diff) | |
download | mpd-c9e15bc418d4a27305b39ccc63e631ac5e329c8b.tar.gz mpd-c9e15bc418d4a27305b39ccc63e631ac5e329c8b.tar.xz mpd-c9e15bc418d4a27305b39ccc63e631ac5e329c8b.zip |
decoder_api: pass "seekable" flag to decoder_initialized()
Don't pass the "seekable" flag with every decoder_data() invocation.
Since that flag won't change within the file, it is enough to pass it
to decoder_initialized() once per file.
Diffstat (limited to 'src/decoder/mpc_plugin.c')
-rw-r--r-- | src/decoder/mpc_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/mpc_plugin.c b/src/decoder/mpc_plugin.c index 9181c4388..510433d13 100644 --- a/src/decoder/mpc_plugin.c +++ b/src/decoder/mpc_plugin.c @@ -163,6 +163,7 @@ mpc_decode(struct decoder *mpd_decoder, struct input_stream *inStream) replayGainInfo->trackPeak = info.peak_title / 32767.0; decoder_initialized(mpd_decoder, &audio_format, + inStream->seekable, mpc_streaminfo_get_length(&info)); while (!eof) { @@ -204,7 +205,6 @@ mpc_decode(struct decoder *mpd_decoder, struct input_stream *inStream) audio_format.sample_rate / 1152 / 1000; decoder_data(mpd_decoder, inStream, - inStream->seekable, chunk, chunkpos, total_time, bitRate, replayGainInfo); @@ -226,7 +226,7 @@ mpc_decode(struct decoder *mpd_decoder, struct input_stream *inStream) bitRate = vbrUpdateBits * audio_format.sample_rate / 1152 / 1000; - decoder_data(mpd_decoder, NULL, inStream->seekable, + decoder_data(mpd_decoder, NULL, chunk, chunkpos, total_time, bitRate, replayGainInfo); } |