從 IOContext 中的 IStream 中讀取
設定自定義 IO 上下文的 API 呼叫 avio_alloc_context
接收指向 Read 函式的指標。如果你正在閱讀 IStream,則可以使用以下內容:
/**
* Reads from an IStream into FFmpeg.
*
* @param ptr A pointer to the user-defined IO data structure.
* @param buf A buffer to read into.
* @param buf_size The size of the buffer buff.
*
* @return The number of bytes read into the buffer.
*/
int FileStreamRead(void* ptr, uint8_t* buf, int buf_size)
{
// This is your IStream
IStream* stream = reinterpret_cast<IStream*>(ptr);
ULONG bytesRead = 0;
HRESULT hr = stream->Read(buf, buf_size, &bytesRead);
if(hr == S_FALSE)
return AVERROR_EOF; // End of file
if(FAILED(hr))
return -1;
return bytesRead;
}