Merge pull request #15 from ZloyDyadka/patch-1

Fix invalid nal_unit_type of SPS/PPS
This commit is contained in:
Andrey Semochkin 2021-03-10 11:54:06 +03:00 committed by GitHub
commit 81abe951b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,8 @@ import (
const (
NALU_SEI = 6
NALU_PPS = 7
NALU_SPS = 8
NALU_SPS = 7
NALU_PPS = 8
NALU_AUD = 9
)