Lines Matching defs:sdp
178 char *sdp;
185 if (strcmp(request.content_type, "application/sdp")) {
192 sdp = av_malloc(request.content_length + 1);
193 if (!sdp)
197 if (ffurl_read_complete(rt->rtsp_hd, sdp, request.content_length)
202 av_free(sdp);
205 sdp[request.content_length] = '\0';
206 av_log(s, AV_LOG_VERBOSE, "SDP: %s\n", sdp);
207 ret = ff_sdp_parse(s, sdp);
208 av_free(sdp);
215 "Content-Length header value exceeds sdp allocated buffer (4KB)\n");
621 "Accept: application/sdp\r\n");