mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
parent
4689acd68f
commit
2f4c65bb06
1 changed files with 5 additions and 5 deletions
|
@ -343,12 +343,12 @@ sdp_check_header (GstTypeFind * tf)
|
||||||
if (memcmp (data, "v=0", 3))
|
if (memcmp (data, "v=0", 3))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
if (data[3] == '\r' && data[4] != '\n')
|
if (data[3] == '\r' && data[4] == '\n')
|
||||||
return FALSE;
|
return TRUE;
|
||||||
if (data[3] != '\n')
|
if (data[3] == '\n')
|
||||||
return FALSE;
|
return TRUE;
|
||||||
|
|
||||||
return TRUE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue