1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 18:25:58 +01:00

Remove H.264 Baseline profile.

Some devices only support the Constrained Baseline profile.
This commit is contained in:
Juliusz Chroboczek 2022-03-22 01:03:56 +01:00
parent a183ac4bcd
commit fd09564c05

View file

@ -269,11 +269,6 @@ func codecsFromName(name string) ([]webrtc.RTPCodecParameters, error) {
} }
case "h264": case "h264":
codecs = []webrtc.RTPCodecCapability{ codecs = []webrtc.RTPCodecCapability{
{
"video/H264", 90000, 0,
"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42001f",
fb,
},
{ {
"video/H264", 90000, 0, "video/H264", 90000, 0,
"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f", "level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f",