Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
25872a51
Commit
25872a51
authored
Oct 13, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
evr/tests: Add a test for MF_SA_REQUIRED_SAMPLE_COUNT.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
421924ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
evr.c
dlls/evr/tests/evr.c
+6
-0
No files found.
dlls/evr/tests/evr.c
View file @
25872a51
...
@@ -658,6 +658,12 @@ todo_wine
...
@@ -658,6 +658,12 @@ todo_wine
attributes
=
NULL
;
attributes
=
NULL
;
hr
=
IMFTransform_GetInputStreamAttributes
(
transform
,
0
,
&
attributes
);
hr
=
IMFTransform_GetInputStreamAttributes
(
transform
,
0
,
&
attributes
);
ok
(
hr
==
S_OK
,
"Unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Unexpected hr %#x.
\n
"
,
hr
);
hr
=
IMFAttributes_GetCount
(
attributes
,
&
count
);
ok
(
hr
==
S_OK
,
"Unexpected hr %#x.
\n
"
,
hr
);
ok
(
count
==
1
,
"Unexpected count %u.
\n
"
,
count
);
hr
=
IMFAttributes_GetUINT32
(
attributes
,
&
MF_SA_REQUIRED_SAMPLE_COUNT
,
&
count
);
ok
(
hr
==
S_OK
,
"Unexpected hr %#x.
\n
"
,
hr
);
ok
(
count
==
1
,
"Unexpected count %u.
\n
"
,
count
);
ok
(
!!
attributes
,
"Unexpected attributes.
\n
"
);
ok
(
!!
attributes
,
"Unexpected attributes.
\n
"
);
attributes2
=
NULL
;
attributes2
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment