blob: 3158aef6c74f583e023ba1d5927618c91f416e55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
From a0fe1b898ba446fdd45ff7fdad18d442140df090 Mon Sep 17 00:00:00 2001
From: Yogesh Tyagi <yogesh.tyagi@intel.com>
Date: Sun, 11 May 2025 17:21:17 +0530
Subject: [PATCH] Add cstdint header to resolve build issue with gcc-15
Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
Upstream-Status: Submitted [https://github.com/intel/libvpl-tools/pull/7]
---
tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp b/tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp
index 29d4a99..91baf8b 100644
--- a/tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp
+++ b/tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp
@@ -5,6 +5,7 @@
############################################################################*/
#include "sample_vpp_frc_adv.h"
+#include <cstdint>
#include <math.h>
#include <algorithm>
#include "vm/strings_defs.h"
@@ -179,4 +180,4 @@ mfxU64 FRCAdvancedChecker::GetExpectedPTS(mfxU32 frameNumber, mfxU64 timeOffset,
} // mfxU64 FRCAdvancedChecker::GetExpectedPTS( mfxU32 frameNumber, mfxU64 timeOffset, mfxU64 timeJump )
-/* EOF */
\ No newline at end of file
+/* EOF */
--
2.43.0
|