mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

Remove VCMEncodedFrame from the inheritance chain of EncodedFrames by - moving getters for EncodedImage fields up to EncodedImage - copying other non-deprecated fields & Methods from VCMEncodedFrame over to EncodedFrame - Removing EncodedFrame's inheritance of VCMEncodedFrame We leave VCMEncodedFrame as part of the (near) deprecated VideoCodingModule code. The only place which needs to accept either is in the generic decoder. Bug: webrtc:9378, b:296992877 Change-Id: I60706aebbb6eacc7fd4b35ec90cc903efdbe14c8 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/317160 Reviewed-by: Åsa Persson <asapersson@webrtc.org> Auto-Submit: Tony Herre <herre@google.com> Commit-Queue: Tony Herre <herre@google.com> Reviewed-by: Philip Eliasson <philipel@webrtc.org> Cr-Commit-Position: refs/heads/main@{#40639}
75 lines
1.5 KiB
Python
75 lines
1.5 KiB
Python
specific_include_rules = {
|
|
"encoded_frame.h" : [
|
|
"+modules/rtp_rtcp/source/rtp_video_header.h",
|
|
"+modules/video_coding/include/video_codec_interface.h",
|
|
"+modules/video_coding/include/video_coding_defines.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",
|
|
],
|
|
}
|