fix: Add missing <cstdint> includes (#1306)
CC version 13 needs `<cstdint>` to be explicitly included to provide fixed bits integer types. Some files using it inludes `<stdint.h>`, some are missing direct or undirect inclusion. This PR adds `<cstdint>` inclusion to the minimal set of files, allowing compilation on GCC 13. Closes #1305
This commit is contained in:
parent
ac59b9ebc9
commit
ba5c77155a
1
AUTHORS
1
AUTHORS
|
@ -18,6 +18,7 @@ Alen Vrecko <alen.vrecko@gmail.com>
|
|||
Amazon Music <*@amazon.com>
|
||||
Anders Hasselqvist <anders.hasselqvist@gmail.com>
|
||||
Audible <*@audible.com>
|
||||
Cyfrowy Polsat SA <*@cyfrowypolsat.pl>
|
||||
Chun-da Chen <capitalm.c@gmail.com>
|
||||
Daniel Cantarín <canta@canta.com.ar>
|
||||
Dolby Laboratories <*@dolby.com>
|
||||
|
|
|
@ -40,6 +40,7 @@ Kongqun Yang <kqyang@google.com>
|
|||
Leandro Moreira <leandro.ribeiro.moreira@gmail.com>
|
||||
Leo Law <leoltlaw.gh@gmail.com>
|
||||
Marcus Spangenberg <marcus.spangenberg@eyevinn.se>
|
||||
Michal Wierzbicki <mwierzbicki1@cyfrowypolsat.pl>
|
||||
Ole Andre Birkedal <o.birkedal@sportradar.com>
|
||||
Piotr Srebrny <srebrny.piotr@gmail.com>
|
||||
Qingquan Wang <wangqq1103@gmail.com>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#ifndef PACKAGER_HLS_BASE_TAG_H_
|
||||
#define PACKAGER_HLS_BASE_TAG_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
|
||||
namespace shaka {
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#ifndef PACKAGER_HLS_PUBLIC_HLS_PARAMS_H_
|
||||
#define PACKAGER_HLS_PUBLIC_HLS_PARAMS_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
|
||||
namespace shaka {
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#ifndef PACKAGER_MEDIA_BASE_BUFFER_WRITER_H_
|
||||
#define PACKAGER_MEDIA_BASE_BUFFER_WRITER_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
#include "packager/base/macros.h"
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
#ifndef PACKAGER_MEDIA_BASE_FOURCCS_H_
|
||||
#define PACKAGER_MEDIA_BASE_FOURCCS_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
|
||||
namespace shaka {
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#ifndef PACKAGER_MEDIA_BASE_ID3_TAG_H_
|
||||
#define PACKAGER_MEDIA_BASE_ID3_TAG_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
// license that can be found in the LICENSE file or at
|
||||
// https://developers.google.com/open-source/licenses/bsd
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
#include "packager/media/base/id3_tag.h"
|
||||
|
||||
#include <gmock/gmock.h>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#ifndef PACKAGER_PACKAGER_H_
|
||||
#define PACKAGER_PACKAGER_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
|
Loading…
Reference in New Issue