OLD | NEW |
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 |
11 source_set("video_coding") { | 11 source_set("video_coding") { |
12 sources = [ | 12 sources = [ |
13 "codec_database.cc", | 13 "codec_database.cc", |
14 "codec_database.h", | 14 "codec_database.h", |
15 "codec_timer.cc", | 15 "codec_timer.cc", |
16 "codec_timer.h", | 16 "codec_timer.h", |
17 "content_metrics_processing.cc", | |
18 "content_metrics_processing.h", | |
19 "decoding_state.cc", | 17 "decoding_state.cc", |
20 "decoding_state.h", | 18 "decoding_state.h", |
21 "encoded_frame.cc", | 19 "encoded_frame.cc", |
22 "encoded_frame.h", | 20 "encoded_frame.h", |
23 "fec_tables_xor.h", | 21 "fec_tables_xor.h", |
24 "frame_buffer.cc", | 22 "frame_buffer.cc", |
25 "frame_buffer.h", | 23 "frame_buffer.h", |
26 "frame_object.cc", | 24 "frame_object.cc", |
27 "frame_object.h", | 25 "frame_object.h", |
28 "generic_decoder.cc", | 26 "generic_decoder.cc", |
(...skipping 18 matching lines...) Expand all Loading... |
47 "media_optimization.h", | 45 "media_optimization.h", |
48 "nack_fec_tables.h", | 46 "nack_fec_tables.h", |
49 "nack_module.cc", | 47 "nack_module.cc", |
50 "nack_module.h", | 48 "nack_module.h", |
51 "packet.cc", | 49 "packet.cc", |
52 "packet.h", | 50 "packet.h", |
53 "packet_buffer.cc", | 51 "packet_buffer.cc", |
54 "packet_buffer.h", | 52 "packet_buffer.h", |
55 "percentile_filter.cc", | 53 "percentile_filter.cc", |
56 "percentile_filter.h", | 54 "percentile_filter.h", |
57 "qm_select.cc", | |
58 "qm_select.h", | |
59 "qm_select_data.h", | |
60 "receiver.cc", | 55 "receiver.cc", |
61 "receiver.h", | 56 "receiver.h", |
62 "rtt_filter.cc", | 57 "rtt_filter.cc", |
63 "rtt_filter.h", | 58 "rtt_filter.h", |
64 "session_info.cc", | 59 "session_info.cc", |
65 "session_info.h", | 60 "session_info.h", |
66 "timestamp_map.cc", | 61 "timestamp_map.cc", |
67 "timestamp_map.h", | 62 "timestamp_map.h", |
68 "timing.cc", | 63 "timing.cc", |
69 "timing.h", | 64 "timing.h", |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 | 254 |
260 deps = [ | 255 deps = [ |
261 ":video_coding_utility", | 256 ":video_coding_utility", |
262 "../../common_video", | 257 "../../common_video", |
263 "../../system_wrappers", | 258 "../../system_wrappers", |
264 ] | 259 ] |
265 if (rtc_build_libvpx) { | 260 if (rtc_build_libvpx) { |
266 deps += [ rtc_libvpx_dir ] | 261 deps += [ rtc_libvpx_dir ] |
267 } | 262 } |
268 } | 263 } |
OLD | NEW |