2 Feb
2023
2 Feb
'23
9:30 a.m.
Rémi Bernon (@rbernon) commented about dlls/ir50_32/ir50.c:
+ + switch( msg ) + { + case DRV_LOAD: + TRACE("DRV_LOAD\n"); + r = 1; + break; + + case DRV_OPEN: + r = IV50_Open((ICINFO *)lParam2); + break; + + case DRV_CLOSE: + TRACE("DRV_CLOSE\n"); + if ( decoder ) + IMFTransform_Release( decoder ); Maybe this should be moved to the commit where you implement `DRV_OPEN`?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2093#note_22787