ubuntu 18.04 内置的ffmpeg 是 3.4.8 版本,因此为了防止依赖包不兼容的问题,这里也选择使用ffmpeg的3.4.8分支源码做编译,同理配套的SDL版本是2.0.2(ffmpeg要求 >= 2.0.1 && <= 2.1.0)。
ffmpeg下载路径:
https://codeload.github.com/FFmpeg/FFmpeg/zip/refs/tags/n3.4.8https://codeload.github.com/FFmpeg/FFmpeg/zip/refs/tags/n3.4.8
SDL下载路径:
https://codeload.github.com/libsdl-org/SDL/zip/refs/tags/release-2.0.2https://codeload.github.com/libsdl-org/SDL/zip/refs/tags/release-2.0.2
安装SDL2,解压源码,运行如下命令
./configure make make install
安装FFmpeg,解压源码,运行如下命令
./configure --enable-debug --enable-ffplay --disable-x86asm make make install cp ffplay_g /usr/local/bin/ffplay_g cp ffmpeg_g /usr/local/bin/ffmpeg_g cp ffprobe_g /usr/local/bin/ffprobe_g
gdb `find /home/ubuntu/_WORKSPACE/SourceCode/FFmpeg-n3.4.8 -type d -printf '-d %p '` ffplay_g set args -i xxx.h264 b main start
GitHub - leixiaohua1020/h264_analysis: A H.264 stream analysis software based on MFC