3 Jul
2024
3 Jul
'24
4:17 p.m.
Elizabeth Figura (@zfigura) commented about dlls/winegstreamer/unixlib.c:
if (shortname && strstr(shortname, "avdec_") && ELEMENT_HAS_PROPERTY(element, "max-threads")) { +#if defined(__i386__) + const gint32 MAX_THREADS = 4; +#else const gint32 MAX_THREADS = 16; +#endif
We could avoid the ifdef by using "sizeof(void *) == 4 ? 4 : 16". -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5923#note_75026