diff options
Diffstat (limited to 'recipes-qt/qt5/qtwebengine')
-rw-r--r-- | recipes-qt/qt5/qtwebengine/chromium/0022-chromium-Include-cstddef-for-size_t-definition.patch | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0022-chromium-Include-cstddef-for-size_t-definition.patch b/recipes-qt/qt5/qtwebengine/chromium/0022-chromium-Include-cstddef-for-size_t-definition.patch new file mode 100644 index 00000000..27f83ccb --- /dev/null +++ b/recipes-qt/qt5/qtwebengine/chromium/0022-chromium-Include-cstddef-for-size_t-definition.patch | |||
@@ -0,0 +1,43 @@ | |||
1 | From 409a3764e31f3c3db4087fbd2a401c950e6e041d Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 25 Dec 2019 15:41:16 -0800 | ||
4 | Subject: [PATCH] chromium: Include cstddef for size_t definition | ||
5 | |||
6 | Include ctsdint for uintXX_t | ||
7 | |||
8 | Fixes | ||
9 | In file included from ../../../../git/src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.cc:10: | ||
10 | ../../../../git/src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h:34:3: error: 'size_t' does not name a type | ||
11 | 34 | size_t stability_counter_; | ||
12 | | ^~~~~~ | ||
13 | |||
14 | Upstream-Status: Pending | ||
15 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
16 | |||
17 | ccc | ||
18 | |||
19 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
20 | --- | ||
21 | .../webrtc/modules/audio_processing/aec3/clockdrift_detector.h | 1 + | ||
22 | 1 file changed, 1 insertion(+) | ||
23 | |||
24 | --- a/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h | ||
25 | +++ b/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h | ||
26 | @@ -12,6 +12,7 @@ | ||
27 | #define MODULES_AUDIO_PROCESSING_AEC3_CLOCKDRIFT_DETECTOR_H_ | ||
28 | |||
29 | #include <array> | ||
30 | +#include <cstddef> | ||
31 | |||
32 | namespace webrtc { | ||
33 | |||
34 | --- a/chromium/third_party/webrtc/modules/video_coding/decoding_state.h | ||
35 | +++ b/chromium/third_party/webrtc/modules/video_coding/decoding_state.h | ||
36 | @@ -14,6 +14,7 @@ | ||
37 | #include <map> | ||
38 | #include <set> | ||
39 | #include <vector> | ||
40 | +#include <cstdint> | ||
41 | |||
42 | namespace webrtc { | ||
43 | |||