* rocDecode/HEVC: Fixed a regression introduced by PR#30. We should not abort parsing when we see NAL unit types that we are not interested in. Instead, we should just ignore and continue. (#48)

This commit is contained in:
jeffqjiangNew
2023-11-09 14:57:22 -05:00
zatwierdzone przez GitHub
rodzic 8ed03b5ad0
commit 80845837af
+1 -2
Wyświetl plik
@@ -655,8 +655,7 @@ bool HEVCVideoParser::ParseFrameData(const uint8_t* p_stream, uint32_t frame_dat
}
default:
ERR(STR("Error: Invalid NAL unit type"));
return false;
break;
}
}