We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b372fce commit 5e0ad22Copy full SHA for 5e0ad22
lib/ex_webrtc/peer_connection/configuration.ex
@@ -24,6 +24,11 @@ defmodule ExWebRTC.PeerConnection.Configuration do
24
]
25
26
@default_video_codecs [
27
+ %RTPCodecParameters{
28
+ payload_type: 96,
29
+ mime_type: "video/VP8",
30
+ clock_rate: 90_000
31
+ },
32
%RTPCodecParameters{
33
payload_type: 98,
34
mime_type: "video/H264",
@@ -46,11 +51,6 @@ defmodule ExWebRTC.PeerConnection.Configuration do
46
51
profile_level_id: 0x42E01F
47
52
}
48
53
},
49
- %RTPCodecParameters{
50
- payload_type: 96,
- mime_type: "video/VP8",
- clock_rate: 90_000
- },
54
55
payload_type: 45,
56
mime_type: "video/AV1",
0 commit comments