mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
*: Avoid macros that use casts where possible
Use direct field access when the type is known, instead of a macro that
includes a cast.
These were missed in e4fcbef89a.
This commit is contained in:
parent
5cf84fa3fe
commit
b3bf5be1f6
11 changed files with 19 additions and 20 deletions
|
|
@ -524,8 +524,8 @@ uint32_t collect_transport_codec_info(struct pw_manager_object *card,
|
|||
if (iid != SPA_PROP_bluetoothAudioCodec)
|
||||
continue;
|
||||
|
||||
if (SPA_POD_CHOICE_TYPE(type) != SPA_CHOICE_Enum ||
|
||||
SPA_POD_TYPE(SPA_POD_CHOICE_CHILD(type)) != SPA_TYPE_Int)
|
||||
if (type->body.type != SPA_CHOICE_Enum ||
|
||||
type->body.child.type != SPA_TYPE_Int)
|
||||
continue;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue