mfmediaengine: Use correct integral type.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6c2d0bb9ae
commit
223d2945b5
|
@ -1074,8 +1074,8 @@ static HRESULT media_engine_create_video_renderer(struct media_engine *engine, I
|
||||||
static HRESULT media_engine_create_topology(struct media_engine *engine, IMFMediaSource *source)
|
static HRESULT media_engine_create_topology(struct media_engine *engine, IMFMediaSource *source)
|
||||||
{
|
{
|
||||||
IMFStreamDescriptor *sd_audio = NULL, *sd_video = NULL;
|
IMFStreamDescriptor *sd_audio = NULL, *sd_video = NULL;
|
||||||
unsigned int stream_count = 0, i;
|
|
||||||
IMFPresentationDescriptor *pd;
|
IMFPresentationDescriptor *pd;
|
||||||
|
DWORD stream_count = 0, i;
|
||||||
IMFTopology *topology;
|
IMFTopology *topology;
|
||||||
UINT64 duration;
|
UINT64 duration;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
Loading…
Reference in New Issue