From 6c657a9579c417395e7fa91f6f120541c69d089b Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 18 Nov 2023 19:34:26 -0800 Subject: *: apply TIL_MODULE_AUDIO_ONLY where appropriate This changes modules/playit from experimental to "audio only". Several other modules now incorporate the new flag into their excludes to prevent inclusion where inappropriate. --- src/modules/rtv/rtv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/rtv') diff --git a/src/modules/rtv/rtv.c b/src/modules/rtv/rtv.c index f0dd9dd..195f05e 100644 --- a/src/modules/rtv/rtv.c +++ b/src/modules/rtv/rtv.c @@ -245,7 +245,7 @@ static int rtv_should_skip_module(const rtv_setup_t *setup, const til_module_t * */ if (!setup->channels[0]) { /* for "all" skip these, but you can still explicitly name them. */ - if ((module->flags & (TIL_MODULE_HERMETIC | TIL_MODULE_EXPERIMENTAL | TIL_MODULE_BUILTIN))) + if ((module->flags & (TIL_MODULE_HERMETIC | TIL_MODULE_EXPERIMENTAL | TIL_MODULE_BUILTIN | TIL_MODULE_AUDIO_ONLY))) return 1; return 0; @@ -362,7 +362,7 @@ static int rtv_snow_module_setup(const til_settings_t *settings, til_setting_t * res_setup, "Snow module name", RTV_DEFAULT_SNOW_MODULE, - (TIL_MODULE_EXPERIMENTAL | TIL_MODULE_HERMETIC), + (TIL_MODULE_EXPERIMENTAL | TIL_MODULE_HERMETIC | TIL_MODULE_AUDIO_ONLY), NULL); } -- cgit v1.2.1