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 | 0d45870cea6836cd48e6953f4e67756b2502e22c (patch) | |
tree | b869b8bdab13374f21347bd77a32661ddcf74b88 /src/inputPlugins/mpc_plugin.c | |
parent | ea51f73285f4aca931c8c7f497838da573f89142 (diff) | |
download | mpd-0d45870cea6836cd48e6953f4e67756b2502e22c.tar.gz mpd-0d45870cea6836cd48e6953f4e67756b2502e22c.tar.xz mpd-0d45870cea6836cd48e6953f4e67756b2502e22c.zip |
added decoder_clear() and decoder_flush()
We are now beginning to remove direct structure accesses from the
decoder plugins. decoder_clear() and decoder_flush() mask two very
common buffer functions.
Diffstat (limited to 'src/inputPlugins/mpc_plugin.c')
-rw-r--r-- | src/inputPlugins/mpc_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/mpc_plugin.c b/src/inputPlugins/mpc_plugin.c index abdf44c63..13f2adcee 100644 --- a/src/inputPlugins/mpc_plugin.c +++ b/src/inputPlugins/mpc_plugin.c @@ -179,7 +179,7 @@ static int mpc_decode(struct decoder * mpd_decoder, InputStream * inStream) if (dc.command == DECODE_COMMAND_SEEK) { samplePos = dc.seekWhere * dc.audioFormat.sampleRate; if (mpc_decoder_seek_sample(&decoder, samplePos)) { - ob_clear(); + decoder_clear(mpd_decoder); s16 = (mpd_sint16 *) chunk; chunkpos = 0; } else @@ -242,7 +242,7 @@ static int mpc_decode(struct decoder * mpd_decoder, InputStream * inStream) replayGainInfo); } - ob_flush(); + decoder_flush(mpd_decoder); freeReplayGainInfo(replayGainInfo); |