* rocDecode/HEVC: Added error handling for the cases where there is no slice data in the decode payload. (#354)

이 커밋은 다음에 포함됨:
jeffqjiangNew
2024-05-14 14:07:23 -04:00
커밋한 사람 GitHub
부모 a086e4a3fa
커밋 1ac4cf7f52
+5
파일 보기
@@ -99,6 +99,11 @@ rocDecStatus HevcVideoParser::ParseVideoData(RocdecSourceDataPacket *p_data) {
SendSeiMsgPayload();
}
// Error handling: if there is no slice data, return gracefully.
if (num_slices_ == 0) {
return ROCDEC_SUCCESS;
}
// Decode the picture
if (SendPicForDecode() != PARSER_OK) {
ERR(STR("Failed to decode!"));