Commit 2155817a authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

mfplat/tests: Test MFInitMediaTypeFromWaveFormatEx wrt MF_MT_FIXED_SIZE_SAMPLES.

parent 681d2014
......@@ -6947,6 +6947,11 @@ static void validate_media_type(IMFMediaType *mediatype, const WAVEFORMATEX *for
}
else
ok(FAILED(hr), "Unexpected ALL_SAMPLES_INDEPENDENT.\n");
hr = IMFMediaType_GetUINT32(mediatype, &MF_MT_FIXED_SIZE_SAMPLES, &value);
ok(FAILED(hr), "Unexpected FIXED_SIZE_SAMPLES.\n");
hr = IMFMediaType_GetUINT32(mediatype, &MF_MT_COMPRESSED, &value);
ok(FAILED(hr), "Unexpected COMPRESSED.\n");
}
static void test_MFInitMediaTypeFromWaveFormatEx(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment