mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-01-23 18:46:11 +00:00
8 lines
100 B
Go
8 lines
100 B
Go
package codec
|
|
|
|
type VideoCodec string
|
|
|
|
const (
|
|
H264 VideoCodec = "h264"
|
|
VPX VideoCodec = "vpx"
|
|
)
|