Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
daaf546f
Commit
daaf546f
authored
Jun 24, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Jun 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/memallocator: Set the AM_SAMPLE_TYPECHANGED flag.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
838f6834
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
memallocator.c
dlls/quartz/memallocator.c
+7
-0
memallocator.c
dlls/quartz/tests/memallocator.c
+1
-1
No files found.
dlls/quartz/memallocator.c
View file @
daaf546f
...
...
@@ -685,8 +685,15 @@ static HRESULT WINAPI StdMediaSample2_SetMediaType(IMediaSample2 * iface, AM_MED
DeleteMediaType
(
This
->
props
.
pMediaType
);
This
->
props
.
pMediaType
=
NULL
;
}
if
(
!
pMediaType
)
{
This
->
props
.
dwSampleFlags
&=
~
AM_SAMPLE_TYPECHANGED
;
return
S_OK
;
}
This
->
props
.
dwSampleFlags
|=
AM_SAMPLE_TYPECHANGED
;
if
(
!
(
This
->
props
.
pMediaType
=
CoTaskMemAlloc
(
sizeof
(
AM_MEDIA_TYPE
))))
return
E_OUTOFMEMORY
;
...
...
dlls/quartz/tests/memallocator.c
View file @
daaf546f
...
...
@@ -509,7 +509,7 @@ static void test_sample_properties(void)
hr
=
IMediaSample2_GetProperties
(
sample2
,
sizeof
(
props
),
(
BYTE
*
)
&
props
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
todo_wine
ok
(
props
.
dwSampleFlags
==
AM_SAMPLE_TYPECHANGED
,
"Got flags %#x.
\n
"
,
props
.
dwSampleFlags
);
ok
(
props
.
dwSampleFlags
==
AM_SAMPLE_TYPECHANGED
,
"Got flags %#x.
\n
"
,
props
.
dwSampleFlags
);
ok
(
!
memcmp
(
props
.
pMediaType
,
&
expect_mt
,
sizeof
(
AM_MEDIA_TYPE
)),
"Media types didn't match.
\n
"
);
hr
=
IMediaSample_SetMediaType
(
sample
,
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