diff mbox

[FFmpeg-devel,6/7] hwcontext_vaapi: Try to create devices via DRM before X11

Message ID 20190506144928.28501-6-sw@jkqxz.net
State Accepted
Commit 0b4696fbe8dbd2ab038006fdc02cada2ef6ae3ba
Headers show

Commit Message

Mark Thompson May 6, 2019, 2:49 p.m. UTC
Opening the device via X11 (DRI2/DRI3) rather than opening a DRM render
node directly is only useful if you intend to use the legacy X11 interop
functions.  That's never true for the ffmpeg utility, and a library user
who does want this will likely provide their own display instance rather
than making a new one here.
---
 libavutil/hwcontext_vaapi.c | 42 ++++++++++++++++++-------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

Comments

Jun Zhao May 7, 2019, 1:22 a.m. UTC | #1
On Mon, May 6, 2019 at 10:56 PM Mark Thompson <sw@jkqxz.net> wrote:
>
> Opening the device via X11 (DRI2/DRI3) rather than opening a DRM render
> node directly is only useful if you intend to use the legacy X11 interop
> functions.  That's never true for the ffmpeg utility, and a library user
> who does want this will likely provide their own display instance rather
> than making a new one here.
> ---
>  libavutil/hwcontext_vaapi.c | 42 ++++++++++++++++++-------------------
>  1 file changed, 21 insertions(+), 21 deletions(-)
>
> diff --git a/libavutil/hwcontext_vaapi.c b/libavutil/hwcontext_vaapi.c
> index 35883d7855..1219b75784 100644
> --- a/libavutil/hwcontext_vaapi.c
> +++ b/libavutil/hwcontext_vaapi.c
> @@ -1500,27 +1500,6 @@ static int vaapi_device_create(AVHWDeviceContext *ctx, const char *device,
>          try_x11 = HAVE_VAAPI_X11;
>      }
>
> -#if HAVE_VAAPI_X11
> -    if (!display && try_x11) {
> -        // Try to open the device as an X11 display.
> -        priv->x11_display = XOpenDisplay(device);
> -        if (!priv->x11_display) {
> -            av_log(ctx, AV_LOG_VERBOSE, "Cannot open X11 display "
> -                   "%s.\n", XDisplayName(device));
> -        } else {
> -            display = vaGetDisplay(priv->x11_display);
> -            if (!display) {
> -                av_log(ctx, AV_LOG_ERROR, "Cannot open a VA display "
> -                       "from X11 display %s.\n", XDisplayName(device));
> -                return AVERROR_UNKNOWN;
> -            }
> -
> -            av_log(ctx, AV_LOG_VERBOSE, "Opened VA display via "
> -                   "X11 display %s.\n", XDisplayName(device));
> -        }
> -    }
> -#endif
> -
>  #if HAVE_VAAPI_DRM
>      while (!display && try_drm) {
>          // If the device is specified, try to open it as a DRM device node.
> @@ -1588,6 +1567,27 @@ static int vaapi_device_create(AVHWDeviceContext *ctx, const char *device,
>      }
>  #endif
>
> +#if HAVE_VAAPI_X11
> +    if (!display && try_x11) {
> +        // Try to open the device as an X11 display.
> +        priv->x11_display = XOpenDisplay(device);
> +        if (!priv->x11_display) {
> +            av_log(ctx, AV_LOG_VERBOSE, "Cannot open X11 display "
> +                   "%s.\n", XDisplayName(device));
> +        } else {
> +            display = vaGetDisplay(priv->x11_display);
> +            if (!display) {
> +                av_log(ctx, AV_LOG_ERROR, "Cannot open a VA display "
> +                       "from X11 display %s.\n", XDisplayName(device));
> +                return AVERROR_UNKNOWN;
> +            }
> +
> +            av_log(ctx, AV_LOG_VERBOSE, "Opened VA display via "
> +                   "X11 display %s.\n", XDisplayName(device));
> +        }
> +    }
> +#endif
> +
>      if (!display) {
>          if (device)
>              av_log(ctx, AV_LOG_ERROR, "No VA display found for "
> --
> 2.20.1
>
LGTM,  I remember that I seem to have submitted a similar patch :),
maybe not submitted but keep in the local git repo? I can't remember
the details,  Anyway, I like this patch
diff mbox

Patch

diff --git a/libavutil/hwcontext_vaapi.c b/libavutil/hwcontext_vaapi.c
index 35883d7855..1219b75784 100644
--- a/libavutil/hwcontext_vaapi.c
+++ b/libavutil/hwcontext_vaapi.c
@@ -1500,27 +1500,6 @@  static int vaapi_device_create(AVHWDeviceContext *ctx, const char *device,
         try_x11 = HAVE_VAAPI_X11;
     }
 
-#if HAVE_VAAPI_X11
-    if (!display && try_x11) {
-        // Try to open the device as an X11 display.
-        priv->x11_display = XOpenDisplay(device);
-        if (!priv->x11_display) {
-            av_log(ctx, AV_LOG_VERBOSE, "Cannot open X11 display "
-                   "%s.\n", XDisplayName(device));
-        } else {
-            display = vaGetDisplay(priv->x11_display);
-            if (!display) {
-                av_log(ctx, AV_LOG_ERROR, "Cannot open a VA display "
-                       "from X11 display %s.\n", XDisplayName(device));
-                return AVERROR_UNKNOWN;
-            }
-
-            av_log(ctx, AV_LOG_VERBOSE, "Opened VA display via "
-                   "X11 display %s.\n", XDisplayName(device));
-        }
-    }
-#endif
-
 #if HAVE_VAAPI_DRM
     while (!display && try_drm) {
         // If the device is specified, try to open it as a DRM device node.
@@ -1588,6 +1567,27 @@  static int vaapi_device_create(AVHWDeviceContext *ctx, const char *device,
     }
 #endif
 
+#if HAVE_VAAPI_X11
+    if (!display && try_x11) {
+        // Try to open the device as an X11 display.
+        priv->x11_display = XOpenDisplay(device);
+        if (!priv->x11_display) {
+            av_log(ctx, AV_LOG_VERBOSE, "Cannot open X11 display "
+                   "%s.\n", XDisplayName(device));
+        } else {
+            display = vaGetDisplay(priv->x11_display);
+            if (!display) {
+                av_log(ctx, AV_LOG_ERROR, "Cannot open a VA display "
+                       "from X11 display %s.\n", XDisplayName(device));
+                return AVERROR_UNKNOWN;
+            }
+
+            av_log(ctx, AV_LOG_VERBOSE, "Opened VA display via "
+                   "X11 display %s.\n", XDisplayName(device));
+        }
+    }
+#endif
+
     if (!display) {
         if (device)
             av_log(ctx, AV_LOG_ERROR, "No VA display found for "