diff --git a/subprojects/gst-plugins-good/ext/pulse/pulsesink.c b/subprojects/gst-plugins-good/ext/pulse/pulsesink.c index 33fbfc066f..348150dd87 100644 --- a/subprojects/gst-plugins-good/ext/pulse/pulsesink.c +++ b/subprojects/gst-plugins-good/ext/pulse/pulsesink.c @@ -178,9 +178,9 @@ struct _GstPulseRingBuffer gint64 m_offset; gint64 m_lastoffset; - gboolean corked:1; - gboolean in_commit:1; - gboolean paused:1; + gboolean corked; + gboolean in_commit; + gboolean paused; }; struct _GstPulseRingBufferClass { diff --git a/subprojects/gst-plugins-good/ext/pulse/pulsesink.h b/subprojects/gst-plugins-good/ext/pulse/pulsesink.h index 51ec86a25a..7f45cb2505 100644 --- a/subprojects/gst-plugins-good/ext/pulse/pulsesink.h +++ b/subprojects/gst-plugins-good/ext/pulse/pulsesink.h @@ -57,9 +57,9 @@ struct _GstPulseSink GstPulseDeviceInfo device_info; gdouble volume; - gboolean volume_set:1; - gboolean mute:1; - gboolean mute_set:1; + gboolean volume_set; + gboolean mute; + gboolean mute_set; guint32 current_sink_idx; gchar *current_sink_name; diff --git a/subprojects/gst-plugins-good/ext/pulse/pulsesrc.h b/subprojects/gst-plugins-good/ext/pulse/pulsesrc.h index c532afb189..a39a043910 100644 --- a/subprojects/gst-plugins-good/ext/pulse/pulsesrc.h +++ b/subprojects/gst-plugins-good/ext/pulse/pulsesrc.h @@ -56,19 +56,19 @@ struct _GstPulseSrc gchar *device_description; gdouble volume; - gboolean volume_set:1; - gboolean mute:1; - gboolean mute_set:1; + gboolean volume_set; + gboolean mute; + gboolean mute_set; guint32 current_source_idx; gchar *current_source_name; gint notify; /* atomic */ - gboolean corked:1; - gboolean stream_connected:1; - gboolean operation_success:1; - gboolean paused:1; - gboolean in_read:1; + gboolean corked; + gboolean stream_connected; + gboolean operation_success; + gboolean paused; + gboolean in_read; GstStructure *properties; pa_proplist *proplist;