diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-03-18 15:52:30 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-03-23 09:35:41 +0100 |
commit | 65a802401c6cc136576bb2e613c0577cbf622aa8 (patch) | |
tree | 1c25214ce5e22fd5bbdc1f70ac53201edcd0a0fa /libavformat/Makefile | |
parent | 30e9ef21cea09fa5e880e979c9f5b39edccbb6f4 (diff) | |
download | ffmpeg-65a802401c6cc136576bb2e613c0577cbf622aa8.tar.gz |
build: Add component for the SRTP common code
This allows expressing the SRTP test code dependencies more clearly.
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index e814f792b6..c405354711 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -54,9 +54,9 @@ OBJS-$(CONFIG_RTPDEC) += rdt.o \ rtpdec_svq3.o \ rtpdec_vp8.o \ rtpdec_vp9.o \ - rtpdec_xiph.o \ - srtp.o + rtpdec_xiph.o OBJS-$(CONFIG_RTPENC_CHAIN) += rtpenc_chain.o rtp.o +OBJS-$(CONFIG_SRTP) += srtp.o # muxers/demuxers OBJS-$(CONFIG_A64_MUXER) += a64.o rawenc.o @@ -416,12 +416,12 @@ SKIPHEADERS-$(CONFIG_FFRTMPCRYPT_PROTOCOL) += rtmpdh.h SKIPHEADERS-$(CONFIG_NETWORK) += network.h rtsp.h TESTPROGS = seek \ - srtp \ url \ TESTPROGS-$(CONFIG_MOV_MUXER) += movenc TESTPROGS-$(CONFIG_NETWORK) += noproxy TESTPROGS-$(CONFIG_FFRTMPCRYPT_PROTOCOL) += rtmpdh +TESTPROGS-$(CONFIG_SRTP) += srtp TOOLS = aviocat \ ismindex \ |