diff options
author | Max Kellermann <max@duempel.org> | 2013-10-16 23:57:26 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-16 23:57:26 +0200 |
commit | d6967db761c933b55ebf48b97eab2a5ae3b1ed1c (patch) | |
tree | 2b093ec6dcbf2b17daf201586e5a1df0b0959453 /src/decoder/WildmidiDecoderPlugin.cxx | |
parent | b0967cae691018347dd741003b54618faf085e3c (diff) | |
download | mpd-d6967db761c933b55ebf48b97eab2a5ae3b1ed1c.tar.gz mpd-d6967db761c933b55ebf48b97eab2a5ae3b1ed1c.tar.xz mpd-d6967db761c933b55ebf48b97eab2a5ae3b1ed1c.zip |
decoder/wildmidi: remove suport for libwildmidi 0.2.2 or older
Diffstat (limited to '')
-rw-r--r-- | src/decoder/WildmidiDecoderPlugin.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/decoder/WildmidiDecoderPlugin.cxx b/src/decoder/WildmidiDecoderPlugin.cxx index 1a390706f..a1d29a35e 100644 --- a/src/decoder/WildmidiDecoderPlugin.cxx +++ b/src/decoder/WildmidiDecoderPlugin.cxx @@ -106,11 +106,7 @@ wildmidi_file_decode(struct decoder *decoder, const char *path_fs) unsigned long seek_where = WILDMIDI_SAMPLE_RATE * decoder_seek_where(decoder); -#ifdef HAVE_WILDMIDI_SAMPLED_SEEK - WildMidi_SampledSeek(wm, &seek_where); -#else WildMidi_FastSeek(wm, &seek_where); -#endif decoder_command_finished(decoder); cmd = DecoderCommand::NONE; } |