You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
rtspdec: Fix keep-alive request for ACTi cameras
Some ACTi cameras fail if "*" is passed as the URI. Signed-off-by: Ismael Luceno <ismael.luceno@corp.bluecherry.net> Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
committed by
Martin Storsjö
parent
d7b3ee9a3a
commit
70e981cf5d
@@ -877,7 +877,7 @@ retry:
|
|||||||
rt->get_parameter_supported)) {
|
rt->get_parameter_supported)) {
|
||||||
ff_rtsp_send_cmd_async(s, "GET_PARAMETER", rt->control_uri, NULL);
|
ff_rtsp_send_cmd_async(s, "GET_PARAMETER", rt->control_uri, NULL);
|
||||||
} else {
|
} else {
|
||||||
ff_rtsp_send_cmd_async(s, "OPTIONS", "*", NULL);
|
ff_rtsp_send_cmd_async(s, "OPTIONS", rt->control_uri, NULL);
|
||||||
}
|
}
|
||||||
/* The stale flag should be reset when creating the auth response in
|
/* The stale flag should be reset when creating the auth response in
|
||||||
* ff_rtsp_send_cmd_async, but reset it here just in case we never
|
* ff_rtsp_send_cmd_async, but reset it here just in case we never
|
||||||
|
|||||||
Reference in New Issue
Block a user