diff options
author | Jacob Trimble <modmaker@google.com> | 2017-12-05 14:52:22 -0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-03-24 03:11:08 +0100 |
commit | db2a7c947ec28b0a04a4e5193c9b0d33de823fbb (patch) | |
tree | 1f73390b18a56c7d662e430fd1955f9516116d58 /libavutil/Makefile | |
parent | 829aebf95d44c1e850fd31692a273e6c6ab8161a (diff) | |
download | ffmpeg-db2a7c947ec28b0a04a4e5193c9b0d33de823fbb.tar.gz |
avcodec/avcodec.h: Add encryption info side data.
This new side-data will contain info on how a packet is encrypted.
This allows the app to handle packet decryption.
Signed-off-by: Jacob Trimble <modmaker@google.com>
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 17ec1f1aa9..a63ba523c9 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -24,6 +24,7 @@ HEADERS = adler32.h \ dict.h \ display.h \ downmix_info.h \ + encryption_info.h \ error.h \ eval.h \ fifo.h \ @@ -107,6 +108,7 @@ OBJS = adler32.o \ dict.o \ display.o \ downmix_info.o \ + encryption_info.o \ error.o \ eval.o \ fifo.o \ |