2015-02-25 11:50:17 +00:00
|
|
|
# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
#
|
|
|
|
|
# Use of this source code is governed by a BSD-style license
|
|
|
|
|
# that can be found in the LICENSE file in the root of the source
|
|
|
|
|
# tree. An additional intellectual property rights grant can be found
|
|
|
|
|
# in the file PATENTS. All contributing project authors may
|
|
|
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
'targets': [
|
|
|
|
|
{
|
|
|
|
|
'target_name': 'rtp_rtcp',
|
|
|
|
|
'type': 'static_library',
|
|
|
|
|
'dependencies': [
|
|
|
|
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
|
|
|
|
'<(webrtc_root)/modules/modules.gyp:remote_bitrate_estimator',
|
|
|
|
|
],
|
|
|
|
|
'sources': [
|
|
|
|
|
# Common
|
2015-11-04 08:31:52 +01:00
|
|
|
'include/fec_receiver.h',
|
|
|
|
|
'include/receive_statistics.h',
|
|
|
|
|
'include/remote_ntp_time_estimator.h',
|
|
|
|
|
'include/rtp_header_parser.h',
|
|
|
|
|
'include/rtp_payload_registry.h',
|
|
|
|
|
'include/rtp_receiver.h',
|
|
|
|
|
'include/rtp_rtcp.h',
|
|
|
|
|
'include/rtp_rtcp_defines.h',
|
2015-02-25 11:50:17 +00:00
|
|
|
'source/bitrate.cc',
|
|
|
|
|
'source/bitrate.h',
|
|
|
|
|
'source/byte_io.h',
|
|
|
|
|
'source/fec_receiver_impl.cc',
|
|
|
|
|
'source/fec_receiver_impl.h',
|
2015-07-10 18:10:05 -07:00
|
|
|
'source/packet_loss_stats.cc',
|
|
|
|
|
'source/packet_loss_stats.h',
|
2015-02-25 11:50:17 +00:00
|
|
|
'source/receive_statistics_impl.cc',
|
|
|
|
|
'source/receive_statistics_impl.h',
|
|
|
|
|
'source/remote_ntp_time_estimator.cc',
|
|
|
|
|
'source/rtcp_packet.cc',
|
|
|
|
|
'source/rtcp_packet.h',
|
2015-11-18 05:56:53 -08:00
|
|
|
'source/rtcp_packet/app.cc',
|
|
|
|
|
'source/rtcp_packet/app.h',
|
2015-11-22 09:03:11 -08:00
|
|
|
'source/rtcp_packet/bye.cc',
|
|
|
|
|
'source/rtcp_packet/bye.h',
|
2016-03-15 17:39:32 +01:00
|
|
|
'source/rtcp_packet/common_header.cc',
|
|
|
|
|
'source/rtcp_packet/common_header.h',
|
2016-01-13 02:03:04 -08:00
|
|
|
'source/rtcp_packet/compound_packet.cc',
|
|
|
|
|
'source/rtcp_packet/compound_packet.h',
|
2015-12-16 01:56:20 -08:00
|
|
|
'source/rtcp_packet/dlrr.cc',
|
|
|
|
|
'source/rtcp_packet/dlrr.h',
|
2015-11-13 07:33:20 -08:00
|
|
|
'source/rtcp_packet/extended_jitter_report.cc',
|
|
|
|
|
'source/rtcp_packet/extended_jitter_report.h',
|
2016-01-15 14:16:24 +01:00
|
|
|
'source/rtcp_packet/extended_reports.cc',
|
|
|
|
|
'source/rtcp_packet/extended_reports.h',
|
2016-01-15 13:19:53 +01:00
|
|
|
'source/rtcp_packet/fir.cc',
|
|
|
|
|
'source/rtcp_packet/fir.h',
|
2015-12-22 03:43:04 -08:00
|
|
|
'source/rtcp_packet/nack.cc',
|
|
|
|
|
'source/rtcp_packet/nack.h',
|
2015-11-27 05:36:09 -08:00
|
|
|
'source/rtcp_packet/pli.cc',
|
|
|
|
|
'source/rtcp_packet/pli.h',
|
|
|
|
|
'source/rtcp_packet/psfb.cc',
|
|
|
|
|
'source/rtcp_packet/psfb.h',
|
2016-02-09 05:57:51 -08:00
|
|
|
'source/rtcp_packet/rapid_resync_request.cc',
|
|
|
|
|
'source/rtcp_packet/rapid_resync_request.h',
|
2015-12-04 16:13:30 +01:00
|
|
|
'source/rtcp_packet/receiver_report.cc',
|
|
|
|
|
'source/rtcp_packet/receiver_report.h',
|
2016-01-15 12:40:15 +01:00
|
|
|
'source/rtcp_packet/remb.cc',
|
|
|
|
|
'source/rtcp_packet/remb.h',
|
2015-11-13 03:03:13 -08:00
|
|
|
'source/rtcp_packet/report_block.cc',
|
|
|
|
|
'source/rtcp_packet/report_block.h',
|
2016-01-15 15:21:21 +01:00
|
|
|
'source/rtcp_packet/rpsi.cc',
|
|
|
|
|
'source/rtcp_packet/rpsi.h',
|
2015-12-07 14:46:35 +01:00
|
|
|
'source/rtcp_packet/rrtr.cc',
|
|
|
|
|
'source/rtcp_packet/rrtr.h',
|
2015-12-22 03:43:04 -08:00
|
|
|
'source/rtcp_packet/rtpfb.cc',
|
|
|
|
|
'source/rtcp_packet/rtpfb.h',
|
2016-01-15 17:34:27 +01:00
|
|
|
'source/rtcp_packet/sdes.cc',
|
|
|
|
|
'source/rtcp_packet/sdes.h',
|
2016-01-18 02:43:32 -08:00
|
|
|
'source/rtcp_packet/sender_report.cc',
|
|
|
|
|
'source/rtcp_packet/sender_report.h',
|
2016-01-12 10:04:52 -08:00
|
|
|
'source/rtcp_packet/sli.cc',
|
|
|
|
|
'source/rtcp_packet/sli.h',
|
2016-02-04 07:33:39 -08:00
|
|
|
'source/rtcp_packet/tmmb_item.cc',
|
|
|
|
|
'source/rtcp_packet/tmmb_item.h',
|
2016-01-11 03:31:08 -08:00
|
|
|
'source/rtcp_packet/tmmbn.cc',
|
|
|
|
|
'source/rtcp_packet/tmmbn.h',
|
2016-01-11 11:49:19 -08:00
|
|
|
'source/rtcp_packet/tmmbr.cc',
|
|
|
|
|
'source/rtcp_packet/tmmbr.h',
|
2015-07-29 10:46:54 +02:00
|
|
|
'source/rtcp_packet/transport_feedback.cc',
|
|
|
|
|
'source/rtcp_packet/transport_feedback.h',
|
2015-12-15 07:06:36 -08:00
|
|
|
'source/rtcp_packet/voip_metric.cc',
|
|
|
|
|
'source/rtcp_packet/voip_metric.h',
|
2015-02-25 11:50:17 +00:00
|
|
|
'source/rtcp_receiver.cc',
|
|
|
|
|
'source/rtcp_receiver.h',
|
|
|
|
|
'source/rtcp_receiver_help.cc',
|
|
|
|
|
'source/rtcp_receiver_help.h',
|
|
|
|
|
'source/rtcp_sender.cc',
|
|
|
|
|
'source/rtcp_sender.h',
|
|
|
|
|
'source/rtcp_utility.cc',
|
|
|
|
|
'source/rtcp_utility.h',
|
|
|
|
|
'source/rtp_header_extension.cc',
|
|
|
|
|
'source/rtp_header_extension.h',
|
2016-04-20 05:25:10 -07:00
|
|
|
'source/rtp_header_extensions.cc',
|
|
|
|
|
'source/rtp_header_extensions.h',
|
|
|
|
|
'source/rtp_header_parser.cc',
|
|
|
|
|
'source/rtp_packet.cc',
|
|
|
|
|
'source/rtp_packet.h',
|
|
|
|
|
'source/rtp_packet_received.h',
|
|
|
|
|
'source/rtp_packet_to_send.h',
|
2015-02-25 11:50:17 +00:00
|
|
|
'source/rtp_receiver_impl.cc',
|
|
|
|
|
'source/rtp_receiver_impl.h',
|
2016-04-20 05:25:10 -07:00
|
|
|
'source/rtp_rtcp_config.h',
|
|
|
|
|
'source/rtp_rtcp_impl.cc',
|
|
|
|
|
'source/rtp_rtcp_impl.h',
|
2015-02-25 11:50:17 +00:00
|
|
|
'source/rtp_sender.cc',
|
|
|
|
|
'source/rtp_sender.h',
|
|
|
|
|
'source/rtp_utility.cc',
|
|
|
|
|
'source/rtp_utility.h',
|
|
|
|
|
'source/ssrc_database.cc',
|
|
|
|
|
'source/ssrc_database.h',
|
2016-03-09 15:14:35 +01:00
|
|
|
'source/time_util.cc',
|
|
|
|
|
'source/time_util.h',
|
2015-02-25 11:50:17 +00:00
|
|
|
'source/tmmbr_help.cc',
|
|
|
|
|
'source/tmmbr_help.h',
|
|
|
|
|
# Audio Files
|
|
|
|
|
'source/dtmf_queue.cc',
|
|
|
|
|
'source/dtmf_queue.h',
|
|
|
|
|
'source/rtp_receiver_audio.cc',
|
|
|
|
|
'source/rtp_receiver_audio.h',
|
|
|
|
|
'source/rtp_sender_audio.cc',
|
|
|
|
|
'source/rtp_sender_audio.h',
|
|
|
|
|
# Video Files
|
|
|
|
|
'source/fec_private_tables_random.h',
|
|
|
|
|
'source/fec_private_tables_bursty.h',
|
|
|
|
|
'source/forward_error_correction.cc',
|
|
|
|
|
'source/forward_error_correction.h',
|
|
|
|
|
'source/forward_error_correction_internal.cc',
|
|
|
|
|
'source/forward_error_correction_internal.h',
|
2015-09-24 15:06:50 +02:00
|
|
|
'source/h264_bitstream_parser.cc',
|
|
|
|
|
'source/h264_bitstream_parser.h',
|
2015-04-24 13:57:06 +02:00
|
|
|
'source/h264_sps_parser.cc',
|
|
|
|
|
'source/h264_sps_parser.h',
|
2015-02-25 11:50:17 +00:00
|
|
|
'source/producer_fec.cc',
|
|
|
|
|
'source/producer_fec.h',
|
|
|
|
|
'source/rtp_packet_history.cc',
|
|
|
|
|
'source/rtp_packet_history.h',
|
|
|
|
|
'source/rtp_payload_registry.cc',
|
|
|
|
|
'source/rtp_receiver_strategy.cc',
|
|
|
|
|
'source/rtp_receiver_strategy.h',
|
|
|
|
|
'source/rtp_receiver_video.cc',
|
|
|
|
|
'source/rtp_receiver_video.h',
|
|
|
|
|
'source/rtp_sender_video.cc',
|
|
|
|
|
'source/rtp_sender_video.h',
|
|
|
|
|
'source/video_codec_information.h',
|
|
|
|
|
'source/rtp_format.cc',
|
|
|
|
|
'source/rtp_format.h',
|
|
|
|
|
'source/rtp_format_h264.cc',
|
|
|
|
|
'source/rtp_format_h264.h',
|
|
|
|
|
'source/rtp_format_vp8.cc',
|
|
|
|
|
'source/rtp_format_vp8.h',
|
2015-07-28 04:02:54 -07:00
|
|
|
'source/rtp_format_vp9.cc',
|
|
|
|
|
'source/rtp_format_vp9.h',
|
2015-02-25 11:50:17 +00:00
|
|
|
'source/rtp_format_video_generic.cc',
|
|
|
|
|
'source/rtp_format_video_generic.h',
|
|
|
|
|
'source/vp8_partition_aggregator.cc',
|
|
|
|
|
'source/vp8_partition_aggregator.h',
|
|
|
|
|
# Mocks
|
|
|
|
|
'mocks/mock_rtp_rtcp.h',
|
|
|
|
|
'source/mock/mock_rtp_payload_strategy.h',
|
|
|
|
|
], # source
|
|
|
|
|
# TODO(jschuh): Bug 1348: fix size_t to int truncations.
|
|
|
|
|
'msvs_disabled_warnings': [ 4267, ],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
}
|