This CL adds support for I410 buffers (444 10 bits) and modify vp9 and h264 for being able to convert input buffer to it when appropiate. Bug: webrtc:14818 Change-Id: I2fb3dc9d80c5338944c6df74dd6217a0454180d9 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/290721 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Reviewed-by: Sergey Silkin <ssilkin@webrtc.org> Reviewed-by: Erik Språng <sprang@webrtc.org> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Reviewed-by: Åsa Persson <asapersson@webrtc.org> Commit-Queue: Ilya Nikolaevskiy <ilnik@webrtc.org> Cr-Commit-Position: refs/heads/main@{#39123}
78 lines
1.6 KiB
Python
78 lines
1.6 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",
|
|
],
|
|
|
|
"i210_buffer\.h": [
|
|
"+rtc_base/memory/aligned_malloc.h",
|
|
],
|
|
|
|
"i410_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_frame_metadata\.h": [
|
|
"+modules/video_coding/codecs/h264/include/h264_globals.h",
|
|
"+modules/video_coding/codecs/vp8/include/vp8_globals.h",
|
|
"+modules/video_coding/codecs/vp9/include/vp9_globals.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",
|
|
],
|
|
}
|