Commit 7ee198c4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Partial support for COMEDIA in SAP announcer

parent 7da44adb
...@@ -624,11 +624,18 @@ static char *SDPGenerate( sap_handler_t *p_sap, ...@@ -624,11 +624,18 @@ static char *SDPGenerate( sap_handler_t *p_sap,
#endif #endif
sfilter = NULL; sfilter = NULL;
int res = asprintf (&psz_sdp, "%s" "%s" "%s" const char *comedia = NULL;
if (!strncasecmp (p_session->sdpformat, "DCCP", 4)
|| !strncasecmp (p_session->sdpformat, "TCP", 3))
comedia = "a=setup:passive\r\n"
"a=connection:new\r\n";
int res = asprintf (&psz_sdp, "%s" "%s" "%s" "%s"
"m=video %d %s\r\n", "m=video %d %s\r\n",
head, head,
plgroup ?: "", plgroup ?: "",
sfilter ?: "", sfilter ?: "",
comedia ?: "",
net_GetPort ((const struct sockaddr *)&p_session->addr), net_GetPort ((const struct sockaddr *)&p_session->addr),
p_session->sdpformat); p_session->sdpformat);
free (plgroup); free (plgroup);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment