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

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

Issue 1772383002: Packet buffer for the new jitter buffer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: More parenthesis for the buildbots! Created 4 years, 8 months 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/modules.gyp ('k') | webrtc/modules/video_coding/frame_object.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
11 source_set("video_coding") { 11 source_set("video_coding") {
12 sources = [ 12 sources = [
13 "bitrate_adjuster.cc", 13 "bitrate_adjuster.cc",
14 "bitrate_adjuster.h", 14 "bitrate_adjuster.h",
15 "codec_database.cc", 15 "codec_database.cc",
16 "codec_database.h", 16 "codec_database.h",
17 "codec_timer.cc", 17 "codec_timer.cc",
18 "codec_timer.h", 18 "codec_timer.h",
19 "content_metrics_processing.cc", 19 "content_metrics_processing.cc",
20 "content_metrics_processing.h", 20 "content_metrics_processing.h",
21 "decoding_state.cc", 21 "decoding_state.cc",
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 "frame_object.cc",
29 "frame_object.h",
28 "generic_decoder.cc", 30 "generic_decoder.cc",
29 "generic_decoder.h", 31 "generic_decoder.h",
30 "generic_encoder.cc", 32 "generic_encoder.cc",
31 "generic_encoder.h", 33 "generic_encoder.h",
32 "histogram.cc", 34 "histogram.cc",
33 "histogram.h", 35 "histogram.h",
34 "include/video_coding.h", 36 "include/video_coding.h",
35 "include/video_coding_defines.h", 37 "include/video_coding_defines.h",
36 "inter_frame_delay.cc", 38 "inter_frame_delay.cc",
37 "inter_frame_delay.h", 39 "inter_frame_delay.h",
38 "internal_defines.h", 40 "internal_defines.h",
39 "jitter_buffer.cc", 41 "jitter_buffer.cc",
40 "jitter_buffer.h", 42 "jitter_buffer.h",
41 "jitter_buffer_common.h", 43 "jitter_buffer_common.h",
42 "jitter_estimator.cc", 44 "jitter_estimator.cc",
43 "jitter_estimator.h", 45 "jitter_estimator.h",
44 "media_opt_util.cc", 46 "media_opt_util.cc",
45 "media_opt_util.h", 47 "media_opt_util.h",
46 "media_optimization.cc", 48 "media_optimization.cc",
47 "media_optimization.h", 49 "media_optimization.h",
48 "nack_fec_tables.h", 50 "nack_fec_tables.h",
49 "nack_module.cc", 51 "nack_module.cc",
50 "nack_module.h", 52 "nack_module.h",
51 "packet.cc", 53 "packet.cc",
52 "packet.h", 54 "packet.h",
55 "packet_buffer.cc",
56 "packet_buffer.h",
53 "percentile_filter.cc", 57 "percentile_filter.cc",
54 "percentile_filter.h", 58 "percentile_filter.h",
55 "qm_select.cc", 59 "qm_select.cc",
56 "qm_select.h", 60 "qm_select.h",
57 "qm_select_data.h", 61 "qm_select_data.h",
58 "receiver.cc", 62 "receiver.cc",
59 "receiver.h", 63 "receiver.h",
60 "rtt_filter.cc", 64 "rtt_filter.cc",
61 "rtt_filter.h", 65 "rtt_filter.h",
62 "session_info.cc", 66 "session_info.cc",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 259
256 deps = [ 260 deps = [
257 ":video_coding_utility", 261 ":video_coding_utility",
258 "../../common_video", 262 "../../common_video",
259 "../../system_wrappers", 263 "../../system_wrappers",
260 ] 264 ]
261 if (rtc_build_libvpx) { 265 if (rtc_build_libvpx) {
262 deps += [ rtc_libvpx_dir ] 266 deps += [ rtc_libvpx_dir ]
263 } 267 }
264 } 268 }
OLDNEW
« no previous file with comments | « webrtc/modules/modules.gyp ('k') | webrtc/modules/video_coding/frame_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698