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

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

Issue 2449783002: Rename ProducerFec to UlpfecGenerator. (Closed)
Patch Set: Rebase. 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/rtp_rtcp/BUILD.gn ('k') | webrtc/modules/rtp_rtcp/source/producer_fec.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) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 'source/rtp_sender_audio.h', 132 'source/rtp_sender_audio.h',
133 # Video Files 133 # Video Files
134 'source/fec_private_tables_random.h', 134 'source/fec_private_tables_random.h',
135 'source/fec_private_tables_bursty.h', 135 'source/fec_private_tables_bursty.h',
136 'source/flexfec_header_reader_writer.cc', 136 'source/flexfec_header_reader_writer.cc',
137 'source/flexfec_header_reader_writer.h', 137 'source/flexfec_header_reader_writer.h',
138 'source/forward_error_correction.cc', 138 'source/forward_error_correction.cc',
139 'source/forward_error_correction.h', 139 'source/forward_error_correction.h',
140 'source/forward_error_correction_internal.cc', 140 'source/forward_error_correction_internal.cc',
141 'source/forward_error_correction_internal.h', 141 'source/forward_error_correction_internal.h',
142 'source/producer_fec.cc',
143 'source/producer_fec.h',
144 'source/rtp_packet_history.cc', 142 'source/rtp_packet_history.cc',
145 'source/rtp_packet_history.h', 143 'source/rtp_packet_history.h',
146 'source/rtp_payload_registry.cc', 144 'source/rtp_payload_registry.cc',
147 'source/rtp_receiver_strategy.cc', 145 'source/rtp_receiver_strategy.cc',
148 'source/rtp_receiver_strategy.h', 146 'source/rtp_receiver_strategy.h',
149 'source/rtp_receiver_video.cc', 147 'source/rtp_receiver_video.cc',
150 'source/rtp_receiver_video.h', 148 'source/rtp_receiver_video.h',
151 'source/rtp_sender_video.cc', 149 'source/rtp_sender_video.cc',
152 'source/rtp_sender_video.h', 150 'source/rtp_sender_video.h',
153 'source/video_codec_information.h', 151 'source/video_codec_information.h',
154 'source/rtp_format.cc', 152 'source/rtp_format.cc',
155 'source/rtp_format.h', 153 'source/rtp_format.h',
156 'source/rtp_format_h264.cc', 154 'source/rtp_format_h264.cc',
157 'source/rtp_format_h264.h', 155 'source/rtp_format_h264.h',
158 'source/rtp_format_vp8.cc', 156 'source/rtp_format_vp8.cc',
159 'source/rtp_format_vp8.h', 157 'source/rtp_format_vp8.h',
160 'source/rtp_format_vp9.cc', 158 'source/rtp_format_vp9.cc',
161 'source/rtp_format_vp9.h', 159 'source/rtp_format_vp9.h',
162 'source/rtp_format_video_generic.cc', 160 'source/rtp_format_video_generic.cc',
163 'source/rtp_format_video_generic.h', 161 'source/rtp_format_video_generic.h',
162 'source/ulpfec_generator.cc',
163 'source/ulpfec_generator.h',
164 'source/ulpfec_header_reader_writer.cc', 164 'source/ulpfec_header_reader_writer.cc',
165 'source/ulpfec_header_reader_writer.h', 165 'source/ulpfec_header_reader_writer.h',
166 'source/vp8_partition_aggregator.cc', 166 'source/vp8_partition_aggregator.cc',
167 'source/vp8_partition_aggregator.h', 167 'source/vp8_partition_aggregator.h',
168 # Mocks 168 # Mocks
169 'mocks/mock_rtp_rtcp.h', 169 'mocks/mock_rtp_rtcp.h',
170 'mocks/mock_recovered_packet_receiver.h', 170 'mocks/mock_recovered_packet_receiver.h',
171 'source/mock/mock_rtp_payload_strategy.h', 171 'source/mock/mock_rtp_payload_strategy.h',
172 ], # source 172 ], # source
173 'conditions': [ 173 'conditions': [
174 ['enable_bwe_test_logging==1', { 174 ['enable_bwe_test_logging==1', {
175 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], 175 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ],
176 }, { 176 }, {
177 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], 177 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ],
178 }], 178 }],
179 ], 179 ],
180 # TODO(jschuh): Bug 1348: fix size_t to int truncations. 180 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
181 'msvs_disabled_warnings': [ 4267, ], 181 'msvs_disabled_warnings': [ 4267, ],
182 }, 182 },
183 ], 183 ],
184 } 184 }
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/BUILD.gn ('k') | webrtc/modules/rtp_rtcp/source/producer_fec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698