From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/replicant/player/ifc_playback_parameters.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Src/replicant/player/ifc_playback_parameters.h (limited to 'Src/replicant/player/ifc_playback_parameters.h') diff --git a/Src/replicant/player/ifc_playback_parameters.h b/Src/replicant/player/ifc_playback_parameters.h new file mode 100644 index 00000000..1324b7d6 --- /dev/null +++ b/Src/replicant/player/ifc_playback_parameters.h @@ -0,0 +1,20 @@ +#pragma once +#include "foundation/dispatch.h" + +/* ifc_output_parameters abstracts output parameters that are passed to an input plugin + it is things that an input plugin wouldn't necessary know about + for example, is a playback object is being used for track preview, + it might be configured to play out of a different output device + and there's no way an input plugin would know that + */ +class NOVTABLE ifc_playback_parameters : public Wasabi2::Dispatchable +{ +protected: + ifc_playback_parameters() : Dispatchable(DISPATCHABLE_VERSION) {} + ~ifc_playback_parameters() {} + + enum + { + DISPATCHABLE_VERSION=0, + }; +}; -- cgit