[FFmpeg-cvslog] rtspdec: Fix keep-alive request for ACTi cameras
Rumin Sam
git at videolan.org
Thu Dec 12 00:48:07 CET 2013
ffmpeg | branch: master | Rumin Sam <ruminsam at corp.bluecherry.net> | Mon Dec 9 17:43:51 2013 -0300| [70e981cf5d75abc9bff076969270b587a0004d3f] | committer: Martin Storsjö
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 at corp.bluecherry.net>
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=70e981cf5d75abc9bff076969270b587a0004d3f
---
libavformat/rtspdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c
index 160d49b..583070a 100644
--- a/libavformat/rtspdec.c
+++ b/libavformat/rtspdec.c
@@ -877,7 +877,7 @@ retry:
rt->get_parameter_supported)) {
ff_rtsp_send_cmd_async(s, "GET_PARAMETER", rt->control_uri, NULL);
} 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
* ff_rtsp_send_cmd_async, but reset it here just in case we never
More information about the ffmpeg-cvslog
mailing list