diff options
author | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2015-10-14 00:31:02 +0200 |
---|---|---|
committer | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2015-10-21 00:23:10 +0200 |
commit | 95687dc310ba91091c670273ceb31ae5219187bb (patch) | |
tree | c5181dc4333ec865ae89dc0ee125a3d744e6df1c | |
parent | bc22cd244e4c04fb304cfc4fcccb650abbd29ef2 (diff) | |
download | ffmpeg-95687dc310ba91091c670273ceb31ae5219187bb.tar.gz |
avutil: install des.h, rc4.h and tree.h as public headers
These headers contain functions supposed to be public.
libavutil/des.h:
av_des_alloc
av_des_crypt
av_des_init
av_des_mac
libavutil/rc4.h:
av_rc4_alloc
av_rc4_crypt
av_rc4_init
libavutil/tree.h
av_tree_destroy
av_tree_enumerate
av_tree_find
av_tree_insert
av_tree_node_alloc
av_tree_node_size
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-rw-r--r-- | libavutil/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 74397501a2..1bac2b978e 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -20,6 +20,7 @@ HEADERS = adler32.h \ common.h \ cpu.h \ crc.h \ + des.h \ display.h \ downmix_info.h \ error.h \ @@ -47,6 +48,7 @@ HEADERS = adler32.h \ pixelutils.h \ pixfmt.h \ random_seed.h \ + rc4.h \ replaygain.h \ rational.h \ ripemd.h \ @@ -58,6 +60,7 @@ HEADERS = adler32.h \ time.h \ timecode.h \ timestamp.h \ + tree.h \ twofish.h \ version.h \ xtea.h \ |