diff options
author | Jun Li <junli1026@gmail.com> | 2019-03-21 16:58:41 -0700 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2019-03-25 01:17:23 +0100 |
commit | c3b517dac2bbd3007c5ac8fc61efe87661dda5c0 (patch) | |
tree | 6ba85b4066e57a9cd01e3024be4410bdf7a88339 /libavformat/rtsp.h | |
parent | 699d0c2a30d5b2a10b6a0f459a35d665dc22b2f1 (diff) | |
download | ffmpeg-c3b517dac2bbd3007c5ac8fc61efe87661dda5c0.tar.gz |
avformat/rtsp: Add https tunneling support
Add https based tunneling for RTSP/RTP. Tested on Axis and Bosch cameras.
Https is widely used for security consideration.
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 9a7f366b39..b49278fc20 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -42,6 +42,7 @@ enum RTSPLowerTransport { RTSP_LOWER_TRANSPORT_HTTP = 8, /**< HTTP tunneled - not a proper transport mode as such, only for use via AVOptions */ + RTSP_LOWER_TRANSPORT_HTTPS, /**< HTTPS tunneled */ RTSP_LOWER_TRANSPORT_CUSTOM = 16, /**< Custom IO - not a public option for lower_transport_mask, but set in the SDP demuxer based |