diff options
author | Max Kellermann <max@duempel.org> | 2014-03-16 09:52:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-03-16 09:52:17 +0100 |
commit | e9912bcf8a8041d9c8e22c0c9fcb8442c530d2d8 (patch) | |
tree | 832702c5271cf2c6e333c98dc3f6554205662412 /src/input/plugins/AlsaInputPlugin.cxx | |
parent | 4a5cc9f610defd451ba0aefd1451f1ba310b43e3 (diff) | |
download | mpd-e9912bcf8a8041d9c8e22c0c9fcb8442c530d2d8.tar.gz mpd-e9912bcf8a8041d9c8e22c0c9fcb8442c530d2d8.tar.xz mpd-e9912bcf8a8041d9c8e22c0c9fcb8442c530d2d8.zip |
input/alsa: don't initialize "seekable=false", "size=-1"
These are the default values already.
Diffstat (limited to '')
-rw-r--r-- | src/input/plugins/AlsaInputPlugin.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input/plugins/AlsaInputPlugin.cxx b/src/input/plugins/AlsaInputPlugin.cxx index da2d9a926..eae06ba6c 100644 --- a/src/input/plugins/AlsaInputPlugin.cxx +++ b/src/input/plugins/AlsaInputPlugin.cxx @@ -97,8 +97,6 @@ public: Needs to be generalised when/if that decoder is updated to support other audio formats */ base.mime = "audio/x-mpd-cdda-pcm"; - base.seekable = false; - base.size = -1; base.ready = true; frames_to_read = read_buffer_size / frame_size; |