diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-07-10 00:22:13 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-07-10 00:22:13 +0000 |
commit | 337afd1420edc8a952c9b21317600efff011eb4c (patch) | |
tree | 38202ec7f1c5aec2e18af752f31724ab1087ac1b | |
parent | 32fe3ac0f9003181435c6881f8cebd0551b975b1 (diff) | |
download | ffmpeg-337afd1420edc8a952c9b21317600efff011eb4c.tar.gz |
patch from http://www.freebsd.org/cgi/cvsweb.cgi/ports/multimedia/ffmpeg-devel/files/patch-libavcodec::x264.c
(math.h needed for log2() at least)
Originally committed as revision 4426 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/x264.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/x264.c b/libavcodec/x264.c index 0e850f5739..df5df9810a 100644 --- a/libavcodec/x264.c +++ b/libavcodec/x264.c @@ -19,6 +19,7 @@ #include "avcodec.h" #include <x264.h> +#include <math.h> typedef struct X264Context { x264_param_t params; |