aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/webrtc-for-telegram-desktop-fix-gcc12-cstdint.patch
blob: f1fd29d0d365dc6e7e7b7bd068741dcb8cf3b556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From 86d2bcd7afb8706663d29e30f65863de5a626142 Mon Sep 17 00:00:00 2001
From: Xiretza <xiretza@xiretza.xyz>
Date: Sun, 15 May 2022 12:47:41 +0200
Subject: [PATCH] fix(h265_pps_parser): fix missing cstdint include

---
 src/common_video/h265/h265_pps_parser.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/common_video/h265/h265_pps_parser.h b/src/common_video/h265/h265_pps_parser.h
index 28c95ea9..c180b1b9 100644
--- a/src/common_video/h265/h265_pps_parser.h
+++ b/src/common_video/h265/h265_pps_parser.h
@@ -12,6 +12,7 @@
 #define COMMON_VIDEO_H265_PPS_PARSER_H_

 #include "absl/types/optional.h"
+#include <cstdint>

 namespace rtc {
 class BitBuffer;