Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been struggling with this issue for some time and would welcome any suggestions.

I am trying to implement a source reader and a sink writer based on the example in Chapter 4 from http://examples.oreilly.com/9780735656598-files/

Using the code when feeding the entire byte stream of the media file to transcode works ok. However when I feed a live byte stream who is being fed more data after the media source is created, Media Foundation only transcodes the first few bytes before giving up and sometime it throws an MF_E_UNSUPPORTED_BYTESTREAM_TYPE error. Here are the steps I am following:

1) Implement a simple VC++ CLI wrapper for System::Runtime::InteropServices::ComTypes::IStream, this will be used as a bridge between the C# system.io.memorystream and the COM IStream interface.

2) Feed an instance of the wrapper to the Media Foundation transcode function 3) using Marshal::GetComInterfaceForObject I retrieve the CComPtr interface 4) create an attribute store CComPtr and set attribute MF_BYTESTREAMHANDLER_ACCEPTS_SHARE_WRITE to TRUE 4) using MFCreateMFByteStreamOnStream I create an IMFByteStream 5) using MFCreateSourceResolver I create an IMFSourceResolver 6) using CreateObjectFromByteStream I create an IMFMediaSource from the resolver 7) at step 6 i sometimes get the MF_E_UNSUPPORTED_BYTESTREAM_TYPE HRESULT 8) using MFCreateSourceReaderFromMediaSource I create an IMFSourceReader from the IMFMediaSource in step 6 and the attribute store in step 4 9) using MFCreateSinkWriterFromURL I create an IMFSinkWriter 10) for each stream type I start pulling the samples from the source reader and writing them to the sink writer. At this point I get MF_E_TRANSFORM_NEED_MORE_ INPUT then at some point MF_SOURCE_READERF_ENDOFSTREAM presuymably because the source reader has reached the end of the stream before it was fed more data

My questions are:

Does this seem like the correct approach? Is there anything that my custom IStream class needs to implement is order to control the seeking within the stream?

Someone has recommended that I block the reads until I have enough data. I tries sleeping in my stream::read override but this causes media foundation to timeout. Unless there is another way to do this.

Also it was suggested that I set the HAS_SLOW_SEEK capability on the media source, but I could not find any reference to how to do this. Any suggestions would be welcome

Finally, I read that it is possible to implement my own media source similar to the WAVSource example in the SDK. Would that be needed?

Thanks

a byte stream System::IO::MemoryStream from a managed class my own implementation of the IStream interface

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.