aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Thompson <will@willthompson.co.uk>2013-10-09 23:16:41 +0800
committerWill Thompson <will@willthompson.co.uk>2013-10-14 04:20:49 +0800
commitdea9f68e37b897f61eba440128fbc6dfb0b97f7e (patch)
tree65a8c42f3aba72c2fa42d1e52fb3986418dae61d
parent7f98a88b11f2e8896dc0f2d2e412e62075a6590c (diff)
downloadgsoc2013-empathy-dea9f68e37b897f61eba440128fbc6dfb0b97f7e.tar
gsoc2013-empathy-dea9f68e37b897f61eba440128fbc6dfb0b97f7e.tar.gz
gsoc2013-empathy-dea9f68e37b897f61eba440128fbc6dfb0b97f7e.tar.bz2
gsoc2013-empathy-dea9f68e37b897f61eba440128fbc6dfb0b97f7e.tar.lz
gsoc2013-empathy-dea9f68e37b897f61eba440128fbc6dfb0b97f7e.tar.xz
gsoc2013-empathy-dea9f68e37b897f61eba440128fbc6dfb0b97f7e.tar.zst
gsoc2013-empathy-dea9f68e37b897f61eba440128fbc6dfb0b97f7e.zip
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 985a1fa36..e0e43e440 100644
--- a/src/empathy-audio-sink.c
+++ b/src/empathy-audio-sink.c
@@ -24,6 +24,7 @@
#ifdef HAVE_GST1
#include <gst/audio/streamvolume.h>
#else
+#include <gst/audio/audio.h>
#include <gst/interfaces/streamvolume.h>
#endif