101.patch 668 B

12345678910111213141516171819202122
  1. From 86d2bcd7afb8706663d29e30f65863de5a626142 Mon Sep 17 00:00:00 2001
  2. From: Xiretza <xiretza@xiretza.xyz>
  3. Date: Sun, 15 May 2022 12:47:41 +0200
  4. Subject: [PATCH] fix(h265_pps_parser): fix missing cstdint include
  5. ---
  6. src/common_video/h265/h265_pps_parser.h | 1 +
  7. 1 file changed, 1 insertion(+)
  8. diff --git a/src/common_video/h265/h265_pps_parser.h b/src/common_video/h265/h265_pps_parser.h
  9. index 28c95ea9..c180b1b9 100644
  10. --- a/src/common_video/h265/h265_pps_parser.h
  11. +++ b/src/common_video/h265/h265_pps_parser.h
  12. @@ -12,6 +12,7 @@
  13. #define COMMON_VIDEO_H265_PPS_PARSER_H_
  14. #include "absl/types/optional.h"
  15. +#include <cstdint>
  16. namespace rtc {
  17. class BitBuffer;