diff options
author | Will Thompson <will@willthompson.co.uk> | 2013-10-09 16:16:41 +0100 |
---|---|---|
committer | Will Thompson <will@willthompson.co.uk> | 2013-10-13 21:20:49 +0100 |
commit | dea9f68e37b897f61eba440128fbc6dfb0b97f7e (patch) | |
tree | 65a8c42f3aba72c2fa42d1e52fb3986418dae61d | |
parent | 7f98a88b11f2e8896dc0f2d2e412e62075a6590c (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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/empathy-audio-sink.c b/src/empathy-audio-sink.c index 985a1fa3..e0e43e44 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 |