mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +00:00
Bug 1924098 (MOZ) - upstream ParseSdpForH264ProfileLevelId now returns std::optional instead of absl:optional
This commit is contained in:
parent
6e538dfe58
commit
e56ec45c5f
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user