Fix invalid nal_unit_type of SPS/PPS

This commit is contained in:
Ilya Galimyanov 2021-03-04 17:35:55 +03:00 committed by GitHub
parent f6de3acad0
commit bb4dee30f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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