Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions video/software/src/decoder/vp6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ impl VideoDecoder for Vp6Decoder {
.map_err(Vp6Error::DecoderError)?;

let video_info = NAVideoInfo::new(
header.disp_w as usize * 16,
header.disp_h as usize * 16,
header.mb_w as usize * 16,
header.mb_h as usize * 16,
true,
if self.with_alpha {
VP_YUVA420_FORMAT
Expand Down
Loading