* 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)
[ROCm/rocdecode commit: 80845837af]
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
7db33e7837
Коммит
0b39cc1c2c
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user