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

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
)