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

Side by Side Diff: webrtc/modules/video_coding/video_coding.gypi

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/video_coding/packet_buffer_unittest.cc ('k') | no next file » | 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) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 { 9 {
10 'targets': [ 10 'targets': [
(...skipping 16 matching lines...) Expand all
27 'include/video_coding_defines.h', 27 'include/video_coding_defines.h',
28 28
29 # headers 29 # headers
30 'codec_database.h', 30 'codec_database.h',
31 'codec_timer.h', 31 'codec_timer.h',
32 'content_metrics_processing.h', 32 'content_metrics_processing.h',
33 'decoding_state.h', 33 'decoding_state.h',
34 'encoded_frame.h', 34 'encoded_frame.h',
35 'fec_tables_xor.h', 35 'fec_tables_xor.h',
36 'frame_buffer.h', 36 'frame_buffer.h',
37 'frame_object.h',
37 'generic_decoder.h', 38 'generic_decoder.h',
38 'generic_encoder.h', 39 'generic_encoder.h',
39 'histogram.h', 40 'histogram.h',
40 'inter_frame_delay.h', 41 'inter_frame_delay.h',
41 'internal_defines.h', 42 'internal_defines.h',
42 'jitter_buffer.h', 43 'jitter_buffer.h',
43 'jitter_buffer_common.h', 44 'jitter_buffer_common.h',
44 'jitter_estimator.h', 45 'jitter_estimator.h',
45 'media_opt_util.h', 46 'media_opt_util.h',
46 'media_optimization.h', 47 'media_optimization.h',
47 'nack_fec_tables.h', 48 'nack_fec_tables.h',
48 'nack_module.h', 49 'nack_module.h',
49 'packet.h', 50 'packet.h',
51 'packet_buffer.h',
50 'percentile_filter.h', 52 'percentile_filter.h',
51 'qm_select_data.h', 53 'qm_select_data.h',
52 'qm_select.h', 54 'qm_select.h',
53 'receiver.h', 55 'receiver.h',
54 'rtt_filter.h', 56 'rtt_filter.h',
55 'session_info.h', 57 'session_info.h',
56 'timestamp_map.h', 58 'timestamp_map.h',
57 'timing.h', 59 'timing.h',
58 'video_coding_impl.h', 60 'video_coding_impl.h',
59 61
60 # sources 62 # sources
61 'bitrate_adjuster.cc', 63 'bitrate_adjuster.cc',
62 'codec_database.cc', 64 'codec_database.cc',
63 'codec_timer.cc', 65 'codec_timer.cc',
64 'content_metrics_processing.cc', 66 'content_metrics_processing.cc',
65 'decoding_state.cc', 67 'decoding_state.cc',
66 'encoded_frame.cc', 68 'encoded_frame.cc',
67 'frame_buffer.cc', 69 'frame_buffer.cc',
70 'frame_object.cc',
68 'generic_decoder.cc', 71 'generic_decoder.cc',
69 'generic_encoder.cc', 72 'generic_encoder.cc',
70 'inter_frame_delay.cc', 73 'inter_frame_delay.cc',
71 'histogram.cc', 74 'histogram.cc',
72 'jitter_buffer.cc', 75 'jitter_buffer.cc',
73 'jitter_estimator.cc', 76 'jitter_estimator.cc',
74 'media_opt_util.cc', 77 'media_opt_util.cc',
75 'media_optimization.cc', 78 'media_optimization.cc',
76 'nack_module.cc', 79 'nack_module.cc',
77 'packet.cc', 80 'packet.cc',
81 'packet_buffer.cc',
78 'percentile_filter.cc', 82 'percentile_filter.cc',
79 'qm_select.cc', 83 'qm_select.cc',
80 'receiver.cc', 84 'receiver.cc',
81 'rtt_filter.cc', 85 'rtt_filter.cc',
82 'session_info.cc', 86 'session_info.cc',
83 'timestamp_map.cc', 87 'timestamp_map.cc',
84 'timing.cc', 88 'timing.cc',
85 'video_coding_impl.cc', 89 'video_coding_impl.cc',
86 'video_sender.cc', 90 'video_sender.cc',
87 'video_receiver.cc', 91 'video_receiver.cc',
88 ], # source 92 ], # source
89 # TODO(jschuh): Bug 1348: fix size_t to int truncations. 93 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
90 'msvs_disabled_warnings': [ 4267, ], 94 'msvs_disabled_warnings': [ 4267, ],
91 }, 95 },
92 ], 96 ],
93 } 97 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/packet_buffer_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698