Re: [PATCH v13 0/7] MR3938: winegstreamer: Implement CLSID_CMpegVideoCodec
Zebediah Figura (@zfigura) commented about dlls/quartz/tests/mpegvideo.c:
+ IPin_Release(pin); + + ref = IBaseFilter_Release(filter); + ok(!ref, "Got outstanding refcount %ld.\n", ref); +} + +struct testfilter +{ + struct strmbase_filter filter; + struct strmbase_source source; + struct strmbase_sink sink; + const AM_MEDIA_TYPE *mt; + unsigned int got_sample, got_new_segment, got_eos, got_begin_flush, got_end_flush; + REFERENCE_TIME expected_start_time; + REFERENCE_TIME expected_stop_time; + BOOL wine_wrong_stop_time; The usual convention for something like this would be "todo_stop_time". Same for "wine_fail" below, that would be "todo".
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3938#note_48915
participants (1)
-
Zebediah Figura (@zfigura)