Expand Minimize
This topic has not yet been rated - Rate this topic

MFCreateFMPEG4MediaSink function

Creates a media sink for authoring fragmented MP4 files.

Syntax


HRESULT WINAPI MFCreateFMPEG4MediaSink(
  _In_   IMFByteStream *pIByteStream,
  _In_   IMFMediaType *pVideoMediaType,
  _In_   IMFMediaType *pAudioMediaType,
  _Out_  IMFMediaSink **ppIMediaSink
);

Parameters

pIByteStream [in]

A pointer to the IMFByteStream interface of a byte stream. The media sink writes the MP4 file to this byte stream. The byte stream must be writable and support seeking.

pVideoMediaType [in]

A pointer to the IMFMediaType interface of a video media type. This type specifies the format of the video stream.

This parameter can be NULL, but not if pAudioMediaType is NULL.

pAudioMediaType [in]

A pointer to the IMFMediaType interface of an audio media type. This type specifies the format of the audio stream.

This parameter can be NULL, but not if pVideoMediaType is NULL.

ppIMediaSink [out]

Receives a pointer to the MP4 media sink's IMFMediaSink interface. The caller must release the interface.

Return value

If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Minimum supported client

Windows 8 [desktop apps only]

Minimum supported server

None supported [desktop apps only]

Header

Mfidl.h

Library

Mf.lib

DLL

Mf.dll

 

 

Send comments about this topic to Microsoft

Build date: 11/28/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.