pub enum SignalProcessingRequest {
GetElements {
responder: SignalProcessingGetElementsResponder,
},
WatchElementState {
processing_element_id: u64,
responder: SignalProcessingWatchElementStateResponder,
},
GetTopologies {
responder: SignalProcessingGetTopologiesResponder,
},
WatchTopology {
responder: SignalProcessingWatchTopologyResponder,
},
SetElementState {
processing_element_id: u64,
state: SettableElementState,
responder: SignalProcessingSetElementStateResponder,
},
SetTopology {
topology_id: u64,
responder: SignalProcessingSetTopologyResponder,
},
_UnknownMethod {
ordinal: u64,
control_handle: SignalProcessingControlHandle,
method_type: MethodType,
},
}
Expand description
For an overview see [Signal Processing Interface].
Variants§
GetElements
Returns a vector of supported processing elements.
Must return one or more processing elements, or ZX_ERR_NOT_SUPPORTED
.
If GetTopologies
returns one or more topologies, then GetElements
must return one or
more elements.
Fields
responder: SignalProcessingGetElementsResponder
WatchElementState
Get the processing element state via a hanging get.
For a given processing_element_id
, the driver will reply to the first WatchElementState
sent by the client. The driver will not respond to subsequent client WatchElementState
calls for a given processing_element_id
until any field of the Element
table changes
from what was most recently reported for that processing_element_id
.
The driver will close the protocol channel with an error of ZX_ERR_BAD_STATE
, if this
method is called again while there is already a pending WatchElementState
for this client
and processing_element_id.
GetTopologies
Returns a vector of supported topologies.
Must return one or more topologies, or ZX_ERR_NOT_SUPPORTED
.
If more than one topology is returned, then the client may choose any of the topologies from
the list with SetTopology
.
If only one topology is returned, then the topology definition is informational only since
the one and only topology used can’t be changed with SetTopology
.
If GetElements
returns one or more elements, then GetTopologies
must return one or
more topologies.
Fields
responder: SignalProcessingGetTopologiesResponder
WatchTopology
Get the current topology via a hanging get.
The driver will immediately reply to the first WatchTopology
sent by each client. The
driver will not respond to subsequent WatchTopology
calls from that client until the
signal-processing topology changes, which occurs as a result of a SetTopology
call.
The driver will close the protocol channel with an error of ZX_ERR_BAD_STATE
, if this
method is called again while there is already a pending WatchTopology
for this client.
Fields
responder: SignalProcessingWatchTopologyResponder
SetElementState
Controls a processing element using a unique ElementId returned by GetElements
.
Note that SettableElementState
is a subset of ElementState
, because some fields returned
from WatchElementState
(e.g. latency
) can only be observed (not set) by the client.
Returns ZX_ERR_INVALID_ARGS
if the processing_element_id
does not match an id returned
by GetElements
or the type of SettableTypeSpecificElementState
does not
match the ElementType
of the processing element returned by
GetElements
for this id.
The driver may return ZX_ERR_INVALID_ARGS
if the state
values are invalid, i.e. any
of the values violates rules specified in this protocol, e.g. trying to change an
EQUALIZER
processing element’s EqualizerBandState
frequency
when this processing
element did not advertise CAN_CONTROL_FREQUENCY
in its supported_controls
.
SetElementState
may be called before or after non-SignalProcessing
protocol
calls. If called after non-SignalProcessing
protocol calls then
SetElementState
may or may not require renegotiation of the driver state as
reached with calls of the protocol composing SignalProcessing
, e.g. Dai
.
For instance, SetElementState
changing an AGL
processing element’s parameters
may not require renegotiation of the Dai
state because changing a gain parameter usually
does not change the set of supported audio formats.
By contrast, if SetElementState
changes the parameters of a CONNECTION_POINT
element, the change may require renegotiation because it may invalidate the set of
supported formats returned in a previous GetDaiFormats
Dai
protocol call.
It is the driver’s job to determine when renegotiation is required. If renegotiation is
required, then SetElementState
must return ZX_ERR_BAD_STATE
and the client must
close the protocol channel such that the protocol negotiations are started over.
The client then must make the SetElementState
call that returned
ZX_ERR_BAD_STATE
before any non-SignalProcessing
protocol calls.
SetTopology
Sets the topology to be used using an id to the vector returned by GetTopologies
.
The current topology is communicated by WatchTopology
responses. To change which topology
is active, a client uses SetTopology
.
If the specified topology_id
is not within thetopologies
returned by GetTopologies
,
this call will return ZX_ERR_INVALID_ARGS
.
If GetTopologies
returns only one Topology
, SetTopology
is optional and has no effect.
SetTopology
may be called before or after non-SignalProcessing
protocol calls.
If called after non-SignalProcessing
protocol calls, then SetTopology
may return
ZX_ERR_BAD_STATE
to indicate that the operation can not proceed without renegotiation of
the driver state. See SetElementState
for further discussion.
_UnknownMethod
An interaction was received which does not match any known method.
Fields
This variant is marked as non-exhaustive
control_handle: SignalProcessingControlHandle
method_type: MethodType
Implementations§
Source§impl SignalProcessingRequest
impl SignalProcessingRequest
pub fn into_get_elements(self) -> Option<SignalProcessingGetElementsResponder>
pub fn into_watch_element_state( self, ) -> Option<(u64, SignalProcessingWatchElementStateResponder)>
pub fn into_get_topologies( self, ) -> Option<SignalProcessingGetTopologiesResponder>
pub fn into_watch_topology( self, ) -> Option<SignalProcessingWatchTopologyResponder>
pub fn into_set_element_state( self, ) -> Option<(u64, SettableElementState, SignalProcessingSetElementStateResponder)>
pub fn into_set_topology( self, ) -> Option<(u64, SignalProcessingSetTopologyResponder)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL