diff options
author | Martin Storsjö <martin@martin.st> | 2012-10-20 23:18:01 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-01-15 11:54:40 +0200 |
commit | 424da308302bef604844d3110a39f2f03bf5358e (patch) | |
tree | 701e11c88de13eaf50c51242886ace686de18342 /libavformat/Makefile | |
parent | ab2ad8bd56882c0ea160b154e8b836eb71abc49d (diff) | |
download | ffmpeg-424da308302bef604844d3110a39f2f03bf5358e.tar.gz |
rtsp: Support decryption of SRTP signalled via RFC 4568 (SDES)
This only takes care of decrypting incoming packets; the outgoing
RTCP packets are not encrypted. This is enough for some use cases,
and signalling crypto keys for use with outgoing RTCP packets
doesn't fit as simply into the API. If the SDP demuxer is hooked
up with custom IO, the return packets can be encrypted e.g. via the
SRTP protocol.
If the SRTP keys aren't available within the SDP, the decryption
can be handled externally as well (when using custom IO).
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 2d663300fd..7c0b926407 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -40,7 +40,8 @@ OBJS-$(CONFIG_RTPDEC) += rdt.o \ rtpdec_qt.o \ rtpdec_svq3.o \ rtpdec_vp8.o \ - rtpdec_xiph.o + rtpdec_xiph.o \ + srtp.o OBJS-$(CONFIG_RTPENC_CHAIN) += rtpenc_chain.o rtp.o # muxers/demuxers |