File: gcc14.patch

package info (click to toggle)
gmerlin-avdecoder 2.0.0~svn6298~dfsg0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,272 kB
  • sloc: ansic: 94,582; makefile: 709; sh: 705; awk: 43; sed: 16
file content (18 lines) | stat: -rw-r--r-- 528 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Use correct pointer-types
Author: IOhannes m zmölnig
Origin: Debian
Bug: https://github.com/bplaum/gmerlin-avdecoder/issues/13
Last-Update: 2024-08-12
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- gmerlin-avdecoder.orig/lib/bsf_adts.c
+++ gmerlin-avdecoder/lib/bsf_adts.c
@@ -69,7 +69,7 @@
   bgav_packet_t * p = NULL;
   AVBSFContext * ctx;
   const uint8_t * extradata;
-  int extradata_size = 0;
+  size_t extradata_size = 0;
   AVPacket pkt;
   
   const AVBitStreamFilter *filter;