Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
2b7b3b77
Commit
2b7b3b77
authored
Aug 17, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc_media_player: fix object leak (input thread).
parent
74dc7c83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/control/media_player.c
src/control/media_player.c
+5
-1
No files found.
src/control/media_player.c
View file @
2b7b3b77
...
@@ -1092,6 +1092,7 @@ float libvlc_media_player_get_rate(
...
@@ -1092,6 +1092,7 @@ float libvlc_media_player_get_rate(
b_can_rewind
=
var_GetBool
(
p_input_thread
,
"can-rewind"
);
b_can_rewind
=
var_GetBool
(
p_input_thread
,
"can-rewind"
);
if
(
(
val
.
i_int
<
0
)
&&
!
b_can_rewind
)
if
(
(
val
.
i_int
<
0
)
&&
!
b_can_rewind
)
{
{
vlc_object_release
(
p_input_thread
);
libvlc_exception_raise
(
p_e
,
"invalid rate"
);
libvlc_exception_raise
(
p_e
,
"invalid rate"
);
return
0
.
0
;
return
0
.
0
;
}
}
...
@@ -1241,11 +1242,14 @@ int libvlc_media_player_can_pause( libvlc_media_player_t *p_mi,
...
@@ -1241,11 +1242,14 @@ int libvlc_media_player_can_pause( libvlc_media_player_t *p_mi,
return
val
.
b_bool
;
return
val
.
b_bool
;
}
}
void
libvlc_media_player_next_frame
(
libvlc_media_player_t
*
p_mi
,
libvlc_exception_t
*
p_e
)
void
libvlc_media_player_next_frame
(
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
);
input_thread_t
*
p_input_thread
=
libvlc_get_input_thread
(
p_mi
,
p_e
);
if
(
p_input_thread
!=
NULL
)
if
(
p_input_thread
!=
NULL
)
{
var_TriggerCallback
(
p_input_thread
,
"frame-next"
);
var_TriggerCallback
(
p_input_thread
,
"frame-next"
);
vlc_object_release
(
p_input_thread
);
}
else
else
libvlc_exception_raise
(
p_e
,
"Input thread is NULL"
);
libvlc_exception_raise
(
p_e
,
"Input thread is 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