add missing includes for the build with use_libcxx_modules

This is to fix build error when we set use_libcxx_modules=true in
chromium build.

Bug: chromium:40440396
Change-Id: Iad165a78a6920ccb858567d31fbe5e48d8a7b629
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/371620
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Henrik Lundin <henrik.lundin@webrtc.org>
Auto-Submit: Takuto Ikuta <tikuta@google.com>
Commit-Queue: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#43574}
This commit is contained in:
Takuto Ikuta 2024-12-16 18:15:11 +09:00 committed by WebRTC LUCI CQ
parent 78ab1cf39c
commit 5c5bb5b099
2 changed files with 4 additions and 2 deletions

View File

@ -11,6 +11,7 @@
#ifndef MODULES_AUDIO_CODING_NETEQ_TOOLS_INPUT_AUDIO_FILE_H_
#define MODULES_AUDIO_CODING_NETEQ_TOOLS_INPUT_AUDIO_FILE_H_
#include <stdint.h>
#include <stdio.h>
#include <string>

View File

@ -8,13 +8,14 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "modules/rtp_rtcp/source/rtp_packetizer_av1_test_helper.h"
#include <stddef.h>
#include <stdint.h>
#include <initializer_list>
#include <vector>
#include "modules/rtp_rtcp/source/rtp_packetizer_av1_test_helper.h"
namespace webrtc {
Av1Obu::Av1Obu(uint8_t obu_type) : header_(obu_type | kAv1ObuSizePresentBit) {}