无法编译ffmpeg以支持NVIDIA硬件加速

时间:2017-01-05 13:30:04

标签: ffmpeg nvenc

我正在尝试编译ffmpeg以支持NVIDIA硬件加速。但我收到以下错误:

libavcodec/cuvid.c: In function ‘check_cu’:
libavcodec/cuvid.c:83:5: error: implicit declaration of function ‘cuGetErrorName’ [-Werror=implicit-function-declaration]
     cuGetErrorName(err, &err_name);
     ^
libavcodec/cuvid.c:84:5: error: implicit declaration of function ‘cuGetErrorString’ [-Werror=implicit-function-declaration]
     cuGetErrorString(err, &err_string);

我按照NVIDIA开发者论坛上的说明安装了CUDA。我使用的配置是:

./configure --enable-nonfree --enable-nvenc --enable-cuda --enable-cuvid --enable-libx264 --enable-gpl

笔记本电脑上的GPU是NVIDIA Corporation GM108M [GeForce 840M]。

2 个答案:

答案 0 :(得分:0)

尝试安装CUDA UTILITY:

$ wget http://developer.download.nvidia.com/compute/redist/ffmpeg/1511-patch/cudautils.zip
$ unzip cudautils.zip
$ cd cudautils
$ make

并添加配置: - extra-cflags = -I ../ cudautils --extra-ldflags = -L ../ cudautils

无论如何this manual会更好。

答案 1 :(得分:0)

您需要将其配置如下:

  

./ configure --enable-nonfree --disable-shared --enable-nvenc   --enable-cuda --enable-cuvid   --enable-libnpp --extra-cflags = -Ilocal / include --extra-cflags = -I ../ PATH_TO_NVENC_SDK --extra-ldflags = -L ../ PATH_TO_NVENC_SDK