-
5ae55297
by Conor McCarthy at 2026-02-19T15:40:39+01:00
mf/tests: Stop checking samples at the end of the expected array.
Prevents crashing in test_h264_decoder_concat_streams() when too many
samples are emitted.
-
82455775
by Conor McCarthy at 2026-02-19T15:40:39+01:00
mf/tests: Change todo to flaky for the H.264 decoder ouput type change test.
-
93c2e8c7
by Conor McCarthy at 2026-02-19T15:40:39+01:00
mfplat/tests: Test NV12 negative stride in MFCreateMediaBufferFromMediaType().
-
3a15667a
by Conor McCarthy at 2026-02-19T15:40:39+01:00
mf/tests: Test sample copier 2D buffers.
-
a075e16c
by Conor McCarthy at 2026-02-19T15:40:39+01:00
mf/tests: Test H.264 decoder 2D buffers.
-
b81fd642
by Conor McCarthy at 2026-02-19T15:40:39+01:00
mf/tests: Test WMV decoder 2D buffers.
-
9d3b1807
by Conor McCarthy at 2026-02-19T15:40:39+01:00
mf/tests: Test color convert 2D buffers.
-
b55b2399
by Conor McCarthy at 2026-02-19T15:40:39+01:00
winegstreamer: Support 2D sample buffer.
Performance issues can occur when a video output sample has a 2D buffer,
because winegstreamer currently outputs only to a linear buffer, which
must then be copied into the 2D buffer. Worse, a linear lock of the 2D
buffer requires the current contents to be copied to a linear buffer,
even when we intend to overwrite it, because MF linear buffers do not
support write-only locking.