* rocDecode/AV1: Fixed a surface size issue in upscaling cases. (#399)
This commit is contained in:
zatwierdzone przez
GitHub
rodzic
4f8191edc0
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user