Bug 1924098 (MOZ) - upstream ParseSdpForH264ProfileLevelId now returns std::optional instead of absl:optional

This commit is contained in:
Michael Froman 2024-10-14 16:48:31 -05:00
parent 6e538dfe58
commit e56ec45c5f

View File

@ -76,7 +76,7 @@ static const char* PacketModeStr(const webrtc::CodecSpecificInfo& aInfo) {
static std::pair<H264_PROFILE, H264_LEVEL> ConvertProfileLevel(
const webrtc::CodecParameterMap& aParameters) {
const absl::optional<webrtc::H264ProfileLevelId> profileLevel =
const std::optional<webrtc::H264ProfileLevelId> profileLevel =
webrtc::ParseSdpForH264ProfileLevelId(aParameters);
if (!profileLevel) {