]> git.sesse.net Git - nageru/commitdiff
Improve selection of software formats on hwaccel fallback.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 16 Apr 2023 08:35:13 +0000 (10:35 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 16 Apr 2023 08:35:13 +0000 (10:35 +0200)
We assumed the first format was a software format, whereas in practice,
it would now seemingly be vdpau or cuda, causing multiple trips
through the selection function.

nageru/ffmpeg_capture.cpp

index e099d18a34a5073ba1f8bc1b07158d40f778f720..5cf1d8c9ec75f35a6932a6bd7a282914c3017d92 100644 (file)
@@ -503,7 +503,15 @@ AVPixelFormat get_hw_format(AVCodecContext *ctx, const AVPixelFormat *fmt)
                fprintf(stderr, "Decoder '%s' does not support device type '%s'.\n", ctx->codec->name, av_hwdevice_get_type_name(type));
        }
 
-       // We found no VA-API formats, so take the best software format.
+       // We found no VA-API formats, so take the first software format.
+       for (const AVPixelFormat *fmt_ptr = fmt; *fmt_ptr != -1; ++fmt_ptr) {
+               if ((av_pix_fmt_desc_get(*fmt_ptr)->flags & AV_PIX_FMT_FLAG_HWACCEL) == 0) {
+                       fprintf(stderr, "Falling back to software format %s.\n", av_get_pix_fmt_name(*fmt_ptr));
+                       return *fmt_ptr;
+               }
+       }
+
+       // Fallback: Just return anything. (Should never really happen.)
        return fmt[0];
 }