mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
client: make define for the WATCH_BACKLOG
See https://bugzilla.gnome.org/show_bug.cgi?id=736322
This commit is contained in:
parent
0292be09ea
commit
ebd9be59fe
1 changed files with 5 additions and 3 deletions
|
@ -92,6 +92,10 @@ struct _GstRTSPClientPrivate
|
||||||
static GMutex tunnels_lock;
|
static GMutex tunnels_lock;
|
||||||
static GHashTable *tunnels; /* protected by tunnels_lock */
|
static GHashTable *tunnels; /* protected by tunnels_lock */
|
||||||
|
|
||||||
|
/* FIXME make this configurable. We don't want to do this yet because it will
|
||||||
|
* be superceeded by a cache object later */
|
||||||
|
#define WATCH_BACKLOG_SIZE 100
|
||||||
|
|
||||||
#define DEFAULT_SESSION_POOL NULL
|
#define DEFAULT_SESSION_POOL NULL
|
||||||
#define DEFAULT_MOUNT_POINTS NULL
|
#define DEFAULT_MOUNT_POINTS NULL
|
||||||
#define DEFAULT_DROP_BACKLOG TRUE
|
#define DEFAULT_DROP_BACKLOG TRUE
|
||||||
|
@ -3324,9 +3328,7 @@ gst_rtsp_client_attach (GstRTSPClient * client, GMainContext * context)
|
||||||
gst_rtsp_client_set_send_func (client, do_send_message, priv->watch,
|
gst_rtsp_client_set_send_func (client, do_send_message, priv->watch,
|
||||||
(GDestroyNotify) gst_rtsp_watch_unref);
|
(GDestroyNotify) gst_rtsp_watch_unref);
|
||||||
|
|
||||||
/* FIXME make this configurable. We don't want to do this yet because it will
|
gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
|
||||||
* be superceeded by a cache object later */
|
|
||||||
gst_rtsp_watch_set_send_backlog (priv->watch, 0, 100);
|
|
||||||
|
|
||||||
GST_INFO ("client %p: attaching to context %p", client, context);
|
GST_INFO ("client %p: attaching to context %p", client, context);
|
||||||
res = gst_rtsp_watch_attach (priv->watch, context);
|
res = gst_rtsp_watch_attach (priv->watch, context);
|
||||||
|
|
Loading…
Reference in a new issue