This will allow incoming NV12 frames to be encodable by libvpx without requiring a conversion to I420 before encoding. NV12 is supported in libvpx https://chromium.googlesource.com/webm/libvpx/+/master/CHANGELOG Bug: webrtc:11916 Change-Id: I30e9c42c0607bee07691930c0248921bba09134c Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/183720 Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Commit-Queue: Evan Shrubsole <eshr@google.com> Cr-Commit-Position: refs/heads/master@{#32061}
44 lines
863 B
Python
44 lines
863 B
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",
|
|
],
|
|
|
|
"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",
|
|
],
|
|
}
|