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
8805f042
Commit
8805f042
authored
May 28, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 28, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfmediaengine: Keep loop flag.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e5b25e87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
main.c
dlls/mfmediaengine/main.c
+17
-3
mfmediaengine.c
dlls/mfmediaengine/tests/mfmediaengine.c
+0
-3
No files found.
dlls/mfmediaengine/main.c
View file @
8805f042
...
...
@@ -60,6 +60,7 @@ enum media_engine_flags
/* MF_MEDIA_ENGINE_CREATEFLAGS_MASK is 0x1f. */
FLAGS_ENGINE_SHUT_DOWN
=
0x20
,
FLAGS_ENGINE_AUTO_PLAY
=
0x40
,
FLAGS_ENGINE_LOOP
=
0x80
,
};
struct
media_engine
...
...
@@ -342,16 +343,29 @@ static HRESULT WINAPI media_engine_SetAutoPlay(IMFMediaEngine *iface, BOOL autop
static
BOOL
WINAPI
media_engine_GetLoop
(
IMFMediaEngine
*
iface
)
{
FIXME
(
"(%p): stub.
\n
"
,
iface
);
struct
media_engine
*
engine
=
impl_from_IMFMediaEngine
(
iface
);
BOOL
value
;
return
FALSE
;
TRACE
(
"%p.
\n
"
,
iface
);
EnterCriticalSection
(
&
engine
->
cs
);
value
=
!!
(
engine
->
flags
&
FLAGS_ENGINE_LOOP
);
LeaveCriticalSection
(
&
engine
->
cs
);
return
value
;
}
static
HRESULT
WINAPI
media_engine_SetLoop
(
IMFMediaEngine
*
iface
,
BOOL
loop
)
{
struct
media_engine
*
engine
=
impl_from_IMFMediaEngine
(
iface
);
FIXME
(
"(%p, %d): stub.
\n
"
,
iface
,
loop
);
return
E_NOTIMPL
;
EnterCriticalSection
(
&
engine
->
cs
);
media_engine_set_flag
(
engine
,
FLAGS_ENGINE_LOOP
,
loop
);
LeaveCriticalSection
(
&
engine
->
cs
);
return
S_OK
;
}
static
HRESULT
WINAPI
media_engine_Play
(
IMFMediaEngine
*
iface
)
...
...
dlls/mfmediaengine/tests/mfmediaengine.c
View file @
8805f042
...
...
@@ -341,7 +341,6 @@ todo_wine
ok
(
hr
==
S_OK
,
"Unexpected hr %#x.
\n
"
,
hr
);
state
=
IMFMediaEngine_GetAutoPlay
(
media_engine
);
todo_wine
ok
(
!!
state
,
"Unexpected state.
\n
"
);
/* Loop mode is still accessible. */
...
...
@@ -349,11 +348,9 @@ todo_wine
ok
(
!
state
,
"Unexpected state.
\n
"
);
hr
=
IMFMediaEngine_SetLoop
(
media_engine
,
TRUE
);
todo_wine
ok
(
hr
==
S_OK
,
"Unexpected hr %#x.
\n
"
,
hr
);
state
=
IMFMediaEngine_GetLoop
(
media_engine
);
todo_wine
ok
(
!!
state
,
"Unexpected state.
\n
"
);
hr
=
IMFMediaEngine_Play
(
media_engine
);
...
...
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