gstreamer/ext/pulse
Sebastian Dröge dfa627da30 pulsemixer: Don't use g_atomic_int_(get|set) for accessing the mixer track flags
g_atomic_int_(get|set) only work on ints and the flags are
an enum (which on most architectures is stored as an int).

Also the way the flags were accessed atomically would still
leave a possible race condition and we don't do it in any
other mixer track implementation, let alone at any other
place where an integer could be changed from different
threads. Removing the g_atomic_int_(get|set) will only
introduce a new race condition on architectures where
integers could be half-written while reading them
which shouldn't be the case for any modern architecture
and if we really care about this we need to use
g_atomic_int_(get|set) at many other places too.

Apart from that g_atomic_int_(set|get) will result in
aliasing warnings if their argument is explicitely
casted to an int *. Fixes bug #571153.
2009-02-22 18:08:59 +01:00
..
Makefile.am Don't install static libs for plugins. Fixes #550851 for -good. 2008-11-04 12:28:34 +00:00
plugin.c Add documentation to the pulseaudio plugin and run make update in docs/plugins. 2008-06-10 08:22:17 +00:00
pulsemixer.c Update and add documentation for plugins with deps (ext). 2009-01-28 18:05:09 +02:00
pulsemixer.h Add pulseaudio GStreamer element from gst-pulse. Development will continue here instead of pulseaudio SVN. Fixes bug ... 2008-06-10 06:45:33 +00:00
pulsemixerctrl.c pulsemixer: Don't use g_atomic_int_(get|set) for accessing the mixer track flags 2009-02-22 18:08:59 +01:00
pulsemixerctrl.h ext/pulse/: Improve debugging a bit by including the parent object in pulsemixerctrl and pulseprobe objects and using... 2008-08-13 12:34:13 +00:00
pulsemixertrack.c ext/pulse/: Use GST_BOILERPLATE everywhere and fix coding style at some places. 2008-08-20 17:46:48 +00:00
pulsemixertrack.h Add pulseaudio GStreamer element from gst-pulse. Development will continue here instead of pulseaudio SVN. Fixes bug ... 2008-06-10 06:45:33 +00:00
pulseprobe.c Rewrite the pulse plugin, conditionally enabling new behaviour with 2009-01-28 20:34:40 +00:00
pulseprobe.h Rewrite the pulse plugin, conditionally enabling new behaviour with 2009-01-28 20:34:40 +00:00
pulsesink.c pulsesink: Issue property change notification in streaming thread, 2009-02-13 18:04:41 +01:00
pulsesink.h pulsesink: Issue property change notification in streaming thread, 2009-02-13 18:04:41 +01:00
pulsesrc.c Rewrite the pulse plugin, conditionally enabling new behaviour with 2009-01-28 20:34:40 +00:00
pulsesrc.h Rewrite the pulse plugin, conditionally enabling new behaviour with 2009-01-28 20:34:40 +00:00
pulseutil.c Rewrite the pulse plugin, conditionally enabling new behaviour with 2009-01-28 20:34:40 +00:00
pulseutil.h Rewrite the pulse plugin, conditionally enabling new behaviour with 2009-01-28 20:34:40 +00:00