summaryrefslogtreecommitdiff
path: root/gtk/spice-audio.c
diff options
context:
space:
mode:
authorFabiano FidĂȘncio <fidencio@redhat.com>2015-01-06 01:46:50 +0100
committerFabiano FidĂȘncio <fidencio@redhat.com>2015-01-06 15:27:09 +0100
commite48fda77d713738c616e4cd3acb4fdb5f874f6fb (patch)
tree1d67c3ff0d26cfd7357bcf7788c9615cc8525acc /gtk/spice-audio.c
parent5b252b0f499601bcf387c02a4dd35d27ed34c07c (diff)
audio: drop gst-0.10 in favour of gst-1.0
As gstreamer-1,0 support was introduced by commit d4d60c97 and it works pretty much as gstreamer-0,10 used to work (tests were made both on Linux and Windows clients), let's drop the old gstreamer-0.10 support in favour of gstreamer-1.0.
Diffstat (limited to 'gtk/spice-audio.c')
-rw-r--r--gtk/spice-audio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/spice-audio.c b/gtk/spice-audio.c
index 7754736..329ab6a 100644
--- a/gtk/spice-audio.c
+++ b/gtk/spice-audio.c
@@ -45,7 +45,7 @@
#ifdef WITH_PULSE
#include "spice-pulse.h"
#endif
-#if defined(WITH_GSTAUDIO) || defined(WITH_GST1AUDIO)
+#if defined(WITH_GSTAUDIO)
#include "spice-gstaudio.h"
#endif
@@ -218,7 +218,7 @@ SpiceAudio *spice_audio_new(SpiceSession *session, GMainContext *context,
#ifdef WITH_PULSE
self = SPICE_AUDIO(spice_pulse_new(session, context, name));
#endif
-#if defined(WITH_GSTAUDIO) || defined(WITH_GST1AUDIO)
+#if defined(WITH_GSTAUDIO)
self = SPICE_AUDIO(spice_gstaudio_new(session, context, name));
#endif
if (!self)