cloud-game/go.mod
sergystepanov c7e67d5c3e
Use just one video/audio RTP codec (#298)
Negate exact matches with multiple video codecs when a negotiated list of codecs will be stripped of partially matched ones.
As an example, if we want to use the h264 codec along with vp8 then in some browsers we'll have the exact match on vp8 and some partial matches on h264 (different browsers have different SDP Fmtp) which leads to the forced use of vp8 when the app is streaming h264.
As a workaround, we should add only one codec (vp8 or h264) into the list.
2021-03-19 17:25:48 +03:00

36 lines
1.4 KiB
Modula-2
Vendored

module github.com/giongto35/cloud-game/v2
go 1.13
require (
cloud.google.com/go/storage v1.14.0
github.com/cavaliercoder/grab v1.0.1-0.20201108051000-98a5bfe305ec
github.com/faiface/mainthread v0.0.0-20171120011319-8b78f0a41ae3
github.com/fsnotify/fsnotify v1.4.9
github.com/go-gl/gl v0.0.0-20210315015930-ae072cafe09d
github.com/gofrs/flock v0.8.0
github.com/gofrs/uuid v4.0.0+incompatible
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/golang/protobuf v1.5.1 // indirect
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/kkyr/fig v0.2.0
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/pion/interceptor v0.0.11
github.com/pion/rtp v1.6.2
github.com/pion/webrtc/v3 v3.0.16
github.com/prometheus/client_golang v1.10.0
github.com/prometheus/common v0.19.0 // indirect
github.com/sergystepanov/x264-go/v2 v2.0.0-20210221160055-cd2aaf7070fc
github.com/spf13/pflag v1.0.5
github.com/veandco/go-sdl2 v0.4.5
golang.org/x/crypto v0.0.0-20210317152858-513c2a44f670
golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb
golang.org/x/mod v0.4.2 // indirect
golang.org/x/sys v0.0.0-20210319071255-635bc2c9138d // indirect
google.golang.org/api v0.42.0 // indirect
google.golang.org/genproto v0.0.0-20210318145829-90b20ab00860 // indirect
gopkg.in/hraban/opus.v2 v2.0.0-20201025103112-d779bb1cc5a2
gopkg.in/yaml.v2 v2.4.0 // indirect
)