mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
module-raop: fix stray !
This commit is contained in:
parent
8680c74d1b
commit
74ec5e5cb8
1 changed files with 1 additions and 2 deletions
|
|
@ -1723,7 +1723,7 @@ static void stream_props_changed(struct impl *impl, uint32_t id, const struct sp
|
|||
{
|
||||
bool mute;
|
||||
if (spa_pod_get_bool(&prop->value, &mute) == 0) {
|
||||
if (!impl->mute != mute) {
|
||||
if (impl->mute != mute) {
|
||||
impl->mute = mute;
|
||||
rtsp_send_volume(impl);
|
||||
}
|
||||
|
|
@ -1752,7 +1752,6 @@ static void stream_props_changed(struct impl *impl, uint32_t id, const struct sp
|
|||
|
||||
rtsp_send_volume(impl);
|
||||
}
|
||||
|
||||
spa_pod_builder_prop(&b, SPA_PROP_softVolumes, 0);
|
||||
spa_pod_builder_array(&b, sizeof(float), SPA_TYPE_Float,
|
||||
n_vols, soft_vols);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue