diff options
author | Max Kellermann <max@duempel.org> | 2014-08-23 15:19:34 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-23 15:19:34 +0200 |
commit | 828ea700e828f337af86a709260792caaf0ec718 (patch) | |
tree | b9557c8117799a07c6bcce5b4eb86949269b428a /src/decoder | |
parent | 7f22685fa3752c7721b513aa011027319bec24ce (diff) | |
download | mpd-828ea700e828f337af86a709260792caaf0ec718.tar.gz mpd-828ea700e828f337af86a709260792caaf0ec718.tar.xz mpd-828ea700e828f337af86a709260792caaf0ec718.zip |
decoder/dsdiff: don't skip remaining bytes
Nobody cares.
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/plugins/DsdiffDecoderPlugin.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/decoder/plugins/DsdiffDecoderPlugin.cxx b/src/decoder/plugins/DsdiffDecoderPlugin.cxx index c81549134..b5584d1fd 100644 --- a/src/decoder/plugins/DsdiffDecoderPlugin.cxx +++ b/src/decoder/plugins/DsdiffDecoderPlugin.cxx @@ -400,7 +400,8 @@ dsdiff_decode_chunk(Decoder &decoder, InputStream &is, break; } } - return dsdlib_skip(&decoder, is, chunk_size); + + return true; } static void |