-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
backlogIdeas that might be cool and can be looked into later.Ideas that might be cool and can be looked into later.bugSomething isn't workingSomething isn't workingvideoIssues relating to video encoding, codecs, hls output or rtmp input.Issues relating to video encoding, codecs, hls output or rtmp input.
Milestone
Description
Share your bug report, feature request, or comment.
In ffmpeg version 5 the three distinct pixel formats seems to have been merged into one named just vaapi
The code currently forces the vaapi_vld pixel format that is no longer present in the latest version of ffmpeg
Here is a comparison of available pixel formats on ffmpeg 5.0.1 (from alpine 3.16) and 4.4.1 (from alpine 3.15).
$ docker run --rm -it alpine:latest sh -c "apk add ffmpeg > /dev/null && ffmpeg -pix_fmts | grep vaapi"
ffmpeg version 5.0.1 Copyright (c) 2000-2022 the FFmpeg developers
built with gcc 11.2.1 (Alpine 11.2.1_git20220219) 20220219
configuration: --prefix=/usr --enable-avfilter --enable-gnutls --enable-gpl --enable-libass --enable-libmp3lame --enable-libpulse --enable-libvorbis --enable-libvpx --enable-libxvid --enable-libx264 --enable-libx265 --enable-libtheora --enable-libv4l2 --enable-libdav1d --enable-lto --enable-postproc --enable-pic --enable-pthreads --enable-shared --enable-libxcb --enable-librist --enable-libsrt --enable-libssh --enable-libvidstab --disable-stripping --disable-static --disable-librtmp --enable-libaom --enable-libopus --enable-libsoxr --enable-libwebp --enable-vaapi --enable-vdpau --enable-vulkan --enable-libdrm --disable-debug
libavutil 57. 17.100 / 57. 17.100
libavcodec 59. 18.100 / 59. 18.100
libavformat 59. 16.100 / 59. 16.100
libavdevice 59. 4.100 / 59. 4.100
libavfilter 8. 24.100 / 8. 24.100
libswscale 6. 4.100 / 6. 4.100
libswresample 4. 3.100 / 4. 3.100
libpostproc 56. 3.100 / 56. 3.100
..H.. vaapi 0 0 0
$ docker run --rm -it alpine:3.15 sh -c "apk add ffmpeg > /dev/null && ffmpeg -pix_fmts | grep vaapi"
ffmpeg version 4.4.1 Copyright (c) 2000-2021 the FFmpeg developers
built with gcc 10.3.1 (Alpine 10.3.1_git20211027) 20211027
configuration: --prefix=/usr --enable-avresample --enable-avfilter --enable-gnutls --enable-gpl --enable-libass --enable-libmp3lame --enable-libvorbis --enable-libvpx --enable-libxvid --enable-libx264 --enable-libx265 --enable-libtheora --enable-libv4l2 --enable-libdav1d --enable-postproc --enable-pic --enable-pthreads --enable-shared --enable-libxcb --enable-libsrt --enable-libssh --enable-libvidstab --disable-stripping --disable-static --disable-librtmp --enable-libaom --enable-libopus --enable-libsoxr --enable-libwebp --enable-vaapi --enable-vdpau --enable-vulkan --disable-debug
libavutil 56. 70.100 / 56. 70.100
libavcodec 58.134.100 / 58.134.100
libavformat 58. 76.100 / 58. 76.100
libavdevice 58. 13.100 / 58. 13.100
libavfilter 7.110.100 / 7.110.100
libavresample 4. 0. 0 / 4. 0. 0
libswscale 5. 9.100 / 5. 9.100
libswresample 3. 9.100 / 3. 9.100
libpostproc 55. 9.100 / 55. 9.100
..H.. vaapi_moco 0 0
..H.. vaapi_idct 0 0
..H.. vaapi_vld 0 0
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
backlogIdeas that might be cool and can be looked into later.Ideas that might be cool and can be looked into later.bugSomething isn't workingSomething isn't workingvideoIssues relating to video encoding, codecs, hls output or rtmp input.Issues relating to video encoding, codecs, hls output or rtmp input.