diff options
author | erankor <eran.kornblau@kaltura.com> | 2015-12-07 11:58:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-12-15 14:16:28 +0100 |
commit | 23ac99dc17b0c4ff43bb56c1f8cbe7feb34bada5 (patch) | |
tree | 6d644b6a721cc291e06bd21d9cdbfb39dbe8813b /libavutil/Makefile | |
parent | c54632d3811d0515a5407f081056ae08e9a1c54c (diff) | |
download | ffmpeg-23ac99dc17b0c4ff43bb56c1f8cbe7feb34bada5.tar.gz |
libavutil: add aes-ctr support
for supporting mp4 cenc encoding/decoding
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index b43cede0c2..bf8c713e9f 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -4,6 +4,7 @@ NAME = avutil HEADERS = adler32.h \ aes.h \ + aes_ctr.h \ attributes.h \ audio_fifo.h \ avassert.h \ @@ -80,6 +81,7 @@ BUILT_HEADERS = avconfig.h \ OBJS = adler32.o \ aes.o \ + aes_ctr.o \ audio_fifo.o \ avstring.o \ base64.o \ |