2015-06-29 14:34:58 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015 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.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef MODULES_VIDEO_CODING_CODECS_H264_INCLUDE_H264_H_
|
|
|
|
|
#define MODULES_VIDEO_CODING_CODECS_H264_INCLUDE_H264_H_
|
2015-06-29 14:34:58 -07:00
|
|
|
|
2017-11-13 14:10:02 +01:00
|
|
|
#include <memory>
|
2020-03-29 22:17:00 +02:00
|
|
|
#include <string>
|
2017-09-29 17:54:09 +02:00
|
|
|
#include <vector>
|
|
|
|
|
|
2024-03-11 13:17:45 +01:00
|
|
|
#include "absl/base/nullability.h"
|
|
|
|
|
#include "api/environment/environment.h"
|
2021-08-19 12:13:06 +02:00
|
|
|
#include "api/video_codecs/h264_profile_level_id.h"
|
2022-05-05 14:37:05 +02:00
|
|
|
#include "api/video_codecs/scalability_mode.h"
|
2024-04-04 14:56:21 +02:00
|
|
|
#include "api/video_codecs/sdp_video_format.h"
|
|
|
|
|
#include "api/video_codecs/video_decoder.h"
|
2024-03-11 13:17:45 +01:00
|
|
|
#include "api/video_codecs/video_encoder.h"
|
2024-04-04 14:56:21 +02:00
|
|
|
#include "modules/video_coding/codecs/h264/include/h264_globals.h"
|
2018-10-16 14:13:50 +02:00
|
|
|
#include "rtc_base/system/rtc_export.h"
|
2015-06-29 14:34:58 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2020-03-29 22:17:00 +02:00
|
|
|
// Creates an H264 SdpVideoFormat entry with specified paramters.
|
|
|
|
|
RTC_EXPORT SdpVideoFormat
|
2021-04-19 09:09:26 +02:00
|
|
|
CreateH264Format(H264Profile profile,
|
|
|
|
|
H264Level level,
|
2022-07-05 21:06:28 +09:00
|
|
|
const std::string& packetization_mode,
|
|
|
|
|
bool add_scalability_modes = false);
|
2020-03-29 22:17:00 +02:00
|
|
|
|
2016-02-03 05:09:37 -08:00
|
|
|
// Set to disable the H.264 encoder/decoder implementations that are provided if
|
2021-08-09 13:02:57 +02:00
|
|
|
// `rtc_use_h264` build flag is true (if false, this function does nothing).
|
2016-02-03 05:09:37 -08:00
|
|
|
// This function should only be called before or during WebRTC initialization
|
|
|
|
|
// and is not thread-safe.
|
2018-10-16 14:13:50 +02:00
|
|
|
RTC_EXPORT void DisableRtcUseH264();
|
2016-02-03 05:09:37 -08:00
|
|
|
|
2022-02-08 07:00:16 -08:00
|
|
|
// Returns a vector with all supported internal H264 encode profiles that we can
|
2017-09-29 17:54:09 +02:00
|
|
|
// negotiate in SDP, in order of preference.
|
2022-07-05 21:06:28 +09:00
|
|
|
std::vector<SdpVideoFormat> SupportedH264Codecs(
|
|
|
|
|
bool add_scalability_modes = false);
|
2017-09-29 17:54:09 +02:00
|
|
|
|
2022-02-08 07:00:16 -08:00
|
|
|
// Returns a vector with all supported internal H264 decode profiles that we can
|
|
|
|
|
// negotiate in SDP, in order of preference. This will be available for receive
|
|
|
|
|
// only connections.
|
|
|
|
|
std::vector<SdpVideoFormat> SupportedH264DecoderCodecs();
|
|
|
|
|
|
2024-04-04 14:56:21 +02:00
|
|
|
class RTC_EXPORT H264Encoder {
|
2015-06-29 14:34:58 -07:00
|
|
|
public:
|
2016-01-27 01:36:03 -08:00
|
|
|
// If H.264 is supported (any implementation).
|
2015-06-29 14:34:58 -07:00
|
|
|
static bool IsSupported();
|
2022-05-05 14:37:05 +02:00
|
|
|
static bool SupportsScalabilityMode(ScalabilityMode scalability_mode);
|
2015-06-29 14:34:58 -07:00
|
|
|
};
|
|
|
|
|
|
2024-03-11 13:17:45 +01:00
|
|
|
struct H264EncoderSettings {
|
2024-03-22 13:33:59 +01:00
|
|
|
// Use factory function rather than constructor to allow to create
|
|
|
|
|
// `H264EncoderSettings` with designated initializers.
|
|
|
|
|
static H264EncoderSettings Parse(const SdpVideoFormat& format);
|
|
|
|
|
|
2024-03-11 13:17:45 +01:00
|
|
|
H264PacketizationMode packetization_mode =
|
|
|
|
|
H264PacketizationMode::NonInterleaved;
|
|
|
|
|
};
|
|
|
|
|
absl::Nonnull<std::unique_ptr<VideoEncoder>> CreateH264Encoder(
|
|
|
|
|
const Environment& env,
|
|
|
|
|
H264EncoderSettings settings = {});
|
|
|
|
|
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT H264Decoder : public VideoDecoder {
|
2015-06-29 14:34:58 -07:00
|
|
|
public:
|
2017-11-13 14:10:02 +01:00
|
|
|
static std::unique_ptr<H264Decoder> Create();
|
2015-06-29 14:34:58 -07:00
|
|
|
static bool IsSupported();
|
|
|
|
|
|
|
|
|
|
~H264Decoder() override {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // MODULES_VIDEO_CODING_CODECS_H264_INCLUDE_H264_H_
|