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

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

Issue 2489843002: Revert of Extract bitrate allocation of spatial/temporal layers out of codec impl. (Closed)
Patch Set: 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
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 15 matching lines...) Expand all
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 "h264_sps_pps_tracker.cc", 32 "h264_sps_pps_tracker.cc",
33 "h264_sps_pps_tracker.h", 33 "h264_sps_pps_tracker.h",
34 "histogram.cc", 34 "histogram.cc",
35 "histogram.h", 35 "histogram.h",
36 "include/video_codec_initializer.h",
37 "include/video_coding.h", 36 "include/video_coding.h",
38 "include/video_coding_defines.h", 37 "include/video_coding_defines.h",
39 "inter_frame_delay.cc", 38 "inter_frame_delay.cc",
40 "inter_frame_delay.h", 39 "inter_frame_delay.h",
41 "internal_defines.h", 40 "internal_defines.h",
42 "jitter_buffer.cc", 41 "jitter_buffer.cc",
43 "jitter_buffer.h", 42 "jitter_buffer.h",
44 "jitter_buffer_common.h", 43 "jitter_buffer_common.h",
45 "jitter_estimator.cc", 44 "jitter_estimator.cc",
46 "jitter_estimator.h", 45 "jitter_estimator.h",
(...skipping 17 matching lines...) Expand all
64 "rtp_frame_reference_finder.cc", 63 "rtp_frame_reference_finder.cc",
65 "rtp_frame_reference_finder.h", 64 "rtp_frame_reference_finder.h",
66 "rtt_filter.cc", 65 "rtt_filter.cc",
67 "rtt_filter.h", 66 "rtt_filter.h",
68 "session_info.cc", 67 "session_info.cc",
69 "session_info.h", 68 "session_info.h",
70 "timestamp_map.cc", 69 "timestamp_map.cc",
71 "timestamp_map.h", 70 "timestamp_map.h",
72 "timing.cc", 71 "timing.cc",
73 "timing.h", 72 "timing.h",
74 "video_codec_initializer.cc",
75 "video_coding_impl.cc", 73 "video_coding_impl.cc",
76 "video_coding_impl.h", 74 "video_coding_impl.h",
77 "video_receiver.cc", 75 "video_receiver.cc",
78 "video_sender.cc", 76 "video_sender.cc",
79 ] 77 ]
80 78
81 # TODO(jschuh): Bug 1348: fix this warning. 79 # TODO(jschuh): Bug 1348: fix this warning.
82 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 80 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
83 81
84 if (!build_with_chromium && is_clang) { 82 if (!build_with_chromium && is_clang) {
85 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 83 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
86 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 84 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
87 } 85 }
88 86
89 deps = [ 87 deps = [
90 ":video_coding_utility", 88 ":video_coding_utility",
91 ":webrtc_h264", 89 ":webrtc_h264",
92 ":webrtc_i420", 90 ":webrtc_i420",
93 ":webrtc_vp8", 91 ":webrtc_vp8",
94 ":webrtc_vp9", 92 ":webrtc_vp9",
95 "../..:webrtc_common", 93 "../..:webrtc_common",
96 "../../common_video", 94 "../../common_video",
97 "../../system_wrappers", 95 "../../system_wrappers",
98 ] 96 ]
99 } 97 }
100 98
101 rtc_static_library("video_coding_utility") { 99 rtc_static_library("video_coding_utility") {
102 sources = [ 100 sources = [
103 "utility/default_video_bitrate_allocator.cc",
104 "utility/default_video_bitrate_allocator.h",
105 "utility/frame_dropper.cc", 101 "utility/frame_dropper.cc",
106 "utility/frame_dropper.h", 102 "utility/frame_dropper.h",
107 "utility/ivf_file_writer.cc", 103 "utility/ivf_file_writer.cc",
108 "utility/ivf_file_writer.h", 104 "utility/ivf_file_writer.h",
109 "utility/moving_average.cc", 105 "utility/moving_average.cc",
110 "utility/moving_average.h", 106 "utility/moving_average.h",
111 "utility/qp_parser.cc", 107 "utility/qp_parser.cc",
112 "utility/qp_parser.h", 108 "utility/qp_parser.h",
113 "utility/quality_scaler.cc", 109 "utility/quality_scaler.cc",
114 "utility/quality_scaler.h", 110 "utility/quality_scaler.h",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 if (!build_with_chromium && is_clang) { 263 if (!build_with_chromium && is_clang) {
268 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 264 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
269 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 265 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
270 } 266 }
271 267
272 deps = [ 268 deps = [
273 "../../test:test_support", 269 "../../test:test_support",
274 ] 270 ]
275 } 271 }
276 } 272 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698