Skip to content

Commit

Permalink
Merge pull request #69 from zjzhang-cn/fix_encoder_type
Browse files Browse the repository at this point in the history
fix bug : uppercase is used in android
  • Loading branch information
zjzhang-cn authored Apr 6, 2022
2 parents 5373ebf + 3787c14 commit 12e32a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mediaengine.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
)

const (
MimeTypeH264 = "video/h264"
MimeTypeH264 = "video/H264"
MimeTypeOpus = "audio/opus"
MimeTypeVP8 = "video/vp8"
MimeTypeVP9 = "video/vp9"
MimeTypeVP8 = "video/VP8"
MimeTypeVP9 = "video/VP9"
)

var (
Expand Down

0 comments on commit 12e32a5

Please sign in to comment.