Zebediah Figura (@zfigura) commented about dlls/winegstreamer/quartz_parser.c:
if (seeking->llStop) stop_flags = AM_SEEKING_AbsolutePositioning; wg_parser_stream_seek(filter->sources[0]->wg_stream, seeking->dRate,
seeking->llCurrent, seeking->llStop, AM_SEEKING_AbsolutePositioning, stop_flags);
seeking->llCurrent, seeking->llStop == seeking->llDuration ? -1 : seeking->llStop,
AM_SEEKING_AbsolutePositioning, stop_flags);
Isn't this redundant with the same logic done in wg_parser_stream_seek()?