cellVideoOut: support interlaced scan modes

This commit is contained in:
Megamouse 2024-04-28 01:20:03 +02:00
parent 8e5fec785e
commit e164d462b4
13 changed files with 203 additions and 68 deletions

View file

@ -728,7 +728,14 @@ namespace rsx
void avconf::save(utils::serial& ar)
{
ar(*this);
[[maybe_unused]] const s32 version = GET_OR_USE_SERIALIZATION_VERSION(ar.is_writing(), rsx);
ar(stereo_mode, format, aspect, resolution_id, scanline_pitch, gamma, resolution_x, resolution_y, state);
if (ar.is_writing() || version >= 3)
{
ar(scan_mode);
}
}
void thread::capture_frame(const std::string &name)