I'm getting an E_POINTER error from the ReadSample call, and as far as I can tell, none of the pointers are invalid. See snippet below (note, it's a C++/CLI app):

IMFSample* sample = NULL;
pin_ptr<IMFSample*> pinnedSample = &sample;

LONGLONG timeStamp;

HRESULT hr = mSourceReader->ReadSample(
    (DWORD)MF_SOURCE_READER_FIRST_VIDEO_STREAM,
    0,
    NULL,
    NULL,
    &timeStamp,
    pinnedSample
    );

I suspect the problem lies in the construction of the mSourceReader (an IMFSourceReader instance, created from an IMFMediaSource). But, alas, I've no idea how to backtrack and find the source, as all the COM calls in the chain of commands that created mSourceReader returned S_OK.

Much thanks for any tips.

link|improve this question
ReadSample isn't part of the IMFMediaSource interface. What type is mSourceReader really? – Ben Voigt May 9 '11 at 4:11
feedback

1 Answer

up vote 0 down vote accepted

You don't need pin_ptr when taking the address of a local variable, since the garbage collector never moves local variables around anyway.

I'd guess that one of the other three parameters you're passing NULL to is non-optional, but I need to see what function you're calling to know for sure.

Did you create the IMFSourceReader in synchronous or asynchronous mode? The docs say:

This method can complete synchronously or asynchronously. If you provide a callback pointer when you create the source reader, the method is asynchronous. Otherwise, the method is synchronous.

I think this is your problem:

In synchronous mode:

  • The pdwStreamFlags and ppSample parameters cannot be NULL. Otherwise, the method returns E_POINTER.

You've passed NULL for pdwStreamFlags, which is not allowed.

Doc link: http://msdn.microsoft.com/en-us/library/dd374665.aspx

link|improve this answer
You were correct. I filled out the rest of the parameters (though I didn't use them) and that solved the issue. I guess I got into the habit of if you don't need them, you can pass them as null family of APIs. My bad :( – user744461 May 9 '11 at 16:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.