comparison rtsp.c @ 2864:254eb8cf1c27 libavformat

Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 1 Comment
author lu_zero
date Fri, 28 Dec 2007 11:10:17 +0000
parents d3b3cfb538d8
children 51aa1054528c
comparison
equal deleted inserted replaced
2863:94a0369ed3f5 2864:254eb8cf1c27
604 "/", &p); 604 "/", &p);
605 if (*p == '/') 605 if (*p == '/')
606 p++; 606 p++;
607 get_word_sep(profile, sizeof(profile), "/;,", &p); 607 get_word_sep(profile, sizeof(profile), "/;,", &p);
608 lower_transport[0] = '\0'; 608 lower_transport[0] = '\0';
609 if (*p == '/') { 609 if (*p == '/') { /* rtp/avp/<protocol> */
610 p++; 610 p++;
611 get_word_sep(lower_transport, sizeof(lower_transport), 611 get_word_sep(lower_transport, sizeof(lower_transport),
612 ";,", &p); 612 ";,", &p);
613 } 613 }
614 if (!strcasecmp(lower_transport, "TCP")) 614 if (!strcasecmp(lower_transport, "TCP"))