From 3a45f93fddb1527dfe4b84686e18651669cae47c Mon Sep 17 00:00:00 2001 From: cnderrauber Date: Sun, 29 May 2022 12:30:42 +0800 Subject: [PATCH] disable AV1 and VP9 by default (#735) --- pkg/config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index 57f0a232f..c059156bf 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -226,8 +226,8 @@ func NewConfig(confString string, c *cli.Context) (*Config, error) { {Mime: webrtc.MimeTypeOpus}, {Mime: webrtc.MimeTypeVP8}, {Mime: webrtc.MimeTypeH264}, - {Mime: webrtc.MimeTypeAV1}, - {Mime: webrtc.MimeTypeVP9}, + // {Mime: webrtc.MimeTypeAV1}, + // {Mime: webrtc.MimeTypeVP9}, }, EmptyTimeout: 5 * 60, },