FS-5714 --resolve That is probably the right place

This commit is contained in:
Anthony Minessale 2013-09-05 20:39:58 +05:00
parent ac875b7810
commit b9c3dc071a
1 changed files with 4 additions and 2 deletions

View File

@ -618,8 +618,10 @@ static void print_media(sdp_printer_t *p,
sdp_printf(p, " %s", l->l_text);
}
else {
sdp_printf(p, " 19"); /* SDP syntax requires at least one format.
19 is used by nobody, right?. */
/* SDP syntax requires at least one format. */
/* defaults to "19", or "t38" for image */
if (m->m_image == sdp_media_image) sdp_printf(p, " t38");
else sdp_printf(p, " 19");
}