IMFSourceReader::GetNativeMediaType method
Gets a format that is supported natively by the media source.
Syntax
HRESULT GetNativeMediaType( [in] DWORD dwStreamIndex, [in] DWORD dwMediaTypeIndex, [out] IMFMediaType **ppMediaType );
Parameters
- dwStreamIndex [in]
-
Specifies which stream to query. The value can be any of the following.
- dwMediaTypeIndex [in]
-
The zero-based index of the media type to retrieve.
- ppMediaType [out]
-
Receives a pointer to the IMFMediaType interface. The caller must release the interface.
Return value
The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.
| Return code | Description |
|---|---|
|
The method succeeded. |
|
The dwStreamIndex parameter is invalid. |
|
The dwMediaTypeIndex parameter is out of range. |
Remarks
This method queries the underlying media source for its native output format. Potentially, each source stream can produce more than one output format. Use the dwMediaTypeIndex parameter to loop through the available formats. Generally, file sources offer just one format per stream, but capture devices might offer several formats.
The method returns a copy of the media type, so it is safe to modify the object received in the ppMediaType parameter.
To set the output type for a stream, call the IMFSourceReader::SetCurrentMediaType method.
This interface is available on Windows Vista if Platform Update Supplement for Windows Vista is installed.
Requirements
|
Minimum supported client |
Windows 7, Windows Vista and Platform Update Supplement for Windows Vista [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows Server 2008 R2 [desktop apps | Windows Store apps] |
|
Header |
|
See also