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
9ce38b5f
Commit
9ce38b5f
authored
Nov 07, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix libvlc_media_player_(prev|next)_chapter assertion
The variables are void, not boolean.
parent
be87c5ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/control/media_player.c
src/control/media_player.c
+4
-4
No files found.
src/control/media_player.c
View file @
9ce38b5f
...
...
@@ -1123,8 +1123,8 @@ void libvlc_media_player_next_chapter( libvlc_media_player_t *p_mi )
return
;
int
i_type
=
var_Type
(
p_input_thread
,
"next-chapter"
);
var_
SetBool
(
p_input_thread
,
(
i_type
&
VLC_VAR_TYPE
)
!=
0
?
"next-chapter"
:
"next-title"
,
true
);
var_
TriggerCallback
(
p_input_thread
,
(
i_type
&
VLC_VAR_TYPE
)
!=
0
?
"next-chapter"
:
"next-title"
);
vlc_object_release
(
p_input_thread
);
}
...
...
@@ -1138,8 +1138,8 @@ void libvlc_media_player_previous_chapter( libvlc_media_player_t *p_mi )
return
;
int
i_type
=
var_Type
(
p_input_thread
,
"next-chapter"
);
var_
SetBool
(
p_input_thread
,
(
i_type
&
VLC_VAR_TYPE
)
!=
0
?
"prev-chapter"
:
"prev-title"
,
true
);
var_
TriggerCallback
(
p_input_thread
,
(
i_type
&
VLC_VAR_TYPE
)
!=
0
?
"prev-chapter"
:
"prev-title"
);
vlc_object_release
(
p_input_thread
);
}
...
...
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