summaryrefslogtreecommitdiff
path: root/libavformat/rtmpdh.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-06-01 11:29:01 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-06-01 11:29:05 +0200
commit589d39c768f74d97ff5be9cedbaaac00aa240c6d (patch)
tree1353c9c339692a69538e13c1947d9304ac2ba527 /libavformat/rtmpdh.h
parent8939667b7087c71067a005b8473ded0e47c74259 (diff)
parent63ce9fd23cfa5ac0d9a862be0da138108dc1c505 (diff)
downloadffmpeg-589d39c768f74d97ff5be9cedbaaac00aa240c6d.tar.gz
Merge commit '63ce9fd23cfa5ac0d9a862be0da138108dc1c505'
* commit '63ce9fd23cfa5ac0d9a862be0da138108dc1c505': rtmpdh: Use GMP functions directly, instead of nettle wrappers Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtmpdh.h')
-rw-r--r--libavformat/rtmpdh.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/libavformat/rtmpdh.h b/libavformat/rtmpdh.h
index 14fd222182..95b2620248 100644
--- a/libavformat/rtmpdh.h
+++ b/libavformat/rtmpdh.h
@@ -25,10 +25,9 @@
#include "avformat.h"
#include "config.h"
-#if CONFIG_NETTLE || CONFIG_GCRYPT
-#if CONFIG_NETTLE
+#if CONFIG_GMP || CONFIG_GCRYPT
+#if CONFIG_GMP
#include <gmp.h>
-#include <nettle/bignum.h>
typedef mpz_ptr FFBigNum;
#elif CONFIG_GCRYPT