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

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

Issue 2260803002: Generalize FEC header formatting. (pt. 4) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 # Audio Files 125 # Audio Files
126 'source/dtmf_queue.cc', 126 'source/dtmf_queue.cc',
127 'source/dtmf_queue.h', 127 'source/dtmf_queue.h',
128 'source/rtp_receiver_audio.cc', 128 'source/rtp_receiver_audio.cc',
129 'source/rtp_receiver_audio.h', 129 'source/rtp_receiver_audio.h',
130 'source/rtp_sender_audio.cc', 130 'source/rtp_sender_audio.cc',
131 'source/rtp_sender_audio.h', 131 'source/rtp_sender_audio.h',
132 # Video Files 132 # Video Files
133 'source/fec_private_tables_random.h', 133 'source/fec_private_tables_random.h',
134 'source/fec_private_tables_bursty.h', 134 'source/fec_private_tables_bursty.h',
135 'source/flexfec_header_reader_writer.cc',
136 'source/flexfec_header_reader_writer.h',
135 'source/forward_error_correction.cc', 137 'source/forward_error_correction.cc',
136 'source/forward_error_correction.h', 138 'source/forward_error_correction.h',
137 'source/forward_error_correction_internal.cc', 139 'source/forward_error_correction_internal.cc',
138 'source/forward_error_correction_internal.h', 140 'source/forward_error_correction_internal.h',
139 'source/producer_fec.cc', 141 'source/producer_fec.cc',
140 'source/producer_fec.h', 142 'source/producer_fec.h',
141 'source/rtp_packet_history.cc', 143 'source/rtp_packet_history.cc',
142 'source/rtp_packet_history.h', 144 'source/rtp_packet_history.h',
143 'source/rtp_payload_registry.cc', 145 'source/rtp_payload_registry.cc',
144 'source/rtp_receiver_strategy.cc', 146 'source/rtp_receiver_strategy.cc',
145 'source/rtp_receiver_strategy.h', 147 'source/rtp_receiver_strategy.h',
146 'source/rtp_receiver_video.cc', 148 'source/rtp_receiver_video.cc',
147 'source/rtp_receiver_video.h', 149 'source/rtp_receiver_video.h',
148 'source/rtp_sender_video.cc', 150 'source/rtp_sender_video.cc',
149 'source/rtp_sender_video.h', 151 'source/rtp_sender_video.h',
150 'source/video_codec_information.h', 152 'source/video_codec_information.h',
151 'source/rtp_format.cc', 153 'source/rtp_format.cc',
152 'source/rtp_format.h', 154 'source/rtp_format.h',
153 'source/rtp_format_h264.cc', 155 'source/rtp_format_h264.cc',
154 'source/rtp_format_h264.h', 156 'source/rtp_format_h264.h',
155 'source/rtp_format_vp8.cc', 157 'source/rtp_format_vp8.cc',
156 'source/rtp_format_vp8.h', 158 'source/rtp_format_vp8.h',
157 'source/rtp_format_vp9.cc', 159 'source/rtp_format_vp9.cc',
158 'source/rtp_format_vp9.h', 160 'source/rtp_format_vp9.h',
159 'source/rtp_format_video_generic.cc', 161 'source/rtp_format_video_generic.cc',
160 'source/rtp_format_video_generic.h', 162 'source/rtp_format_video_generic.h',
163 'source/ulpfec_header_reader_writer.cc',
164 'source/ulpfec_header_reader_writer.h',
161 'source/vp8_partition_aggregator.cc', 165 'source/vp8_partition_aggregator.cc',
162 'source/vp8_partition_aggregator.h', 166 'source/vp8_partition_aggregator.h',
163 # Mocks 167 # Mocks
164 'mocks/mock_rtp_rtcp.h', 168 'mocks/mock_rtp_rtcp.h',
165 'source/mock/mock_rtp_payload_strategy.h', 169 'source/mock/mock_rtp_payload_strategy.h',
166 ], # source 170 ], # source
167 # TODO(jschuh): Bug 1348: fix size_t to int truncations. 171 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
168 'msvs_disabled_warnings': [ 4267, ], 172 'msvs_disabled_warnings': [ 4267, ],
169 }, 173 },
170 ], 174 ],
171 } 175 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698