If I don't seek movie, the sample grabber receive data as normal. My
operating system is vista bussiness.
----
Init() //build graph to render file
process() {
// Get the Duration of the playing file
LONGLONG lTotalDuration = 0;
m_pSeek->GetDuration(&lTotalDuration);
// Set the Current Playing position
REFERENCE_TIME rtNew = (lTotalDuration * lPosition) / 100;
HRESULT hr;
hr = m_pSeek->SetPositions(&rtNew,
AM_SEEKING_AbsolutePositioning,NULL,AM_SEEKING_NoPositioning);
if (SUCCESS(hr)) {
hr= m_pControl->pause();
hr= m_pControl->run();
}
}