diff options
author | Max Kellermann <max@musicpd.org> | 2019-05-08 18:39:00 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-05-31 17:49:52 +0200 |
commit | 5d74b5cee1c11e7035ba99fa23d724175203319c (patch) | |
tree | ed1fa91f3807bca59b2064ea288ba436d1791cfd /src/config | |
parent | e8a0ce643a5e00e768f31387000cdddb2a93cb44 (diff) |
input/cache: first draft of the file cache
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/Option.hxx | 1 | ||||
-rw-r--r-- | src/config/Templates.cxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/config/Option.hxx b/src/config/Option.hxx index 03da8e378..b5d6adfb7 100644 --- a/src/config/Option.hxx +++ b/src/config/Option.hxx @@ -86,6 +86,7 @@ enum class ConfigBlockOption { AUDIO_OUTPUT, DECODER, INPUT, + INPUT_CACHE, PLAYLIST_PLUGIN, RESAMPLER, AUDIO_FILTER, diff --git a/src/config/Templates.cxx b/src/config/Templates.cxx index 4da8031d4..36d3a2c5d 100644 --- a/src/config/Templates.cxx +++ b/src/config/Templates.cxx @@ -86,6 +86,7 @@ const ConfigTemplate config_block_templates[] = { { "audio_output", true }, { "decoder", true }, { "input", true }, + { "input_cache" }, { "playlist_plugin", true }, { "resampler" }, { "filter", true }, |