/* * Copyright (c) 2017 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. */ #ifndef CALL_RTP_CONFIG_H_ #define CALL_RTP_CONFIG_H_ #include <stddef.h> #include <stdint.h> #include <string> #include <vector> #include "absl/types/optional.h" #include "api/rtp_headers.h" #include "api/rtp_parameters.h" namespace webrtc { // Currently only VP8/VP9 specific. struct RtpPayloadState { … }; // Settings for LNTF (LossNotification). Still highly experimental. struct LntfConfig { … }; // Settings for NACK, see RFC 4585 for details. struct NackConfig { … }; // Settings for ULPFEC forward error correction. // Set the payload types to '-1' to disable. struct UlpfecConfig { … }; static const size_t kDefaultMaxPacketSize = …; // TCP over IPv4. struct RtpConfig { … }; } // namespace webrtc #endif // CALL_RTP_CONFIG_H_