Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
d6b67211
Commit
d6b67211
authored
Mar 17, 2009
by
JP Dinger
Committed by
Rémi Denis-Courmont
Mar 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify libvlc_media_player_is_playing(). Should really be inline.
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
57fabbef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
18 deletions
+1
-18
src/control/media_player.c
src/control/media_player.c
+1
-18
No files found.
src/control/media_player.c
View file @
d6b67211
...
...
@@ -673,25 +673,8 @@ void libvlc_media_player_pause( libvlc_media_player_t *p_mi,
int
libvlc_media_player_is_playing
(
libvlc_media_player_t
*
p_mi
,
libvlc_exception_t
*
p_e
)
{
input_thread_t
*
p_input_thread
=
libvlc_get_input_thread
(
p_mi
,
p_e
);
if
(
!
p_input_thread
)
{
/* We do return the right value, no need to throw an exception */
if
(
libvlc_exception_raised
(
p_e
)
)
libvlc_exception_clear
(
p_e
);
return
0
;
}
libvlc_state_t
state
=
libvlc_media_player_get_state
(
p_mi
,
p_e
);
vlc_object_release
(
p_input_thread
);
if
(
state
==
libvlc_Playing
)
{
return
1
;
}
return
0
;
return
libvlc_Playing
==
state
;
}
...
...
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