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 |
(...skipping 11 matching lines...) Expand all Loading... |
22 "decoding_state.h", | 22 "decoding_state.h", |
23 "encoded_frame.cc", | 23 "encoded_frame.cc", |
24 "encoded_frame.h", | 24 "encoded_frame.h", |
25 "fec_tables_xor.h", | 25 "fec_tables_xor.h", |
26 "frame_buffer.cc", | 26 "frame_buffer.cc", |
27 "frame_buffer.h", | 27 "frame_buffer.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", |
| 33 "histogram.h", |
32 "include/video_coding.h", | 34 "include/video_coding.h", |
33 "include/video_coding_defines.h", | 35 "include/video_coding_defines.h", |
34 "inter_frame_delay.cc", | 36 "inter_frame_delay.cc", |
35 "inter_frame_delay.h", | 37 "inter_frame_delay.h", |
36 "internal_defines.h", | 38 "internal_defines.h", |
37 "jitter_buffer.cc", | 39 "jitter_buffer.cc", |
38 "jitter_buffer.h", | 40 "jitter_buffer.h", |
39 "jitter_buffer_common.h", | 41 "jitter_buffer_common.h", |
40 "jitter_estimator.cc", | 42 "jitter_estimator.cc", |
41 "jitter_estimator.h", | 43 "jitter_estimator.h", |
42 "media_opt_util.cc", | 44 "media_opt_util.cc", |
43 "media_opt_util.h", | 45 "media_opt_util.h", |
44 "media_optimization.cc", | 46 "media_optimization.cc", |
45 "media_optimization.h", | 47 "media_optimization.h", |
46 "nack_fec_tables.h", | 48 "nack_fec_tables.h", |
| 49 "nack_module.cc", |
| 50 "nack_module.h", |
47 "packet.cc", | 51 "packet.cc", |
48 "packet.h", | 52 "packet.h", |
49 "qm_select.cc", | 53 "qm_select.cc", |
50 "qm_select.h", | 54 "qm_select.h", |
51 "qm_select_data.h", | 55 "qm_select_data.h", |
52 "receiver.cc", | 56 "receiver.cc", |
53 "receiver.h", | 57 "receiver.h", |
54 "rtt_filter.cc", | 58 "rtt_filter.cc", |
55 "rtt_filter.h", | 59 "rtt_filter.h", |
56 "session_info.cc", | 60 "session_info.cc", |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 | 253 |
250 deps = [ | 254 deps = [ |
251 ":video_coding_utility", | 255 ":video_coding_utility", |
252 "../../common_video", | 256 "../../common_video", |
253 "../../system_wrappers", | 257 "../../system_wrappers", |
254 ] | 258 ] |
255 if (rtc_build_libvpx) { | 259 if (rtc_build_libvpx) { |
256 deps += [ rtc_libvpx_dir ] | 260 deps += [ rtc_libvpx_dir ] |
257 } | 261 } |
258 } | 262 } |
OLD | NEW |