summaryrefslogtreecommitdiffstats
path: root/ext/pulse/pulsesrc.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-10-16 17:28:42 +0200
committerLennart Poettering <lennart@poettering.net>2009-10-17 00:12:51 +0200
commit98d27997ef22c29fabbebeb36472ef446f61b499 (patch)
tree17dfd2cf6ee011652be74721019aec8892349310 /ext/pulse/pulsesrc.h
parent18db08720487c6a2300080d2a56bb774ea27e040 (diff)
pulse: make a few things smaller by making them bitfields
Diffstat (limited to 'ext/pulse/pulsesrc.h')
-rw-r--r--ext/pulse/pulsesrc.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/ext/pulse/pulsesrc.h b/ext/pulse/pulsesrc.h
index 2358eba1..be894347 100644
--- a/ext/pulse/pulsesrc.h
+++ b/ext/pulse/pulsesrc.h
@@ -1,3 +1,5 @@
+/*-*- Mode: C; c-basic-offset: 2 -*-*/
+
/*
* GStreamer pulseaudio plugin
*
@@ -70,10 +72,10 @@ struct _GstPulseSrc
GstPulseMixerCtrl *mixer;
GstPulseProbe *probe;
- gboolean corked;
- gboolean operation_success;
- gboolean paused;
- gboolean in_read;
+ gboolean corked:1;
+ gboolean operation_success:1;
+ gboolean paused:1;
+ gboolean in_read:1;
};
struct _GstPulseSrcClass