mfmediaengine: Avoid implicit casts in IMFAttributes_GetUINT32 calls.
This commit is contained in:
parent
2bbc4e17a5
commit
e3af07501a
1 changed files with 2 additions and 2 deletions
|
@ -1110,9 +1110,9 @@ static HRESULT media_engine_create_audio_renderer(struct media_engine *engine, I
|
|||
|
||||
static HRESULT media_engine_create_video_renderer(struct media_engine *engine, IMFTopologyNode **node)
|
||||
{
|
||||
DXGI_FORMAT output_format;
|
||||
IMFMediaType *media_type;
|
||||
IMFActivate *activate;
|
||||
UINT32 output_format;
|
||||
GUID subtype;
|
||||
HRESULT hr;
|
||||
|
||||
|
@ -3255,7 +3255,7 @@ static ULONG WINAPI media_engine_factory_Release(IMFMediaEngineClassFactory *ifa
|
|||
|
||||
static HRESULT init_media_engine(DWORD flags, IMFAttributes *attributes, struct media_engine *engine)
|
||||
{
|
||||
DXGI_FORMAT output_format;
|
||||
UINT32 output_format;
|
||||
UINT64 playback_hwnd;
|
||||
IMFClock *clock;
|
||||
HRESULT hr;
|
||||
|
|
Loading…
Add table
Reference in a new issue