File: c23.patch

package info (click to toggle)
gavl 2.0.0~svn6298-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,808 kB
  • sloc: ansic: 465,657; makefile: 325; sh: 109
file content (19 lines) | stat: -rw-r--r-- 654 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);