> I use the directShow filters, and I would like to know if the encoded frame
> is a key frame or not.
This information is part of the media sample pushed downstream.
> How can I do this ? Is it sufficient to check that the first byte is 0 ?
Call IMediaSample::IsSyncPoint.
-Matt
I'm not intimately familiar with the VP8 bitstream (you could ask on
the codec dev list), but in practice, you shouldn't depend on the
format of the bitstream anyway.
What are you trying to do, that the IMediaSample interface does not
provide? Why is calling IMediaSample::IsSyncPoint not adequate?