rtspconnection: Add missing include

https://bugzilla.gnome.org/show_bug.cgi?id=725206
This commit is contained in:
Ognyan Tonchev 2014-02-26 11:45:24 +01:00 committed by Tim-Philipp Müller
parent 5c1167a2c7
commit 5445682c6a

View file

@ -65,6 +65,9 @@
#include <glib.h>
#include <gst/gst.h>
/* necessary for IP_TOS define */
#include <gio/gnetworking.h>
#include "gstrtspconnection.h"
#ifdef IP_TOS
@ -2607,6 +2610,7 @@ static GstRTSPResult
set_qos_dscp (GSocket * socket, guint qos_dscp)
{
#ifndef IP_TOS
GST_FIXME ("IP_TOS socket option is not defined, not setting dscp");
return GST_RTSP_OK;
#else
gint fd;