Signed-off-by: Bernhard Kölbl <besentv(a)gmail.com>
--
v4: include: Add VoiceCommandSet runtimeclass with it's dependencies.
include: Add Windows.Phone.PhoneContract api contract.
widl: Add basic support for the [deprecated] attribute.
https://gitlab.winehq.org/wine/wine/-/merge_requests/383
This is the first part of a series implementing an asynchronous MFT wrapper around the synchronous session transforms. The idea is to use the async MFT behavior for all the session transforms.
I believe this is generally useful, and goes in the direction of support native async MFT, although there is none at the moment, and it will also improve the behavior of the session with decoder transforms. These MFT do not generate a sample for each input samples, and may require more input to be requested. Using the async MFT behavior, we would generate METransformInputNeeded events when appropriate, and the session would react to them and request more samples from upstream.
Similarly, producing output will trigger METransformOutputAvailable events, and the session can react to these events and push the samples downstream if there were requested, or queue them.
Moreover, for very large video decoding or video processing, the synchronous transform may be performing slowly, and this currently blocks the session callbacks, causing stutter in the playback. Using the async MFT, we can process samples asynchronously, in the multi threaded queue.
The complete async_transform implementation can be seen in the https://gitlab.winehq.org/rbernon/wine/-/commits/mr/mf-async-transform branch. I also have a local tree with fully working decoder MFTs, but it requires more changes elsewhere and some media source refactor.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/3139
Signed-off-by: Bernhard Kölbl <besentv(a)gmail.com>
--
v3: include: Add VoiceCommandSet runtimeclass with it's dependencies.
include: Add Windows.Phone.PhoneContract api contract.
fixup! widl: Add basic support for the [deprecated] attribute.
fixup! winedump: Add support for dumping IMPORT_OBJECT_NAME_EXPORTAS symbols.
widl: Add basic support for the [deprecated] attribute.
https://gitlab.winehq.org/wine/wine/-/merge_requests/383
--
v3: vkd3d-shader/hlsl: Free the "iter" block pointer on success in create_loop().
vkd3d-shader/hlsl: Return a hlsl_block from the "expr_statement" and "expr" rules.
vkd3d-shader/hlsl: Return a hlsl_block from the "jump_statement" rule.
vkd3d-shader/hlsl: Return a hlsl_block from the "selection_statement" rule.
vkd3d-shader/hlsl: Return a hlsl_block from the "loop_statement" rule.
vkd3d-shader/hlsl: Return a hlsl_block from the "statement" rule.
https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/258
On Wed Jul 6 09:01:08 2022 +0000, Rémi Bernon wrote:
> If we don't have anything to define it to, maybe it's not really worth
> generating anything to the header yet and only keep the parsing support?
I did it like this because idk if we support `__declspec(deprecated(x))` .
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/383#note_37972