diff options
author | Max Kellermann <max@duempel.org> | 2008-11-04 17:10:19 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-04 17:10:19 +0100 |
commit | 85a7d1a1487dd29705b6df5175727d565350c784 (patch) | |
tree | ffc41cf98b259576d938c2152809f37ffae24ba5 /src/decoder/aac_plugin.c | |
parent | 59c20e5afe8449204298c7d801b93636be237b4d (diff) | |
download | mpd-85a7d1a1487dd29705b6df5175727d565350c784.tar.gz mpd-85a7d1a1487dd29705b6df5175727d565350c784.tar.xz mpd-85a7d1a1487dd29705b6df5175727d565350c784.zip |
decoder: removed stream_types
Instead of checking the stream_types bit set, we can simply check
whether the methods stream_decode() and file_decode() are implemented.
Diffstat (limited to 'src/decoder/aac_plugin.c')
-rw-r--r-- | src/decoder/aac_plugin.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/decoder/aac_plugin.c b/src/decoder/aac_plugin.c index 7961865b2..81ad90e69 100644 --- a/src/decoder/aac_plugin.c +++ b/src/decoder/aac_plugin.c @@ -579,7 +579,6 @@ const struct decoder_plugin aacPlugin = { .stream_decode = aac_stream_decode, .file_decode = aac_decode, .tag_dup = aacTagDup, - .stream_types = INPUT_PLUGIN_STREAM_FILE | INPUT_PLUGIN_STREAM_URL, .suffixes = aac_suffixes, .mime_types = aac_mimeTypes }; |