Martin Storsjö <[email protected]> writes: > 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.
That's OK. Both the tools and the libraries need some system-dependent things, and keeping two copies of them would just be silly. > --- > 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" > > -- OK -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
