When I build ffmpeg with ndk it does not create .so and .a files for libavresample and libpostproc

柔情痞子 提交于 2020-05-17 08:53:27

问题


When I build ndk with ffmpeg it does not create .so and .a files for libavresample and libpostproc .

I build ffmpeg with this files.

But , it does not create .so and .a files for libavresample and libpostproc .

How can I build .so and .a files for libavresample and libpostproc ?


回答1:


Do you really need libavresample and libpostproc?

I doubt it.

  • libavresample - a deprecated alternative to the native libswresample, an audio resampling library. It is not enabled by default. If you want it then add the --enable-avresample configure option, but I advise against it unless you know for sure you need it.

  • libpostproc - a legacy, almost forgotten library used for video post processing back when video was crappy looking. Required for the unfortunately named pp filter (which I've never seen anyone use). To enable this almost useless library you need to include the --enable-gpl configure option. However, this will change the FFmpeg license from LGPL to GPL, so be aware of the implications of this if you intend on distributing anything from FFmpeg.



来源:https://stackoverflow.com/questions/61004867/when-i-build-ffmpeg-with-ndk-it-does-not-create-so-and-a-files-for-libavresamp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!