libm.h isn't an installed header though, so this makes the tools use internal headers. (avconv.c already includes libm.h.) It doesn't make it use internal symbols though, since the log2 fallback is just a define. --- avprobe.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/avprobe.c b/avprobe.c index 8107e54..4e68313 100644 --- a/avprobe.c +++ b/avprobe.c @@ -26,6 +26,7 @@ #include "libavutil/opt.h" #include "libavutil/pixdesc.h" #include "libavutil/dict.h" +#include "libavutil/libm.h" #include "libavdevice/avdevice.h" #include "cmdutils.h" -- 1.7.9.4 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
