--
v2: kernelbase: Implement activation context switching for fibers.
ntdll: Implement RtlFreeActivationContextStack().
ntdll: Use ActivationContextStackPointer instead of referencing ActivationContextStack directly.
ntdll: Store current activation context stack pointer into a local variable.
ntdll: Factor out reading current activation context into a helper function.
kernel32/tests: Test for activation context switching between fibers.
https://gitlab.winehq.org/wine/wine/-/merge_requests/2435
The app I'm considering opens a video_processor on its own, with
a NV12 format on input and a ARGB32 format on output.
Tested on Windows: the samples are flipped vertically. While Wine
keeps them untouched.
So added a videoflip in the video processor to be activated when needed.
Current activation is based on RGB vs non RGB input/output formats.
Set as draft as if somehow related to MR!2159.
Comments welcomed.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
--
v8: winegstreamer: In video_processor, activate a videoflip converter.
mf/tests: Add tests about (negative) stride handling.
https://gitlab.winehq.org/wine/wine/-/merge_requests/2471