我正在尝试在 Win10 上使用 x265 编译 FFMPEG。我正在使用来自 xhmikosr 的最新完整 MinGW 构建,位于:
http://xhmikosr.1f0.de/tools/msys/
没有 x265 的 FFMEPG 编译没有问题,编译 x265 独立也没有问题。但是,当我在 ffmpeg 中使用 --enable-libx265 时,出现以下错误:
ERROR: x265 not found using pkg-config
这来自config.log:
require_pkg_config libx265 x265 x265.h x265_api_get
check_pkg_config libx265 x265 x265.h x265_api_get
test_pkg_config libx265 x265 x265.h x265_api_get
false --exists --print-errors x265
ERROR: x265 not found using pkg-config
我的配置路径似乎都设置正确。
$ echo $PKG_CONFIG_PATH
C:\MYSYS\local\x86_64-w64-mingw32\lib\pkgconfig
当我寻找库 x265 时:
$ pkg-config --list-all
...
x265 x265 - H.265/HEVC video encoder
...
这里是调试日志:
$ pkg-config --debug
...
File 'x265.pc' appears to be a .pc file
Will find package 'x265' in file 'C:/MYSYS/local/x86_64-w64-mingw32/lib/pkgconfig\x265.pc'
...
为什么我尝试编译时 pkg-config 仍然找不到 x265 库?