我正在尝试编译 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]。