@tourettes any ideas?
None at the moment. Logs might help
@tourettes any ideas?
Here you go. First attempted playback failed. So logs are as short as they can get.
STDMETHODIMP CMPAudioRenderer::GetState(DWORD dwMSecs, FILTER_STATE* State)
{
CheckPointer(State, E_POINTER);
if (m_pRenderer->BufferredDataDuration() <= 2500000 && // 250 ms
GetCurrentTimestamp() - m_lastSampleArrivalTime < 500000) // 50 ms
{
NotifyEvent(EC_STARVATION, 0, 0);
*State = State_Paused;
return VFW_S_STATE_INTERMEDIATE;
}
return CBaseRenderer::GetState(dwMSecs, State);
}
[11-27 21:21:13,053] [OnlineVideos] [DEBUG] Buffering: 2476/17258 KB (14%)
From OnlineVideos log it's buffered approx. 2 MB of data before creating graph:
Code:[11-27 21:21:13,053] [OnlineVideos] [DEBUG] Buffering: 2476/17258 KB (14%)
Edit: From where can I download MPAR? I test it in my debug environment.
Going to investigate.@georgius @tourettes
Anyone of you had time to take a look? Would highly appreciate it!
Currently always switching back to the default audio renderer when watching YT-videos in OnlineVideos and playback works flawlessly that way.
I am a bit confused that I seem to be the first person to report this issues of OV in combination with MPAR.
@georgius @tourettes
Anyone of you had time to take a look? Would highly appreciate it!
Currently always switching back to the default audio renderer when watching YT-videos in OnlineVideos and playback works flawlessly that way.
I am a bit confused that I seem to be the first person to report this issues of OV in combination with MPAR.