13 Sep
2023
13 Sep
'23
7:46 a.m.
Rémi Bernon (@rbernon) commented about dlls/winegstreamer/main.c:
return WINE_UNIX_CALL(unix_wg_muxer_add_stream, ¶ms); }
+HRESULT wg_muxer_push_sample(wg_muxer_t muxer, struct wg_sample *sample) +{ + struct wg_muxer_push_sample_params params = + { + .muxer = muxer, + .sample = sample, + }; + + TRACE("muxer %#I64x, sample %p.\n", muxer, sample); + + return WINE_UNIX_CALL(unix_wg_muxer_push_sample, ¶ms);
Same thing here regarding NTSTATUS. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3810#note_45159