Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(537)

Side by Side Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2434073003: Extract bitrate allocation of spatial/temporal layers out of codec impl. (Closed)
Patch Set: Fixed sign mismatch Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../../build/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
(...skipping 13 matching lines...) Expand all
24 "frame_buffer2.cc", 24 "frame_buffer2.cc",
25 "frame_buffer2.h", 25 "frame_buffer2.h",
26 "frame_object.cc", 26 "frame_object.cc",
27 "frame_object.h", 27 "frame_object.h",
28 "generic_decoder.cc", 28 "generic_decoder.cc",
29 "generic_decoder.h", 29 "generic_decoder.h",
30 "generic_encoder.cc", 30 "generic_encoder.cc",
31 "generic_encoder.h", 31 "generic_encoder.h",
32 "histogram.cc", 32 "histogram.cc",
33 "histogram.h", 33 "histogram.h",
34 "include/video_bitrate_allocator_factory.h",
34 "include/video_coding.h", 35 "include/video_coding.h",
35 "include/video_coding_defines.h", 36 "include/video_coding_defines.h",
36 "inter_frame_delay.cc", 37 "inter_frame_delay.cc",
37 "inter_frame_delay.h", 38 "inter_frame_delay.h",
38 "internal_defines.h", 39 "internal_defines.h",
39 "jitter_buffer.cc", 40 "jitter_buffer.cc",
40 "jitter_buffer.h", 41 "jitter_buffer.h",
41 "jitter_buffer_common.h", 42 "jitter_buffer_common.h",
42 "jitter_estimator.cc", 43 "jitter_estimator.cc",
43 "jitter_estimator.h", 44 "jitter_estimator.h",
(...skipping 17 matching lines...) Expand all
61 "rtp_frame_reference_finder.cc", 62 "rtp_frame_reference_finder.cc",
62 "rtp_frame_reference_finder.h", 63 "rtp_frame_reference_finder.h",
63 "rtt_filter.cc", 64 "rtt_filter.cc",
64 "rtt_filter.h", 65 "rtt_filter.h",
65 "session_info.cc", 66 "session_info.cc",
66 "session_info.h", 67 "session_info.h",
67 "timestamp_map.cc", 68 "timestamp_map.cc",
68 "timestamp_map.h", 69 "timestamp_map.h",
69 "timing.cc", 70 "timing.cc",
70 "timing.h", 71 "timing.h",
72 "video_bitrate_allocator_factory.cc",
71 "video_coding_impl.cc", 73 "video_coding_impl.cc",
72 "video_coding_impl.h", 74 "video_coding_impl.h",
73 "video_receiver.cc", 75 "video_receiver.cc",
74 "video_sender.cc", 76 "video_sender.cc",
75 ] 77 ]
76 78
77 # TODO(jschuh): Bug 1348: fix this warning. 79 # TODO(jschuh): Bug 1348: fix this warning.
78 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 80 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
79 81
80 if (!build_with_chromium && is_clang) { 82 if (!build_with_chromium && is_clang) {
81 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 83 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
82 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 84 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
83 } 85 }
84 86
85 deps = [ 87 deps = [
86 ":video_coding_utility", 88 ":video_coding_utility",
87 ":webrtc_h264", 89 ":webrtc_h264",
88 ":webrtc_i420", 90 ":webrtc_i420",
89 ":webrtc_vp8", 91 ":webrtc_vp8",
90 ":webrtc_vp9", 92 ":webrtc_vp9",
91 "../..:webrtc_common", 93 "../..:webrtc_common",
92 "../../common_video", 94 "../../common_video",
93 "../../system_wrappers", 95 "../../system_wrappers",
94 ] 96 ]
95 } 97 }
96 98
97 rtc_static_library("video_coding_utility") { 99 rtc_static_library("video_coding_utility") {
98 sources = [ 100 sources = [
101 "utility/default_video_bitrate_allocator.cc",
102 "utility/default_video_bitrate_allocator.h",
99 "utility/frame_dropper.cc", 103 "utility/frame_dropper.cc",
100 "utility/frame_dropper.h", 104 "utility/frame_dropper.h",
101 "utility/h264_bitstream_parser.cc", 105 "utility/h264_bitstream_parser.cc",
102 "utility/h264_bitstream_parser.h", 106 "utility/h264_bitstream_parser.h",
103 "utility/ivf_file_writer.cc", 107 "utility/ivf_file_writer.cc",
104 "utility/ivf_file_writer.h", 108 "utility/ivf_file_writer.h",
105 "utility/moving_average.cc", 109 "utility/moving_average.cc",
106 "utility/moving_average.h", 110 "utility/moving_average.h",
107 "utility/qp_parser.cc", 111 "utility/qp_parser.cc",
108 "utility/qp_parser.h", 112 "utility/qp_parser.h",
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 if (!build_with_chromium && is_clang) { 326 if (!build_with_chromium && is_clang) {
323 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 327 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
324 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 328 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
325 } 329 }
326 330
327 deps = [ 331 deps = [
328 "../../test:test_support", 332 "../../test:test_support",
329 ] 333 ]
330 } 334 }
331 } 335 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698