philipel 8615bf0582 Move FrameBuffer3 to api/
The webrtc::VideoStreamDecoderInterface was basically created as a public version of FrameBuffer2, but to hide the complexity of FrameBuffer2 it was also combined with decoding so that the public API could be reasonably simple to use. FrameBuffer3 has a simple API with a clear purpose, so its API can be exposed directly.

Bug: webrtc:14026
Change-Id: I81dc84b869e4d16c5e02feb5c876fbcede3d4a25
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/261181
Reviewed-by: Tomas Gunnarsson <tommi@webrtc.org>
Commit-Queue: Philip Eliasson <philipel@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#36781}
2022-05-05 14:34:48 +00:00

64 lines
1.2 KiB
Python

specific_include_rules = {
# Until the new VideoStreamDecoder is implemented the current decoding
# pipeline will be used, and therefore EncodedFrame needs to inherit
# VCMEncodedFrame.
"encoded_frame.h": [
"+modules/video_coding/encoded_frame.h",
],
"encoded_image\.h" : [
"+rtc_base/ref_count.h",
],
"i010_buffer\.h": [
"+rtc_base/memory/aligned_malloc.h",
],
"i420_buffer\.h": [
"+rtc_base/memory/aligned_malloc.h",
],
"i422_buffer\.h": [
"+rtc_base/memory/aligned_malloc.h",
],
"i444_buffer\.h": [
"+rtc_base/memory/aligned_malloc.h",
],
"nv12_buffer\.h": [
"+rtc_base/memory/aligned_malloc.h",
],
"recordable_encoded_frame\.h": [
"+rtc_base/ref_count.h",
],
"video_frame\.h": [
],
"video_frame_buffer\.h": [
"+rtc_base/ref_count.h",
],
"video_stream_decoder_create.cc": [
"+video/video_stream_decoder_impl.h",
],
"video_stream_encoder_create.cc": [
"+video/video_stream_encoder.h",
],
"rtp_video_frame_assembler.h": [
"+modules/rtp_rtcp/source/rtp_packet_received.h",
],
"frame_buffer.h": [
"+modules/video_coding/utility/decoded_frames_history.h",
],
"video_frame_matchers\.h": [
"+test/gmock.h",
],
}