gstreamer/subprojects/gst-plugins-good/ext/pulse
Sebastian Dröge bb2c5981fe pulse: Change bitfield booleans to normal gbooleans
Assigning TRUE (1) to a signed 1 bit integer will cause truncation
from 1 to -1 because the only non-zero value that can be stored is -1
due to how two's-complement works.

As this is a proper GObject let's not bother with all this and simply
use a normal gboolean instead.

../subprojects/gst-plugins-good/ext/pulse/pulsesink.c:1490:19: warning: implicit truncation from 'int' to a one-bit
        wide bit-field changes value from 1 to -1 [-Wsingle-bit-bitfield-constant-conversion]
  pbuf->in_commit = TRUE;
                  ^ ~~~~

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4617>
2023-05-14 15:58:35 +00:00
..
gstpulseelement.c
gstpulseelements.h
meson.build
plugin.c
pulsedeviceprovider.c
pulsedeviceprovider.h
pulsesink.c pulse: Change bitfield booleans to normal gbooleans 2023-05-14 15:58:35 +00:00
pulsesink.h pulse: Change bitfield booleans to normal gbooleans 2023-05-14 15:58:35 +00:00
pulsesrc.c gst-plugins-good: re-indent with GNU indent 2.2.12 2023-03-17 03:18:54 +00:00
pulsesrc.h pulse: Change bitfield booleans to normal gbooleans 2023-05-14 15:58:35 +00:00
pulseutil.c gst-plugins-good: re-indent with GNU indent 2.2.12 2023-03-17 03:18:54 +00:00
pulseutil.h