]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/ffmpeg: disable build of nvidia hardware acceleration support
authorBernd Kuhls <bernd.kuhls@t-online.de>
Sat, 22 Jul 2017 15:13:06 +0000 (17:13 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 25 Jul 2017 22:09:17 +0000 (00:09 +0200)
ffmpeg always enables support for nvenc/cuda even if their support
libraries are not present:

External libraries providing hardware acceleration:
cuda cuvid nvenc
[...]
Enabled hwaccels:
h264_cuvid mjpeg_cuvid mpeg2_cuvid vc1_cuvid vp9_cuvid
hevc_cuvid mpeg1_cuvid mpeg4_cuvid vp8_cuvid

This leads to a crash in freeswitch git master when transcoding video
streams on a system without nvidia hardware:

2017-07-22 15:06:27.306760 [INFO] avcodec.c:1077 initializing encoder 352x288
2017-07-22 15:06:27.306760 [NOTICE] avcodec.c:828 NVENC HW CODEC ENABLED

This patch disables the support of nvidia hardware acceleration support
for now until the needed packages are added to buildroot. For details
about this please refer to https://developer.nvidia.com/ffmpeg

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
(cherry picked from commit 3b6fa452f6ee20f54e47fdc3106620ff258f13b7)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/ffmpeg/ffmpeg.mk

index 4494612879f10654322bac1eb3112ebcb7378c87..9c30e8f406c7d4e1a26c67f6c21fe2a5bc833a04 100644 (file)
@@ -44,6 +44,9 @@ FFMPEG_CONF_OPTS = \
        --disable-mipsdspr2 \
        --disable-msa \
        --enable-hwaccels \
+       --disable-cuda \
+       --disable-cuvid \
+       --disable-nvenc \
        --disable-avisynth \
        --disable-frei0r \
        --disable-libopencore-amrnb \