* [FFmpeg-devel] [PATCH] configure: autodetect libdrm
@ 2023-12-29 4:23 Xiang, Haihao
2024-01-05 3:58 ` Xiang, Haihao
2024-01-05 7:58 ` Zhao Zhili
0 siblings, 2 replies; 4+ messages in thread
From: Xiang, Haihao @ 2023-12-29 4:23 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Haihao Xiang
From: Haihao Xiang <haihao.xiang@intel.com>
option kernel_driver for vaapi device creation can be used to choose the
desired device on Linux, which is more convenient than DRM render node
in a multiple-device system (e.g. Intel iGPU + AMD dGPU or inverse), but
this option requires libdrm works. vaapi is autodetected at
configuration time, let's make libdrm autodetected too.
Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
---
configure | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure b/configure
index cd66e42850..1f7d3ef11e 100755
--- a/configure
+++ b/configure
@@ -339,7 +339,7 @@ External library support:
--disable-d3d12va disable Microsoft Direct3D 12 video acceleration code [autodetect]
--disable-dxva2 disable Microsoft DirectX 9 video acceleration code [autodetect]
--disable-ffnvcodec disable dynamically linked Nvidia code [autodetect]
- --enable-libdrm enable DRM code (Linux) [no]
+ --disable-libdrm disable DRM code (Linux) [autodetect]
--enable-libmfx enable Intel MediaSDK (AKA Quick Sync Video) code via libmfx [no]
--enable-libvpl enable Intel oneVPL code via libvpl if libmfx is not used [no]
--enable-libnpp enable Nvidia Performance Primitives-based code [no]
@@ -1855,7 +1855,6 @@ EXTERNAL_LIBRARY_LIST="
libcodec2
libdav1d
libdc1394
- libdrm
libflite
libfontconfig
libfreetype
@@ -1931,6 +1930,7 @@ HWACCEL_AUTODETECT_LIBRARY_LIST="
d3d12va
dxva2
ffnvcodec
+ libdrm
nvdec
nvenc
vaapi
@@ -6749,7 +6749,7 @@ enabled libcodec2 && require libcodec2 codec2/codec2.h codec2_create -lc
enabled libdav1d && require_pkg_config libdav1d "dav1d >= 0.5.0" "dav1d/dav1d.h" dav1d_version
enabled libdavs2 && require_pkg_config libdavs2 "davs2 >= 1.6.0" davs2.h davs2_decoder_open
enabled libdc1394 && require_pkg_config libdc1394 libdc1394-2 dc1394/dc1394.h dc1394_new
-enabled libdrm && require_pkg_config libdrm libdrm xf86drm.h drmGetVersion
+enabled libdrm && check_pkg_config libdrm libdrm xf86drm.h drmGetVersion
enabled libfdk_aac && { check_pkg_config libfdk_aac fdk-aac "fdk-aac/aacenc_lib.h" aacEncOpen ||
{ require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac &&
warn "using libfdk without pkg-config"; } }
--
2.34.1
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] configure: autodetect libdrm
2023-12-29 4:23 [FFmpeg-devel] [PATCH] configure: autodetect libdrm Xiang, Haihao
@ 2024-01-05 3:58 ` Xiang, Haihao
2024-01-05 7:58 ` Zhao Zhili
1 sibling, 0 replies; 4+ messages in thread
From: Xiang, Haihao @ 2024-01-05 3:58 UTC (permalink / raw)
To: ffmpeg-devel
On Vr, 2023-12-29 at 12:23 +0800, Xiang, Haihao wrote:
> From: Haihao Xiang <haihao.xiang@intel.com>
>
> option kernel_driver for vaapi device creation can be used to choose the
> desired device on Linux, which is more convenient than DRM render node
> in a multiple-device system (e.g. Intel iGPU + AMD dGPU or inverse), but
> this option requires libdrm works. vaapi is autodetected at
> configuration time, let's make libdrm autodetected too.
>
> Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
> ---
> configure | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/configure b/configure
> index cd66e42850..1f7d3ef11e 100755
> --- a/configure
> +++ b/configure
> @@ -339,7 +339,7 @@ External library support:
> --disable-d3d12va disable Microsoft Direct3D 12 video acceleration
> code [autodetect]
> --disable-dxva2 disable Microsoft DirectX 9 video acceleration
> code [autodetect]
> --disable-ffnvcodec disable dynamically linked Nvidia code
> [autodetect]
> - --enable-libdrm enable DRM code (Linux) [no]
> + --disable-libdrm disable DRM code (Linux) [autodetect]
> --enable-libmfx enable Intel MediaSDK (AKA Quick Sync Video) code
> via libmfx [no]
> --enable-libvpl enable Intel oneVPL code via libvpl if libmfx is
> not used [no]
> --enable-libnpp enable Nvidia Performance Primitives-based code
> [no]
> @@ -1855,7 +1855,6 @@ EXTERNAL_LIBRARY_LIST="
> libcodec2
> libdav1d
> libdc1394
> - libdrm
> libflite
> libfontconfig
> libfreetype
> @@ -1931,6 +1930,7 @@ HWACCEL_AUTODETECT_LIBRARY_LIST="
> d3d12va
> dxva2
> ffnvcodec
> + libdrm
> nvdec
> nvenc
> vaapi
> @@ -6749,7 +6749,7 @@ enabled libcodec2 && require libcodec2
> codec2/codec2.h codec2_create -lc
> enabled libdav1d && require_pkg_config libdav1d "dav1d >= 0.5.0"
> "dav1d/dav1d.h" dav1d_version
> enabled libdavs2 && require_pkg_config libdavs2 "davs2 >= 1.6.0"
> davs2.h davs2_decoder_open
> enabled libdc1394 && require_pkg_config libdc1394 libdc1394-2
> dc1394/dc1394.h dc1394_new
> -enabled libdrm && require_pkg_config libdrm libdrm xf86drm.h
> drmGetVersion
> +enabled libdrm && check_pkg_config libdrm libdrm xf86drm.h
> drmGetVersion
> enabled libfdk_aac && { check_pkg_config libfdk_aac fdk-aac "fdk-
> aac/aacenc_lib.h" aacEncOpen ||
> { require libfdk_aac fdk-aac/aacenc_lib.h
> aacEncOpen -lfdk-aac &&
> warn "using libfdk without pkg-config"; } }
Will push if no objections.
BRs
Haihao
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] configure: autodetect libdrm
2023-12-29 4:23 [FFmpeg-devel] [PATCH] configure: autodetect libdrm Xiang, Haihao
2024-01-05 3:58 ` Xiang, Haihao
@ 2024-01-05 7:58 ` Zhao Zhili
2024-01-09 1:52 ` Xiang, Haihao
1 sibling, 1 reply; 4+ messages in thread
From: Zhao Zhili @ 2024-01-05 7:58 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: Haihao Xiang
> On Dec 29, 2023, at 12:23, Xiang, Haihao <haihao.xiang-at-intel.com@ffmpeg.org> wrote:
>
> From: Haihao Xiang <haihao.xiang@intel.com>
>
> option kernel_driver for vaapi device creation can be used to choose the
> desired device on Linux, which is more convenient than DRM render node
> in a multiple-device system (e.g. Intel iGPU + AMD dGPU or inverse), but
> this option requires libdrm works. vaapi is autodetected at
> configuration time, let's make libdrm autodetected too.
>
> Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
> ---
> configure | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
LGTM.
> --
> 2.34.1
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] configure: autodetect libdrm
2024-01-05 7:58 ` Zhao Zhili
@ 2024-01-09 1:52 ` Xiang, Haihao
0 siblings, 0 replies; 4+ messages in thread
From: Xiang, Haihao @ 2024-01-09 1:52 UTC (permalink / raw)
To: ffmpeg-devel
On Vr, 2024-01-05 at 15:58 +0800, Zhao Zhili wrote:
>
>
> > On Dec 29, 2023, at 12:23, Xiang, Haihao
> > <haihao.xiang-at-intel.com@ffmpeg.org> wrote:
> >
> > From: Haihao Xiang <haihao.xiang@intel.com>
> >
> > option kernel_driver for vaapi device creation can be used to choose the
> > desired device on Linux, which is more convenient than DRM render node
> > in a multiple-device system (e.g. Intel iGPU + AMD dGPU or inverse), but
> > this option requires libdrm works. vaapi is autodetected at
> > configuration time, let's make libdrm autodetected too.
> >
> > Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
> > ---
> > configure | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
>
> LGTM.
Pushed, thx
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-09 1:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-29 4:23 [FFmpeg-devel] [PATCH] configure: autodetect libdrm Xiang, Haihao
2024-01-05 3:58 ` Xiang, Haihao
2024-01-05 7:58 ` Zhao Zhili
2024-01-09 1:52 ` Xiang, Haihao
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git