fix: uint16 not int16

This commit is contained in:
Derrick Hammer 2024-03-01 03:08:37 -05:00
parent 52c5af78a9
commit b813f8599f
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ func (mmd *MediaFormat) DecodeMsgpack(dec *msgpack.Decoder) error {
case 12: case 12:
mmd.Languages = value.([]string) mmd.Languages = value.([]string)
case 13: case 13:
mmd.Asr = int(value.(int16)) mmd.Asr = int(value.(uint16))
case 14: case 14:
mmd.Fps = value.(int) mmd.Fps = value.(int)
case 15: case 15: