early-access version 2115
This commit is contained in:
parent
8154ff5225
commit
3f003b314e
@ -1,7 +1,7 @@
|
|||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 2114.
|
This is the source code for early-access 2115.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ enum class VideoPixelFormat : u64_le {
|
|||||||
RGBX8 = 0x23,
|
RGBX8 = 0x23,
|
||||||
Yuv420 = 0x44,
|
Yuv420 = 0x44,
|
||||||
};
|
};
|
||||||
} // namespace
|
} // Anonymous namespace
|
||||||
|
|
||||||
union VicConfig {
|
union VicConfig {
|
||||||
u64_le raw{};
|
u64_le raw{};
|
||||||
@ -124,6 +124,7 @@ void Vic::WriteRGBFrame(const AVFrame* frame, const VicConfig& config) {
|
|||||||
frame->height, target_format, 0, nullptr, nullptr, nullptr);
|
frame->height, target_format, 0, nullptr, nullptr, nullptr);
|
||||||
scaler_width = frame->width;
|
scaler_width = frame->width;
|
||||||
scaler_height = frame->height;
|
scaler_height = frame->height;
|
||||||
|
converted_frame_buffer.reset();
|
||||||
}
|
}
|
||||||
// Get Converted frame
|
// Get Converted frame
|
||||||
const u32 width = static_cast<u32>(frame->width);
|
const u32 width = static_cast<u32>(frame->width);
|
||||||
|
Loading…
Reference in New Issue
Block a user