Accepting request 1187480 from Emulators
- Updated to 9.13 release - Support for loading ODBC Windows drivers. - More user32 data structures in shared memory. - More rewriting of the CMD.EXE engine. - Various bug fixes. - update staging to 9.13 release - removed 0001-mf-tests-Remove-static-specifier-on-variables-refere.patch: upstream - replaced 0001-mf-tests-use-defines-instead-of-static-const-for-old.patch by official commit 0001-mf-tests-Remove-static-specifier-on-variables-refere.patch OBS-URL: https://build.opensuse.org/request/show/1187480 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/wine?expand=0&rev=444
This commit is contained in:
commit
00d2f87688
@ -1,942 +0,0 @@
|
||||
From 8386536fb7c3d3678c1d022e89fe248c3d8eed79 Mon Sep 17 00:00:00 2001
|
||||
From: Marcus Meissner <marcus@jet.franken.de>
|
||||
Date: Mon, 1 Jul 2024 14:08:15 +0200
|
||||
Subject: [PATCH] mf/tests: use defines instead of 'static const' for older gcc
|
||||
|
||||
Signed-off-by: Marcus Meissner <marcus@jet.franken.de>
|
||||
---
|
||||
dlls/mf/tests/transform.c | 335 +++++++++++++++++++-------------------
|
||||
1 file changed, 167 insertions(+), 168 deletions(-)
|
||||
|
||||
diff --git a/dlls/mf/tests/transform.c b/dlls/mf/tests/transform.c
|
||||
index deec2c7dd92..16a7525c5d3 100644
|
||||
--- a/dlls/mf/tests/transform.c
|
||||
+++ b/dlls/mf/tests/transform.c
|
||||
@@ -65,6 +65,11 @@ DEFINE_GUID(mft_output_sample_incomplete,0xffffff,0xffff,0xffff,0xff,0xff,0xff,0
|
||||
|
||||
static const GUID test_attr_guid = {0xdeadbeef};
|
||||
|
||||
+#define SET_WIDTH 82
|
||||
+#define SET_HEIGHT 84
|
||||
+#define ACTUAL_WIDTH 96
|
||||
+#define ACTUAL_HEIGHT 96
|
||||
+
|
||||
struct media_buffer
|
||||
{
|
||||
IMediaBuffer IMediaBuffer_iface;
|
||||
@@ -3818,7 +3823,6 @@ static IMFSample *next_h264_sample_(int line, const BYTE **h264_buf, ULONG *h264
|
||||
|
||||
static void test_h264_encoder(void)
|
||||
{
|
||||
- static const DWORD actual_width = 96, actual_height = 96;
|
||||
const GUID *const class_id = &CLSID_MSH264EncoderMFT;
|
||||
const struct transform_info expect_mft_info =
|
||||
{
|
||||
@@ -3859,7 +3863,7 @@ static void test_h264_encoder(void)
|
||||
};
|
||||
static const struct attribute_desc expect_available_input_attributes[] =
|
||||
{
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 30000, 1001),
|
||||
ATTR_UINT32(MF_MT_VIDEO_NOMINAL_RANGE, MFNominalRange_Wide),
|
||||
ATTR_UINT32(MF_MT_INTERLACE_MODE, MFVideoInterlace_Progressive),
|
||||
@@ -3871,7 +3875,7 @@ static void test_h264_encoder(void)
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12, .required = TRUE),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 30000, 1001, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
ATTR_UINT32(test_attr_guid, 0),
|
||||
{0},
|
||||
};
|
||||
@@ -3879,7 +3883,7 @@ static void test_h264_encoder(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_H264, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 30000, 1001, .required_set = TRUE),
|
||||
ATTR_UINT32(MF_MT_AVG_BITRATE, 193540, .required_set = TRUE),
|
||||
ATTR_UINT32(MF_MT_INTERLACE_MODE, MFVideoInterlace_Progressive, .required_set = TRUE),
|
||||
@@ -3890,7 +3894,7 @@ static void test_h264_encoder(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 30000, 1001),
|
||||
ATTR_UINT32(test_attr_guid, 0),
|
||||
{0},
|
||||
@@ -3899,7 +3903,7 @@ static void test_h264_encoder(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_H264),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 30000, 1001),
|
||||
ATTR_UINT32(MF_MT_AVG_BITRATE, 193540),
|
||||
ATTR_BLOB(MF_MT_MPEG_SEQUENCE_HEADER, test_h264_sequence_header, sizeof(test_h264_sequence_header)),
|
||||
@@ -4178,7 +4182,6 @@ static void test_h264_decoder(void)
|
||||
{0},
|
||||
};
|
||||
static const MFVideoArea actual_aperture = {.Area={82,84}};
|
||||
- static const DWORD actual_width = 96, actual_height = 96;
|
||||
const media_type_desc actual_outputs[] =
|
||||
{
|
||||
{
|
||||
@@ -4186,9 +4189,9 @@ static void test_h264_decoder(void)
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 60000, 1000),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
/* ATTR_UINT32(MF_MT_VIDEO_ROTATION, 0), missing on Win7 */
|
||||
ATTR_UINT32(MF_MT_INTERLACE_MODE, 7),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1),
|
||||
@@ -4202,9 +4205,9 @@ static void test_h264_decoder(void)
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_YV12),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 60000, 1000),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
/* ATTR_UINT32(MF_MT_VIDEO_ROTATION, 0), missing on Win7 */
|
||||
ATTR_UINT32(MF_MT_INTERLACE_MODE, 7),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1),
|
||||
@@ -4218,9 +4221,9 @@ static void test_h264_decoder(void)
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_IYUV),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 60000, 1000),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
/* ATTR_UINT32(MF_MT_VIDEO_ROTATION, 0), missing on Win7 */
|
||||
ATTR_UINT32(MF_MT_INTERLACE_MODE, 7),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1),
|
||||
@@ -4234,9 +4237,9 @@ static void test_h264_decoder(void)
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_I420),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 60000, 1000),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
/* ATTR_UINT32(MF_MT_VIDEO_ROTATION, 0), missing on Win7 */
|
||||
ATTR_UINT32(MF_MT_INTERLACE_MODE, 7),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1),
|
||||
@@ -4250,9 +4253,9 @@ static void test_h264_decoder(void)
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_YUY2),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 60000, 1000),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 2),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 2),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 2),
|
||||
/* ATTR_UINT32(MF_MT_VIDEO_ROTATION, 0), missing on Win7 */
|
||||
ATTR_UINT32(MF_MT_INTERLACE_MODE, 7),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1),
|
||||
@@ -4278,7 +4281,7 @@ static void test_h264_decoder(void)
|
||||
{
|
||||
.dwFlags = MFT_OUTPUT_STREAM_WHOLE_SAMPLES | MFT_OUTPUT_STREAM_SINGLE_SAMPLE_PER_BUFFER |
|
||||
MFT_OUTPUT_STREAM_FIXED_SAMPLE_SIZE,
|
||||
- .cbSize = actual_width * actual_height * 2,
|
||||
+ .cbSize = ACTUAL_WIDTH * ACTUAL_HEIGHT * 2,
|
||||
};
|
||||
const MFT_INPUT_STREAM_INFO input_info =
|
||||
{
|
||||
@@ -4294,9 +4297,9 @@ static void test_h264_decoder(void)
|
||||
};
|
||||
const struct buffer_desc output_buffer_desc_nv12 =
|
||||
{
|
||||
- .length = actual_width * actual_height * 3 / 2,
|
||||
+ .length = ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2,
|
||||
.compare = compare_nv12, .compare_rect = {.right = 82, .bottom = 84},
|
||||
- .dump = dump_nv12, .size = {.cx = actual_width, .cy = actual_height},
|
||||
+ .dump = dump_nv12, .size = {.cx = ACTUAL_WIDTH, .cy = ACTUAL_HEIGHT},
|
||||
};
|
||||
const struct sample_desc output_sample_desc_nv12 =
|
||||
{
|
||||
@@ -4306,9 +4309,9 @@ static void test_h264_decoder(void)
|
||||
};
|
||||
const struct buffer_desc output_buffer_desc_i420 =
|
||||
{
|
||||
- .length = actual_width * actual_height * 3 / 2,
|
||||
+ .length = ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2,
|
||||
.compare = compare_i420, .compare_rect = {.right = 82, .bottom = 84},
|
||||
- .dump = dump_i420, .size = {.cx = actual_width, .cy = actual_height},
|
||||
+ .dump = dump_i420, .size = {.cx = ACTUAL_WIDTH, .cy = ACTUAL_HEIGHT},
|
||||
};
|
||||
const struct sample_desc expect_output_sample_i420 =
|
||||
{
|
||||
@@ -4543,7 +4546,7 @@ static void test_h264_decoder(void)
|
||||
|
||||
check_mft_get_output_current_type_(__LINE__, transform, expect_new_output_type_desc, FALSE, TRUE);
|
||||
|
||||
- output_sample = create_sample(NULL, actual_width * actual_height * 2);
|
||||
+ output_sample = create_sample(NULL, ACTUAL_WIDTH * ACTUAL_HEIGHT * 2);
|
||||
hr = check_mft_process_output(transform, output_sample, &output_status);
|
||||
todo_wine
|
||||
ok(hr == MF_E_TRANSFORM_STREAM_CHANGE, "ProcessOutput returned %#lx\n", hr);
|
||||
@@ -4573,7 +4576,7 @@ static void test_h264_decoder(void)
|
||||
hr = MFCreateCollection(&output_samples);
|
||||
ok(hr == S_OK, "MFCreateCollection returned %#lx\n", hr);
|
||||
|
||||
- output_sample = create_sample(NULL, actual_width * actual_height * 2);
|
||||
+ output_sample = create_sample(NULL, ACTUAL_WIDTH * ACTUAL_HEIGHT * 2);
|
||||
hr = check_mft_process_output(transform, output_sample, &output_status);
|
||||
ok(hr == S_OK, "ProcessOutput returned %#lx\n", hr);
|
||||
ok(output_status == 0, "got output[0].dwStatus %#lx\n", output_status);
|
||||
@@ -4587,7 +4590,7 @@ static void test_h264_decoder(void)
|
||||
ok(ret == 0, "got %lu%% diff\n", ret);
|
||||
IMFCollection_Release(output_samples);
|
||||
|
||||
- output_sample = create_sample(NULL, actual_width * actual_height * 2);
|
||||
+ output_sample = create_sample(NULL, ACTUAL_WIDTH * ACTUAL_HEIGHT * 2);
|
||||
hr = check_mft_process_output(transform, output_sample, &output_status);
|
||||
todo_wine_if(hr == S_OK) /* when VA-API plugin is used */
|
||||
ok(hr == MF_E_TRANSFORM_NEED_MORE_INPUT, "ProcessOutput returned %#lx\n", hr);
|
||||
@@ -5385,20 +5388,19 @@ static void test_wmv_encoder(void)
|
||||
},
|
||||
};
|
||||
|
||||
- static const DWORD actual_width = 96, actual_height = 96;
|
||||
const struct attribute_desc input_type_desc[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12, .required = TRUE),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 30000, 1001, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height), /* required for SetOutputType */
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT), /* required for SetOutputType */
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc output_type_desc[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_WMV1, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 30000, 1001, .required = TRUE),
|
||||
ATTR_UINT32(MF_MT_AVG_BITRATE, 193540, .required = TRUE),
|
||||
{0},
|
||||
@@ -5409,9 +5411,9 @@ static void test_wmv_encoder(void)
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 30000, 1001),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
ATTR_UINT32(MF_MT_ALL_SAMPLES_INDEPENDENT, 1),
|
||||
@@ -5421,7 +5423,7 @@ static void test_wmv_encoder(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_WMV1),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
ATTR_RATIO(MF_MT_FRAME_RATE, 30000, 1001),
|
||||
ATTR_UINT32(MF_MT_AVG_BITRATE, 193540),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
@@ -5700,7 +5702,6 @@ static void test_wmv_decoder(void)
|
||||
{ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_VC1S)},
|
||||
};
|
||||
static const MFVideoArea actual_aperture = {.Area={96,96}};
|
||||
- static const DWORD actual_width = 96, actual_height = 96;
|
||||
const struct attribute_desc expect_output_attributes[] =
|
||||
{
|
||||
ATTR_BLOB(MF_MT_GEOMETRIC_APERTURE, &actual_aperture, sizeof(actual_aperture)),
|
||||
@@ -5716,94 +5717,94 @@ static void test_wmv_decoder(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_YV12),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_IYUV),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_I420),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_YUY2),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 2),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 2),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 2),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_UYVY),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 2),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 2),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 2),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_YVYU),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 2),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 2),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 2),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV11),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 4),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 4),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 4),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 4),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB24),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 3),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 3),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB565),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 2),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 2),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 2),
|
||||
/* ATTR_BLOB(MF_MT_PALETTE, ... with 12 elements), */
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB555),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 2),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 2),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 2),
|
||||
},
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB8),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT),
|
||||
/* ATTR_BLOB(MF_MT_PALETTE, ... with 904 elements), */
|
||||
},
|
||||
};
|
||||
@@ -5820,52 +5821,52 @@ static void test_wmv_decoder(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_WMV1, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE, .todo = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE, .todo = TRUE),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc output_type_desc[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc output_type_desc_negative_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -actual_width),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -ACTUAL_WIDTH),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc output_type_desc_rgb[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc output_type_desc_rgb_negative_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -actual_width * 4),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -ACTUAL_WIDTH * 4),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc output_type_desc_rgb_positive_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 4),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 4),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc expect_input_type_desc[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_WMV1),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1, .todo = TRUE),
|
||||
{0},
|
||||
};
|
||||
@@ -5873,9 +5874,9 @@ static void test_wmv_decoder(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1),
|
||||
ATTR_UINT32(MF_MT_VIDEO_NOMINAL_RANGE, 2),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
@@ -5886,9 +5887,9 @@ static void test_wmv_decoder(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 4),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 4),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 4),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 4),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1),
|
||||
ATTR_UINT32(MF_MT_VIDEO_NOMINAL_RANGE, 2),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
@@ -5899,9 +5900,9 @@ static void test_wmv_decoder(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -actual_width * 4),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 4),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -ACTUAL_WIDTH * 4),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 4),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1),
|
||||
ATTR_UINT32(MF_MT_VIDEO_NOMINAL_RANGE, 2),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1),
|
||||
@@ -5943,15 +5944,15 @@ static void test_wmv_decoder(void)
|
||||
};
|
||||
const struct buffer_desc output_buffer_desc_nv12 =
|
||||
{
|
||||
- .length = actual_width * actual_height * 3 / 2,
|
||||
+ .length = ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2,
|
||||
.compare = compare_nv12, .compare_rect = {.right = 82, .bottom = 84},
|
||||
- .dump = dump_nv12, .size = {.cx = actual_width, .cy = actual_height},
|
||||
+ .dump = dump_nv12, .size = {.cx = ACTUAL_WIDTH, .cy = ACTUAL_HEIGHT},
|
||||
};
|
||||
const struct buffer_desc output_buffer_desc_rgb =
|
||||
{
|
||||
- .length = actual_width * actual_height * 4,
|
||||
+ .length = ACTUAL_WIDTH * ACTUAL_HEIGHT * 4,
|
||||
.compare = compare_rgb32, .compare_rect = {.right = 82, .bottom = 84},
|
||||
- .dump = dump_rgb32, .size = {.cx = actual_width, .cy = actual_height},
|
||||
+ .dump = dump_rgb32, .size = {.cx = ACTUAL_WIDTH, .cy = ACTUAL_HEIGHT},
|
||||
};
|
||||
const struct sample_desc output_sample_desc_nv12 =
|
||||
{
|
||||
@@ -7053,12 +7054,11 @@ static void test_color_convert(void)
|
||||
};
|
||||
|
||||
static const MFVideoArea actual_aperture = {.Area={82,84}};
|
||||
- static const DWORD actual_width = 96, actual_height = 96;
|
||||
const struct attribute_desc input_type_desc[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
ATTR_BLOB(MF_MT_MINIMUM_DISPLAY_APERTURE, &actual_aperture, 16),
|
||||
{0},
|
||||
};
|
||||
@@ -7066,23 +7066,23 @@ static void test_color_convert(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc output_type_desc_negative_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -actual_width * 4),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -ACTUAL_WIDTH * 4),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc output_type_desc_positive_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 4),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 4),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc expect_input_type_desc[] =
|
||||
@@ -7090,9 +7090,9 @@ static void test_color_convert(void)
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12),
|
||||
ATTR_BLOB(MF_MT_MINIMUM_DISPLAY_APERTURE, &actual_aperture, 16),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 3 / 2, .todo = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2, .todo = TRUE),
|
||||
ATTR_UINT32(MF_MT_ALL_SAMPLES_INDEPENDENT, 1, .todo = TRUE),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1, .todo = TRUE),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1, .todo = TRUE),
|
||||
@@ -7102,9 +7102,9 @@ static void test_color_convert(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 4),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 4, .todo = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 4),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 4, .todo = TRUE),
|
||||
ATTR_UINT32(MF_MT_ALL_SAMPLES_INDEPENDENT, 1, .todo = TRUE),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1, .todo = TRUE),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1, .todo = TRUE),
|
||||
@@ -7114,9 +7114,9 @@ static void test_color_convert(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -actual_width * 4),
|
||||
- ATTR_UINT32(MF_MT_SAMPLE_SIZE, actual_width * actual_height * 4, .todo = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -ACTUAL_WIDTH * 4),
|
||||
+ ATTR_UINT32(MF_MT_SAMPLE_SIZE, ACTUAL_WIDTH * ACTUAL_HEIGHT * 4, .todo = TRUE),
|
||||
ATTR_UINT32(MF_MT_ALL_SAMPLES_INDEPENDENT, 1, .todo = TRUE),
|
||||
ATTR_UINT32(MF_MT_FIXED_SIZE_SAMPLES, 1, .todo = TRUE),
|
||||
ATTR_RATIO(MF_MT_PIXEL_ASPECT_RATIO, 1, 1, .todo = TRUE),
|
||||
@@ -7124,20 +7124,20 @@ static void test_color_convert(void)
|
||||
};
|
||||
const MFT_OUTPUT_STREAM_INFO output_info =
|
||||
{
|
||||
- .cbSize = actual_width * actual_height * 4,
|
||||
+ .cbSize = ACTUAL_WIDTH * ACTUAL_HEIGHT * 4,
|
||||
.cbAlignment = 1,
|
||||
};
|
||||
const MFT_INPUT_STREAM_INFO input_info =
|
||||
{
|
||||
- .cbSize = actual_width * actual_height * 3 / 2,
|
||||
+ .cbSize = ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2,
|
||||
.cbAlignment = 1,
|
||||
};
|
||||
|
||||
const struct buffer_desc output_buffer_desc =
|
||||
{
|
||||
- .length = actual_width * actual_height * 4,
|
||||
+ .length = ACTUAL_WIDTH * ACTUAL_HEIGHT * 4,
|
||||
.compare = compare_rgb32, .compare_rect = {.right = 82, .bottom = 84},
|
||||
- .dump = dump_rgb32, .size = {.cx = actual_width, .cy = actual_height},
|
||||
+ .dump = dump_rgb32, .size = {.cx = ACTUAL_WIDTH, .cy = ACTUAL_HEIGHT},
|
||||
};
|
||||
const struct attribute_desc output_sample_attributes[] =
|
||||
{
|
||||
@@ -7457,12 +7457,11 @@ static void test_video_processor(void)
|
||||
};
|
||||
|
||||
static const MFVideoArea actual_aperture = {.Area={82,84}};
|
||||
- static const DWORD actual_width = 96, actual_height = 96;
|
||||
const struct attribute_desc rgb32_with_aperture[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
ATTR_BLOB(MF_MT_MINIMUM_DISPLAY_APERTURE, &actual_aperture, 16),
|
||||
{0},
|
||||
};
|
||||
@@ -7470,62 +7469,62 @@ static void test_video_processor(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
ATTR_BLOB(MF_MT_MINIMUM_DISPLAY_APERTURE, &actual_aperture, 16),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 4),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 4),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc nv12_default_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc rgb32_default_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc rgb32_negative_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -actual_width * 4),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -ACTUAL_WIDTH * 4),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc rgb32_positive_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 4),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 4),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc rgb555_default_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB555, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc rgb555_negative_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB555, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -actual_width * 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, -ACTUAL_WIDTH * 2),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc rgb555_positive_stride[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB555, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
- ATTR_UINT32(MF_MT_DEFAULT_STRIDE, actual_width * 2),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
+ ATTR_UINT32(MF_MT_DEFAULT_STRIDE, ACTUAL_WIDTH * 2),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc nv12_no_aperture[] =
|
||||
@@ -7539,7 +7538,7 @@ static void test_video_processor(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_NV12, .required = TRUE),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, actual_width, actual_height, .required = TRUE),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, ACTUAL_WIDTH, ACTUAL_HEIGHT, .required = TRUE),
|
||||
ATTR_BLOB(MF_MT_MINIMUM_DISPLAY_APERTURE, &actual_aperture, 16),
|
||||
ATTR_BLOB(MF_MT_GEOMETRIC_APERTURE, &actual_aperture, 16),
|
||||
ATTR_BLOB(MF_MT_PAN_SCAN_APERTURE, &actual_aperture, 16),
|
||||
@@ -7564,9 +7563,9 @@ static void test_video_processor(void)
|
||||
};
|
||||
const struct buffer_desc rgb32_buffer_desc =
|
||||
{
|
||||
- .length = actual_width * actual_height * 4,
|
||||
+ .length = ACTUAL_WIDTH * ACTUAL_HEIGHT * 4,
|
||||
.compare = compare_rgb32, .compare_rect = {.top = 12, .right = 82, .bottom = 96},
|
||||
- .dump = dump_rgb32, .size = {.cx = actual_width, .cy = actual_height},
|
||||
+ .dump = dump_rgb32, .size = {.cx = ACTUAL_WIDTH, .cy = ACTUAL_HEIGHT},
|
||||
};
|
||||
const struct sample_desc rgb32_sample_desc =
|
||||
{
|
||||
@@ -7590,9 +7589,9 @@ static void test_video_processor(void)
|
||||
|
||||
const struct buffer_desc rgb555_buffer_desc =
|
||||
{
|
||||
- .length = actual_width * actual_height * 2,
|
||||
+ .length = ACTUAL_WIDTH * ACTUAL_HEIGHT * 2,
|
||||
.compare = compare_rgb16, .compare_rect = {.top = 12, .right = 82, .bottom = 96},
|
||||
- .dump = dump_rgb16, .size = {.cx = actual_width, .cy = actual_height},
|
||||
+ .dump = dump_rgb16, .size = {.cx = ACTUAL_WIDTH, .cy = ACTUAL_HEIGHT},
|
||||
};
|
||||
const struct sample_desc rgb555_sample_desc =
|
||||
{
|
||||
@@ -7603,9 +7602,9 @@ static void test_video_processor(void)
|
||||
|
||||
const struct buffer_desc nv12_buffer_desc =
|
||||
{
|
||||
- .length = actual_width * actual_height * 3 / 2,
|
||||
+ .length = ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2,
|
||||
.compare = compare_nv12, .compare_rect = {.top = 12, .right = 82, .bottom = 96},
|
||||
- .dump = dump_nv12, .size = {.cx = actual_width, .cy = actual_height},
|
||||
+ .dump = dump_nv12, .size = {.cx = ACTUAL_WIDTH, .cy = ACTUAL_HEIGHT},
|
||||
};
|
||||
const struct sample_desc nv12_sample_desc =
|
||||
{
|
||||
@@ -7994,7 +7993,7 @@ static void test_video_processor(void)
|
||||
|
||||
hr = IMFTransform_SetInputType(transform, 0, media_type, 0);
|
||||
ok(hr == MF_E_ATTRIBUTENOTFOUND, "SetInputType returned %#lx.\n", hr);
|
||||
- hr = IMFMediaType_SetUINT64(media_type, &MF_MT_FRAME_SIZE, (UINT64)actual_width << 32 | actual_height);
|
||||
+ hr = IMFMediaType_SetUINT64(media_type, &MF_MT_FRAME_SIZE, (UINT64)ACTUAL_WIDTH << 32 | ACTUAL_HEIGHT);
|
||||
ok(hr == S_OK, "SetUINT64 returned %#lx.\n", hr);
|
||||
hr = IMFTransform_SetInputType(transform, 0, media_type, 0);
|
||||
ok(hr == S_OK, "SetInputType returned %#lx.\n", hr);
|
||||
@@ -8083,12 +8082,12 @@ static void test_video_processor(void)
|
||||
|
||||
if (test->output_sample_desc == &nv12_sample_desc)
|
||||
{
|
||||
- output_info.cbSize = actual_width * actual_height * 3 / 2;
|
||||
+ output_info.cbSize = ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2;
|
||||
check_mft_get_output_stream_info(transform, S_OK, &output_info);
|
||||
}
|
||||
else if (test->output_sample_desc == &rgb555_sample_desc)
|
||||
{
|
||||
- output_info.cbSize = actual_width * actual_height * 2;
|
||||
+ output_info.cbSize = ACTUAL_WIDTH * ACTUAL_HEIGHT * 2;
|
||||
check_mft_get_output_stream_info(transform, S_OK, &output_info);
|
||||
}
|
||||
else if (test->output_sample_desc == &rgb32_crop_sample_desc)
|
||||
@@ -8098,18 +8097,18 @@ static void test_video_processor(void)
|
||||
}
|
||||
else
|
||||
{
|
||||
- output_info.cbSize = actual_width * actual_height * 4;
|
||||
+ output_info.cbSize = ACTUAL_WIDTH * ACTUAL_HEIGHT * 4;
|
||||
check_mft_get_output_stream_info(transform, S_OK, &output_info);
|
||||
}
|
||||
|
||||
if (test->input_type_desc == nv12_default_stride || test->input_type_desc == nv12_with_aperture)
|
||||
{
|
||||
- input_info.cbSize = actual_width * actual_height * 3 / 2;
|
||||
+ input_info.cbSize = ACTUAL_WIDTH * ACTUAL_HEIGHT * 3 / 2;
|
||||
check_mft_get_input_stream_info(transform, S_OK, &input_info);
|
||||
}
|
||||
else if (test->input_type_desc == rgb555_default_stride)
|
||||
{
|
||||
- input_info.cbSize = actual_width * actual_height * 2;
|
||||
+ input_info.cbSize = ACTUAL_WIDTH * ACTUAL_HEIGHT * 2;
|
||||
check_mft_get_input_stream_info(transform, S_OK, &input_info);
|
||||
}
|
||||
else if (test->input_type_desc == rgb32_no_aperture)
|
||||
@@ -8119,7 +8118,7 @@ static void test_video_processor(void)
|
||||
}
|
||||
else
|
||||
{
|
||||
- input_info.cbSize = actual_width * actual_height * 4;
|
||||
+ input_info.cbSize = ACTUAL_WIDTH * ACTUAL_HEIGHT * 4;
|
||||
check_mft_get_input_stream_info(transform, S_OK, &input_info);
|
||||
}
|
||||
|
||||
@@ -8608,7 +8607,7 @@ static HRESULT get_next_h264_output_sample(IMFTransform *transform, IMFSample **
|
||||
|
||||
static void test_h264_with_dxgi_manager(void)
|
||||
{
|
||||
- static const unsigned int set_width = 82, set_height = 84, aligned_width = 96, aligned_height = 96;
|
||||
+ static const unsigned int aligned_width = 96, aligned_height = 96;
|
||||
const struct attribute_desc output_sample_attributes[] =
|
||||
{
|
||||
ATTR_UINT32(MFSampleExtension_CleanPoint, 1),
|
||||
@@ -8617,7 +8616,7 @@ static void test_h264_with_dxgi_manager(void)
|
||||
const struct buffer_desc output_buffer_desc_nv12 =
|
||||
{
|
||||
.length = aligned_width * aligned_height * 3 / 2,
|
||||
- .compare = compare_nv12, .compare_rect = {.right = set_width, .bottom = set_height},
|
||||
+ .compare = compare_nv12, .compare_rect = {.right = SET_WIDTH, .bottom = SET_HEIGHT},
|
||||
.dump = dump_nv12, .size = {.cx = aligned_width, .cy = aligned_height},
|
||||
};
|
||||
const struct sample_desc output_sample_desc_nv12 =
|
||||
@@ -8775,8 +8774,8 @@ static void test_h264_with_dxgi_manager(void)
|
||||
ok(hr == S_OK, "got %#lx\n", hr);
|
||||
ok(!area.OffsetX.value && !area.OffsetX.fract, "got %d.%d.\n", area.OffsetX.value, area.OffsetX.fract);
|
||||
ok(!area.OffsetY.value && !area.OffsetY.fract, "got %d.%d.\n", area.OffsetY.value, area.OffsetY.fract);
|
||||
- ok(area.Area.cx == set_width, "got %ld.\n", area.Area.cx);
|
||||
- ok(area.Area.cy == set_height, "got %ld.\n", area.Area.cy);
|
||||
+ ok(area.Area.cx == SET_WIDTH, "got %ld.\n", area.Area.cx);
|
||||
+ ok(area.Area.cy == SET_HEIGHT, "got %ld.\n", area.Area.cy);
|
||||
|
||||
hr = IMFMediaType_GetGUID(type, &MF_MT_SUBTYPE, &guid);
|
||||
ok(hr == S_OK, "Failed to get subtype, hr %#lx.\n", hr);
|
||||
@@ -9149,7 +9148,7 @@ static IMFSample *create_d3d_sample(IMFVideoSampleAllocator *allocator, const vo
|
||||
|
||||
static void test_video_processor_with_dxgi_manager(void)
|
||||
{
|
||||
- static const unsigned int set_width = 82, set_height = 84, aligned_width = 96, aligned_height = 96;
|
||||
+ static const unsigned int aligned_width = 96, aligned_height = 96;
|
||||
const struct attribute_desc output_sample_attributes[] =
|
||||
{
|
||||
{0},
|
||||
@@ -9157,7 +9156,7 @@ static void test_video_processor_with_dxgi_manager(void)
|
||||
const struct buffer_desc output_buffer_desc_rgb32 =
|
||||
{
|
||||
.length = aligned_width * aligned_height * 4,
|
||||
- .compare = compare_rgb32, .compare_rect = {.right = set_width, .bottom = set_height},
|
||||
+ .compare = compare_rgb32, .compare_rect = {.right = SET_WIDTH, .bottom = SET_HEIGHT},
|
||||
.dump = dump_rgb32, .size = {.cx = aligned_width, .cy = aligned_height},
|
||||
};
|
||||
const struct sample_desc output_sample_desc_rgb32 =
|
||||
@@ -9169,9 +9168,9 @@ static void test_video_processor_with_dxgi_manager(void)
|
||||
|
||||
const struct buffer_desc output_buffer_desc_rgb32_crop =
|
||||
{
|
||||
- .length = set_width * set_height * 4,
|
||||
- .compare = compare_rgb32, .compare_rect = {.right = set_width, .bottom = set_height},
|
||||
- .dump = dump_rgb32, .size = {.cx = set_width, .cy = set_height},
|
||||
+ .length = SET_WIDTH * SET_HEIGHT * 4,
|
||||
+ .compare = compare_rgb32, .compare_rect = {.right = SET_WIDTH, .bottom = SET_HEIGHT},
|
||||
+ .dump = dump_rgb32, .size = {.cx = SET_WIDTH, .cy = SET_HEIGHT},
|
||||
};
|
||||
const struct sample_desc output_sample_desc_rgb32_crop =
|
||||
{
|
||||
@@ -9182,9 +9181,9 @@ static void test_video_processor_with_dxgi_manager(void)
|
||||
|
||||
const struct buffer_desc output_buffer_desc_abgr32_crop =
|
||||
{
|
||||
- .length = set_width * set_height * 4,
|
||||
- .compare = compare_abgr32, .compare_rect = {.right = set_width, .bottom = set_height},
|
||||
- .dump = dump_rgb32, .size = {.cx = set_width, .cy = set_height},
|
||||
+ .length = SET_WIDTH * SET_HEIGHT * 4,
|
||||
+ .compare = compare_abgr32, .compare_rect = {.right = SET_WIDTH, .bottom = SET_HEIGHT},
|
||||
+ .dump = dump_rgb32, .size = {.cx = SET_WIDTH, .cy = SET_HEIGHT},
|
||||
};
|
||||
const struct sample_desc output_sample_desc_abgr32_crop =
|
||||
{
|
||||
@@ -9211,7 +9210,7 @@ static void test_video_processor_with_dxgi_manager(void)
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
};
|
||||
|
||||
- static const MFVideoArea aperture = {.Area={set_width, set_height}};
|
||||
+ static const MFVideoArea aperture = {.Area={SET_WIDTH, SET_HEIGHT}};
|
||||
const struct attribute_desc nv12_with_aperture[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
@@ -9226,14 +9225,14 @@ static void test_video_processor_with_dxgi_manager(void)
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, set_width, set_height),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, SET_WIDTH, SET_HEIGHT),
|
||||
{0},
|
||||
};
|
||||
const struct attribute_desc abgr32_no_aperture[] =
|
||||
{
|
||||
ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video),
|
||||
ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_ABGR32),
|
||||
- ATTR_RATIO(MF_MT_FRAME_SIZE, set_width, set_height),
|
||||
+ ATTR_RATIO(MF_MT_FRAME_SIZE, SET_WIDTH, SET_HEIGHT),
|
||||
{0},
|
||||
};
|
||||
|
||||
@@ -9567,8 +9566,8 @@ static void test_video_processor_with_dxgi_manager(void)
|
||||
ok(!desc.CPUAccessFlags, "got %#x.\n", desc.CPUAccessFlags);
|
||||
ok(!desc.MiscFlags, "got %#x.\n", desc.MiscFlags);
|
||||
ok(desc.MipLevels == 1, "git %u.\n", desc.MipLevels);
|
||||
- ok(desc.Width == set_width, "got %u.\n", desc.Width);
|
||||
- ok(desc.Height == set_height, "got %u.\n", desc.Height);
|
||||
+ ok(desc.Width == SET_WIDTH, "got %u.\n", desc.Width);
|
||||
+ ok(desc.Height == SET_HEIGHT, "got %u.\n", desc.Height);
|
||||
|
||||
ID3D11Texture2D_Release(tex2d);
|
||||
IMFDXGIBuffer_Release(dxgi_buffer);
|
||||
@@ -9635,8 +9634,8 @@ skip_rgb32:
|
||||
ok(!desc.CPUAccessFlags, "got %#x.\n", desc.CPUAccessFlags);
|
||||
ok(!desc.MiscFlags, "got %#x.\n", desc.MiscFlags);
|
||||
ok(desc.MipLevels == 1, "git %u.\n", desc.MipLevels);
|
||||
- ok(desc.Width == set_width, "got %u.\n", desc.Width);
|
||||
- ok(desc.Height == set_height, "got %u.\n", desc.Height);
|
||||
+ ok(desc.Width == SET_WIDTH, "got %u.\n", desc.Width);
|
||||
+ ok(desc.Height == SET_HEIGHT, "got %u.\n", desc.Height);
|
||||
|
||||
ID3D11Texture2D_Release(tex2d);
|
||||
IMFDXGIBuffer_Release(dxgi_buffer);
|
||||
--
|
||||
2.45.2
|
||||
|
2
_service
2
_service
@ -3,7 +3,7 @@
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="url">https://github.com/wine-staging/wine-staging.git</param>
|
||||
<param name="revision">refs/tags/v9.12</param>
|
||||
<param name="revision">refs/tags/v9.13</param>
|
||||
<param name="match-tag">v*.*</param>
|
||||
<param name="scm">git</param>
|
||||
</service>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:09145ae720b2f9f18187970ba0640bbf3ced5ae8dc78af1d7d57f5077ec26af6
|
||||
size 30339552
|
@ -1,16 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEE2iNXmnTUrZr50/lFzvrI6q8XUZ0FAmZ/Ht8ACgkQzvrI6q8X
|
||||
UZ1OfxAAmFEZfzfu1SpMxwb9EcICPC4vpSY6S1jwGxryyyFLCszf7O7T6BFlshLd
|
||||
L07KVItJGPDJ7epn/05XGVUewXv13pTkNeBWDvTzVgSBpnLmTeXz6go2vNkrAsa/
|
||||
N0bZykzCzwPViPyGKsqXySFUhjIPH4qA2zeSaoXaqujw5i/LoFjqITUwKnCw1Z5f
|
||||
ENxZarrqHizvF4XNGjmz02M/rV0XcNb0M0VBB7gBgvsVKM33u/fT84wWJDmnPbgz
|
||||
YKvzfViaFwJAWO4UG4Jn1Mp9OGEKbHfQE74BKmc4pE+NCRWFmqaF23CYz7fVTgfx
|
||||
g2KgdfxsKfKuEAupMNL/gWDr+RrMRw7Ef48aaP/PJtM4KfgtbMX+P6kHFqlPqBy0
|
||||
p+dQGlBrfPE817b0lL7wnvsJu56t5nqQ1r9/k/YnYqhAvSwc2xyzQamI1GE10c6O
|
||||
YRmoZ9WieuGJMku1SpmrnKL95wcCVy58izz2tJ8bmDXOCePoeo6XSFDZQt8jZ2zQ
|
||||
RNfNgeyRTOqcoexLTAeY4ywUkXLn6efW85oVFY4hcjLQXSpjz7bUWbPhAzSEVDEp
|
||||
aZyGlV1HWOjixW5Toe4Oe6tnd5WjlbEMbo/Ca40DiIVgMGBUgUQqURhACI6V3ExI
|
||||
T4L02XW2UJbDFiSQbXl11DLVdtrgF+lsMQtCEkUjL0wajacsybs=
|
||||
=cfyW
|
||||
-----END PGP SIGNATURE-----
|
3
wine-9.13.tar.xz
Normal file
3
wine-9.13.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d79651d0fe38defe84cbd9e345f001c02ffc125979e29ebf203d6d487abf7348
|
||||
size 30542188
|
16
wine-9.13.tar.xz.sign
Normal file
16
wine-9.13.tar.xz.sign
Normal file
@ -0,0 +1,16 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEE2iNXmnTUrZr50/lFzvrI6q8XUZ0FAmaUOA0ACgkQzvrI6q8X
|
||||
UZ0UTg//eCZ8UojBbKWVjorV2EXIGQuP8nutSERnq4IVYV8J3gcMbXupy/WApmPM
|
||||
QDHJiIpQY0vF3nj3AV20fNRRXx0L3CNSRWH/qPoP1RMhilLTbfBP/NxzICjMMZ+x
|
||||
9/sQwy89SqICqJqsYSitMZv6Y9Gc77G4yJhmlHqSHg7soXaXBopT/1uTVqWS6aQ6
|
||||
xotMITLjTTxHMVKGZDo6Q4Zk4zqQEfR05OLEfLp2P87H4qRIRLozX8AP8h/sy+b2
|
||||
UqGaNR1vDI6Ik7nqNqLrVMWQDs2SGffay39vcoKSKTHstoHlNzNY/c82ABoTsUAU
|
||||
DuPR8+ToQlLdTL5aRQkeLZr+xF3hUN6GkDn3lt0HwPGjnaiKIlJm3rEC0Zd6cBcV
|
||||
s4BAODf9Eeh1WwIloDy0FgVQQs+EPNuDnof4bW+3D4zNZzg//PO2cppevVxz+yPz
|
||||
huy0XnJBuzDjKwH2+c0x7J6PBSwzaA9CSpQ0keV8/Tra3xVmZ4Ca4BZeafqPLz0Q
|
||||
JFKzW6sqLtASxa+5GoTQO5vuGjB7Bu5yj8qpf3Owdtor+iOkNIZMuqhtAA8M4L5n
|
||||
hfnn1OZ4Qno7b634BcMzTe5FTqY6zzFzcprBFfYMDMEUZ9MmMBpTcxcoO/8jxquq
|
||||
XRgAyuqLFL6TcWkXat+X8oDwwqHMCPdLE5luuuXMx6LmbF1osJA=
|
||||
=A0H5
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ebfdbfc71211f5ab1a0c03f5a119845caebb17a2fc7440995b16cfd44bedffe2
|
||||
size 7198720
|
3
wine-staging-9.13.tar.xz
Normal file
3
wine-staging-9.13.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:48727aef1f43e6235c254dd3bb8fbf115558b2b83f7787d335445d2631014e21
|
||||
size 7217336
|
17
wine.changes
17
wine.changes
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 15 07:20:41 UTC 2024 - Marcus Meissner <meissner@suse.com>
|
||||
|
||||
- Updated to 9.13 release
|
||||
- Support for loading ODBC Windows drivers.
|
||||
- More user32 data structures in shared memory.
|
||||
- More rewriting of the CMD.EXE engine.
|
||||
- Various bug fixes.
|
||||
- update staging to 9.13 release
|
||||
- removed 0001-mf-tests-Remove-static-specifier-on-variables-refere.patch: upstream
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 10 09:49:46 UTC 2024 - Marcus Meissner <meissner@suse.com>
|
||||
|
||||
- replaced 0001-mf-tests-use-defines-instead-of-static-const-for-old.patch
|
||||
by official commit 0001-mf-tests-Remove-static-specifier-on-variables-refere.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jun 29 07:00:18 UTC 2024 - Marcus Meissner <meissner@suse.com>
|
||||
|
||||
|
@ -41,8 +41,8 @@
|
||||
%endif
|
||||
|
||||
# needs to be on top due to usage of %version macro below
|
||||
%define realver 9.12
|
||||
Version: 9.12
|
||||
%define realver 9.13
|
||||
Version: 9.13
|
||||
Release: 0
|
||||
|
||||
%if "%{flavor}" != ""
|
||||
@ -176,7 +176,7 @@ Source7: baselibs.conf
|
||||
Source8: wine-rpmlintrc
|
||||
# SUSE specific patches
|
||||
# - currently none, but add them here
|
||||
Patch0: 0001-mf-tests-use-defines-instead-of-static-const-for-old.patch
|
||||
#Patch0: 0001-mf-tests-Remove-static-specifier-on-variables-refere.patch
|
||||
Recommends: wine-gecko >= 2.47.4
|
||||
Conflicts: wine-gecko < 2.47.4
|
||||
Recommends: wine-mono >= 9.2.0
|
||||
@ -197,7 +197,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
ExclusiveArch: %{ix86} x86_64 ppc armv7l armv7hl aarch64
|
||||
%if %{staging}
|
||||
# upstream patch target version
|
||||
%define staging_version 9.12
|
||||
%define staging_version 9.13
|
||||
Source100: wine-staging-%{staging_version}.tar.xz
|
||||
BuildRequires: gtk3-devel
|
||||
BuildRequires: libOSMesa-devel
|
||||
|
Loading…
Reference in New Issue
Block a user