summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <will@willthompson.co.uk>2013-10-09 16:16:41 +0100
committerWill Thompson <will@willthompson.co.uk>2013-10-13 21:20:39 +0100
commitd922659a8312ba718f6a70ad7b78e2d92d14a370 (patch)
treeb02481a9f36a63000d5775fbecdf169c6258843d
parentcca703b0e1399008b53a1a236d6b4584737649e4 (diff)
audio-sink: fix compilation with GStreamer 0.10
66e393b removed this include, but without it compilation fails for me. I assume this is beacuse I am building Empathy against GStreamer 0.10 and Emanuele was building against GStreamer 1.0 when removing unneeded includes. https://bugzilla.gnome.org/show_bug.cgi?id=709741
-rw-r--r--src/empathy-audio-sink.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/empathy-audio-sink.c b/src/empathy-audio-sink.c
index 0c3693b6..f71aa629 100644
--- a/src/empathy-audio-sink.c
+++ b/src/empathy-audio-sink.c
@@ -23,6 +23,7 @@
#ifdef HAVE_GST1
#include <gst/audio/streamvolume.h>
#else
+#include <gst/audio/audio.h>
#include <gst/interfaces/streamvolume.h>
#endif