shaka-project / shaka-packager

A media packaging and development framework for VOD and Live DASH and HLS applications, supporting Common Encryption for Widevine and other DRM Systems.
https://shaka-project.github.io/shaka-packager/
Other
1.96k stars 505 forks source link

fix: Add missing <cstdint> includes #1306

Closed modernletter closed 10 months ago

modernletter commented 10 months ago

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