mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
rtspconnection: Add missing include
https://bugzilla.gnome.org/show_bug.cgi?id=725206
This commit is contained in:
parent
5c1167a2c7
commit
5445682c6a
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue