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".