diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-08-29 21:43:08 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-08-29 21:43:08 +0000 |
commit | 14e218c083d72f65d0dcabf39fad4040e28a16d1 (patch) | |
tree | 4e8973a14c4f488dbf0b6b271b0c5fa08295fd85 /gst/rtsp | |
parent | 32621485d5cc5ccff8d2e454a841e4e8c5b7926d (diff) |
gst/rtsp/gstrtspsrc.c: Use new basesink async property to make sparse RTCP packet not wait for preroll.
Original commit message from CVS:
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
(gst_rtspsrc_dup_printf):
Use new basesink async property to make sparse RTCP packet not wait for
preroll.
Diffstat (limited to 'gst/rtsp')
-rw-r--r-- | gst/rtsp/gstrtspsrc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index fd6fa342..689aa203 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -1924,6 +1924,8 @@ gst_rtspsrc_stream_configure_udp_sink (GstRTSPSrc * src, GstRTSPStream * stream, /* no sync needed */ g_object_set (G_OBJECT (stream->udpsink), "sync", FALSE, NULL); + /* no async state changes needed */ + g_object_set (G_OBJECT (stream->udpsink), "async", FALSE, NULL); if (stream->udpsrc[1]) { /* configure socket, we give it the same UDP socket as the udpsrc for RTCP |