交叉编译编译ffmpeg:ERROR: x265 not found using pkg-config(未解决)

  • 具体错误

    ERROR: x265 not found using pkg-config

    If you think configure made a mistake, make sure you are using the latest
    version from Git. If the latest version fails, report the problem to the
    [email protected] mailing list or IRC #ffmpeg on irc.libera.chat.
    Include the log file "ffbuild/config.log" produced by configure as this will help
    solve the problem.

  • 说明

实际上都已经配置了:

复制代码
export PKG_CONFIG_PATH=${BUILD_DIR}/lib/pkgconfig:${PKG_CONFIG_PATH}

./configure \
    --pkgconfigdir=${PKG_CONFIG_PATH} \
    --extra-cflags="-I${BUILD_DIR}/include" \
    --extra-ldflags="-L${BUILD_DIR}/lib" \

......

x264就没问题,x265就死活找不到。而x265是确实编译输出到相应目录。

可能是需要的链接库不对?或者是接口变了?

相关推荐
aqi001 天前
FFmpeg开发笔记(六十四)使用国产的RedPlayer播放器观看网络视频
android·ffmpeg·音视频·直播·流媒体
道剑剑非道2 天前
QT开发技术【ffmpeg + QAudioOutput】音乐播放器 完善
开发语言·qt·ffmpeg
毒果2 天前
FFmpeg 低延迟同屏方案
ffmpeg·同屏
aqi002 天前
FFmpeg开发笔记(六十三)FFmpeg使用vvenc把视频转为H.266编码
ffmpeg·音视频·直播·流媒体
梧桐樹下3 天前
FFmpeg avformat_open_input函数分析
ffmpeg
道剑剑非道3 天前
QT开发技术【ffmpeg + QAudioOutput】音乐播放器
开发语言·qt·ffmpeg
IOsetting3 天前
Ubuntu24.04 交叉编译 aarch64 ffmpeg
ffmpeg
却道天凉_好个秋3 天前
ffmpeg(三):处理原始数据命令
ffmpeg
@残梦3 天前
129、QT搭建FFmpeg环境
开发语言·qt·ffmpeg
阿飞__4 天前
C++ 使用 ffmpeg 解码本地视频并获取每帧的YUV数据
c++·ffmpeg·音视频