* rocDecode/AV1: Fixed a surface size issue in upscaling cases. (#399)
[ROCm/rocdecode commit: d0924490a8]
이 커밋은 다음에 포함됨:
@@ -1130,7 +1130,7 @@ ParserResult Av1VideoParser::ParseUncompressedHeader(uint8_t *p_stream, size_t s
|
||||
}
|
||||
|
||||
if ( pic_width_ != p_frame_header->frame_size.frame_width || pic_height_ != p_frame_header->frame_size.frame_height) {
|
||||
pic_width_ = p_frame_header->frame_size.frame_width;
|
||||
pic_width_ = p_frame_header->frame_size.upscaled_width;
|
||||
pic_height_ = p_frame_header->frame_size.frame_height;
|
||||
new_seq_activated_ = true;
|
||||
}
|
||||
|
||||
새 이슈에서 참조
사용자 차단