I parsed the HEVC stream with this code (after converting bytes to hex format)
string[] NALunit_string = Regex.Split(fsStringASHex, @"000001|00000001");
but after looking at the NAL units types, I can find some with reserved types. Is it normal?
I parsed the HEVC stream with this code (after converting bytes to hex format)
string[] NALunit_string = Regex.Split(fsStringASHex, @"000001|00000001");
but after looking at the NAL units types, I can find some with reserved types. Is it normal?