Description: Fix function call to prevent FTBFS wtih gcc-15
 C23 forbids non-matching function prototypes and uses.
Author: IOhannes m zmölnig <umlaeute@debian.org>
Origin: Debian
Forwarded: not-needed
Last-Update: 2025-09-30
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- gavl.orig/gavl/hw_vaapi.c
+++ gavl/gavl/hw_vaapi.c
@@ -624,7 +624,7 @@
   vaapi_masks[3] = frame->image.format.alpha_mask;
 
   if(!priv->dsp)
-    priv->dsp = gavl_dsp_context_create(GAVL_QUALITY_DEFAULT);
+    priv->dsp = gavl_dsp_context_create();
 
   if(to_gavl)
     gavl_dsp_video_frame_shuffle_bytes(priv->dsp, f, fmt, vaapi_masks, gavl_masks);
