mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
rtspsrc: fix dummy nat packet logic
Fix a typo in the dummy NAT packet sending code. Fixes #581329
This commit is contained in:
parent
959a9b494b
commit
752cfb16fe
1 changed files with 1 additions and 1 deletions
|
@ -2465,7 +2465,7 @@ gst_rtspsrc_send_dummy_packets (GstRTSPSrc * src)
|
|||
{
|
||||
GList *walk;
|
||||
|
||||
if (!src->nat_method != GST_RTSP_NAT_DUMMY)
|
||||
if (src->nat_method != GST_RTSP_NAT_DUMMY)
|
||||
return TRUE;
|
||||
|
||||
for (walk = src->streams; walk; walk = g_list_next (walk)) {
|
||||
|
|
Loading…
Reference in a new issue