Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
b670c924
Commit
b670c924
authored
Sep 08, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Temporary fix for compilation
parent
d9c2006c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
src/control/event.c
src/control/event.c
+1
-0
src/control/media_list_player.c
src/control/media_list_player.c
+1
-0
src/control/video.c
src/control/video.c
+7
-1
No files found.
src/control/event.c
View file @
b670c924
...
...
@@ -358,6 +358,7 @@ void libvlc_event_detach( libvlc_event_manager_t *p_event_manager,
void
*
p_user_data
,
libvlc_exception_t
*
p_e
)
{
VLC_UNUSED
(
p_e
);
libvlc_event_listeners_group_t
*
listeners_group
;
libvlc_event_listener_t
*
listener
;
int
i
,
j
;
...
...
src/control/media_list_player.c
View file @
b670c924
...
...
@@ -566,6 +566,7 @@ void libvlc_media_list_player_set_media_player(libvlc_media_list_player_t * p_ml
**************************************************************************/
void
libvlc_media_list_player_set_media_list
(
libvlc_media_list_player_t
*
p_mlp
,
libvlc_media_list_t
*
p_mlist
,
libvlc_exception_t
*
p_e
)
{
VLC_UNUSED
(
p_e
);
assert
(
p_mlist
);
lock
(
p_mlp
);
...
...
src/control/video.c
View file @
b670c924
...
...
@@ -425,6 +425,8 @@ int libvlc_video_get_teletext( libvlc_media_player_t *p_mi,
vlc_object_release( p_vout );
return i_ret;
#else
VLC_UNUSED
(
p_mi
);
VLC_UNUSED
(
p_e
);
return
-
1
;
#endif
}
...
...
@@ -450,6 +452,10 @@ void libvlc_video_set_teletext( libvlc_media_player_t *p_mi, int i_page,
"Unexpected error while setting teletext page" );
}
vlc_object_release( p_vout );
#else
VLC_UNUSED
(
p_mi
);
VLC_UNUSED
(
p_e
);
VLC_UNUSED
(
i_page
);
#endif
}
...
...
@@ -457,7 +463,6 @@ void libvlc_toggle_teletext( libvlc_media_player_t *p_mi,
libvlc_exception_t
*
p_e
)
{
input_thread_t
*
p_input_thread
;
int
i_ret
;
p_input_thread
=
libvlc_get_input_thread
(
p_mi
,
p_e
);
if
(
!
p_input_thread
)
return
;
...
...
@@ -469,6 +474,7 @@ void libvlc_toggle_teletext( libvlc_media_player_t *p_mi,
}
const
bool
b_selected
=
var_GetInteger
(
p_input_thread
,
"teletext-es"
)
>=
0
;
#if 0
int i_ret;
vlc_object_t *p_vbi;
p_vbi = (vlc_object_t *)vlc_object_find_name( p_input_thread, "zvbi",
FIND_CHILD );
...
...
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