alex bd - 2009-10-11

Hi
I am using GMFbtidge example(from your site) to connect 2 movies.
It works grate . But when I try to change the rate of the movie nothing works.
Even the picture almost friezes. This is the small code for rate change, can
you tell me what is the correct form . I couldn't find the answer to this
anywhere.

public int SeekSourceGraphs()
{
ClipEntry ce;

// disconnect first
m_pController.BridgeGraphs(null, null);

ce = CurrentClip();
IMediaSeeking seek = ce.Graph() as IMediaSeeking;
seek.SetRate(2.5);

int hr = m_pController.BridgeGraphs(ce.SinkFilter(),
m_pRenderGraphSourceFilter);

return hr;
}