diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2013-05-09 14:34:46 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2013-05-13 21:42:37 +0200 |
commit | 86215c326e56e50047e6a818327bc7589995975d (patch) | |
tree | 602970b28b12848959a4d0516f7ff17ca12ea5a2 /libavutil/Makefile | |
parent | 47a628bfb3067ea1bec8c5bd3be3f3ef5fa3db44 (diff) | |
download | ffmpeg-86215c326e56e50047e6a818327bc7589995975d.tar.gz |
Add 128 bit murmur3 hash function.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
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 30f733fd60..e6feccc5fe 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -34,6 +34,7 @@ HEADERS = adler32.h \ mathematics.h \ md5.h \ mem.h \ + murmur3.h \ dict.h \ old_pix_fmts.h \ opt.h \ @@ -91,6 +92,7 @@ OBJS = adler32.o \ mathematics.o \ md5.o \ mem.o \ + murmur3.o \ dict.o \ opt.o \ parseutils.o \ @@ -137,6 +139,7 @@ TESTPROGS = adler32 \ lfg \ lls \ md5 \ + murmur3 \ opt \ pca \ parseutils \ |