diff options
author | James Almer <jamrial@gmail.com> | 2013-06-15 14:04:19 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2013-06-15 18:54:01 -0300 |
commit | 99b8cd0c81c4509571bcdc0dc55d506c8200dc61 (patch) | |
tree | ce47f7dc8782111777dabe14fc91604983bb2e52 /libavutil/Makefile | |
parent | 1bb005ce54d113e266f3c78354eb2bca65d5fa35 (diff) | |
download | ffmpeg-99b8cd0c81c4509571bcdc0dc55d506c8200dc61.tar.gz |
lavu: Add RIPEMD hashing
Includes RIPEMD-128, RIPEMD-160, RIPEMD-256 and RIPEMD-320
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index f1ff9c6c6d..21746f0713 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -43,6 +43,7 @@ HEADERS = adler32.h \ pixfmt.h \ random_seed.h \ rational.h \ + ripemd.h \ samplefmt.h \ sha.h \ sha512.h \ @@ -102,6 +103,7 @@ OBJS = adler32.o \ random_seed.o \ rational.o \ rc4.o \ + ripemd.o \ samplefmt.o \ sha.o \ sha512.o \ @@ -148,6 +150,7 @@ TESTPROGS = adler32 \ parseutils \ random_seed \ rational \ + ripemd \ sha \ sha512 \ tree \ |