Lines Matching defs:reply
527 RTSPMessageHeader reply1, *reply = &reply1;
570 ff_rtsp_send_cmd(s, "PLAY", rt->control_uri, cmd, reply, NULL);
571 if (reply->status_code != RTSP_STATUS_OK) {
572 return ff_rtsp_averror(reply->status_code, -1);
575 reply->range_start != AV_NOPTS_VALUE) {
585 av_rescale_q(reply->range_start, AV_TIME_BASE_Q,
598 RTSPMessageHeader reply1, *reply = &reply1;
603 ff_rtsp_send_cmd(s, "PAUSE", rt->control_uri, NULL, reply, NULL);
604 if (reply->status_code != RTSP_STATUS_OK) {
605 return ff_rtsp_averror(reply->status_code, -1);
612 int ff_rtsp_setup_input_streams(AVFormatContext *s, RTSPMessageHeader *reply)
631 ff_rtsp_send_cmd(s, "DESCRIBE", rt->control_uri, cmd, reply, &content);
632 if (reply->status_code != RTSP_STATUS_OK) {
634 return ff_rtsp_averror(reply->status_code, AVERROR_INVALIDDATA);
793 RTSPMessageHeader reply;
795 ret = ff_rtsp_read_reply(s, &reply, NULL, 1, NULL);
850 RTSPMessageHeader reply1, *reply = &reply1;
867 cmd, reply, NULL);
868 if (reply->status_code != RTSP_STATUS_OK)
869 return ff_rtsp_averror(reply->status_code, AVERROR_INVALIDDATA);
902 cmd, reply, NULL);
903 if (reply->status_code != RTSP_STATUS_OK)
904 return ff_rtsp_averror(reply->status_code, AVERROR_INVALIDDATA);
917 RTSPMessageHeader reply1, *reply = &reply1;
925 reply, NULL);