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
7db94f4d
Commit
7db94f4d
authored
Jan 24, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not export unimplemented functions
parent
3cf52073
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
128 deletions
+0
-128
include/vlc/libvlc_media_library.h
include/vlc/libvlc_media_library.h
+0
-10
include/vlc/libvlc_media_player.h
include/vlc/libvlc_media_player.h
+0
-18
src/control/media_library.c
src/control/media_library.c
+0
-13
src/control/video.c
src/control/video.c
+0
-84
src/libvlc.sym
src/libvlc.sym
+0
-3
No files found.
include/vlc/libvlc_media_library.h
View file @
7db94f4d
...
...
@@ -86,16 +86,6 @@ VLC_PUBLIC_API void
libvlc_media_library_load
(
libvlc_media_library_t
*
p_mlib
,
libvlc_exception_t
*
p_e
);
/**
* Save media library.
*
* \param p_mlib media library object
* \param p_e an initialized exception object.
*/
VLC_PUBLIC_API
void
libvlc_media_library_save
(
libvlc_media_library_t
*
p_mlib
,
libvlc_exception_t
*
p_e
);
/**
* Get media library subitems.
*
...
...
include/vlc/libvlc_media_player.h
View file @
7db94f4d
...
...
@@ -743,24 +743,6 @@ VLC_PUBLIC_API void libvlc_video_set_crop_geometry( libvlc_media_player_t *, con
*/
VLC_PUBLIC_API
void
libvlc_toggle_teletext
(
libvlc_media_player_t
*
,
libvlc_exception_t
*
);
/**
* Get current teletext page requested.
*
* \param p_mediaplayer the media player
* \param p_e an initialized exception pointer
* \return the current teletext page requested.
*/
VLC_PUBLIC_API
int
libvlc_video_get_teletext
(
libvlc_media_player_t
*
,
libvlc_exception_t
*
);
/**
* Set new teletext page to retrieve.
*
* \param p_mediaplayer the media player
* \param i_page teletex page number requested
* \param p_e an initialized exception pointer
*/
VLC_PUBLIC_API
void
libvlc_video_set_teletext
(
libvlc_media_player_t
*
,
int
,
libvlc_exception_t
*
);
/**
* Get number of available video tracks.
*
...
...
src/control/media_library.c
View file @
7db94f4d
...
...
@@ -60,7 +60,6 @@ libvlc_media_library_t *
libvlc_media_library_new
(
libvlc_instance_t
*
p_inst
,
libvlc_exception_t
*
p_e
)
{
(
void
)
p_e
;
libvlc_media_library_t
*
p_mlib
;
p_mlib
=
malloc
(
sizeof
(
libvlc_media_library_t
));
...
...
@@ -136,18 +135,6 @@ libvlc_media_library_load( libvlc_media_library_t * p_mlib,
return
;
}
/**************************************************************************
* save (Public)
**************************************************************************/
void
libvlc_media_library_save
(
libvlc_media_library_t
*
p_mlib
,
libvlc_exception_t
*
p_e
)
{
(
void
)
p_mlib
;
libvlc_exception_raise
(
p_e
);
libvlc_printerr
(
"Function not implemented"
);
}
/**************************************************************************
* media_list (Public)
**************************************************************************/
...
...
src/control/video.c
View file @
7db94f4d
...
...
@@ -414,61 +414,6 @@ void libvlc_video_set_crop_geometry( libvlc_media_player_t *p_mi,
}
}
int
libvlc_video_get_teletext
(
libvlc_media_player_t
*
p_mi
,
libvlc_exception_t
*
p_e
)
{
#if 0
vout_thread_t *p_vout = GetVout( p_mi, p_e );
vlc_object_t *p_vbi;
int i_ret = -1;
if( !p_vout ) return i_ret;
p_vbi = (vlc_object_t *) vlc_object_find_name( p_vout, "zvbi",
FIND_CHILD );
if( p_vbi )
{
i_ret = var_GetInteger( p_vbi, "vbi-page" );
vlc_object_release( p_vbi );
}
vlc_object_release( p_vout );
return i_ret;
#else
VLC_UNUSED
(
p_mi
);
VLC_UNUSED
(
p_e
);
return
-
1
;
#endif
}
void
libvlc_video_set_teletext
(
libvlc_media_player_t
*
p_mi
,
int
i_page
,
libvlc_exception_t
*
p_e
)
{
#if 0
vout_thread_t *p_vout = GetVout( p_mi, p_e );
vlc_object_t *p_vbi;
int i_ret = -1;
if( !p_vout ) return;
p_vbi = (vlc_object_t *) vlc_object_find_name( p_vout, "zvbi",
FIND_CHILD );
if( p_vbi )
{
i_ret = var_SetInteger( p_vbi, "vbi-page", i_page );
vlc_object_release( p_vbi );
if( i_ret )
libvlc_exception_raise( p_e,
"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
}
void
libvlc_toggle_teletext
(
libvlc_media_player_t
*
p_mi
,
libvlc_exception_t
*
p_e
)
{
...
...
@@ -483,35 +428,6 @@ void libvlc_toggle_teletext( libvlc_media_player_t *p_mi,
return
;
}
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 );
if( p_vbi )
{
if( b_selected )
{
/* FIXME Gni, why that ? */
i_ret = var_SetInteger( p_vbi, "vbi-page",
var_GetInteger( p_vbi, "vbi-page" ) );
if( i_ret )
libvlc_exception_raise( p_e,
"Unexpected error while setting teletext page" );
}
else
{
/* FIXME Gni^2 */
i_ret = var_SetBool( p_vbi, "vbi-opaque",
!var_GetBool( p_vbi, "vbi-opaque" ) );
if( i_ret )
libvlc_exception_raise( p_e,
"Unexpected error while setting teletext transparency" );
}
vlc_object_release( p_vbi );
}
else
#endif
if
(
b_selected
)
{
var_SetInteger
(
p_input_thread
,
"spu-es"
,
-
1
);
...
...
src/libvlc.sym
View file @
7db94f4d
...
...
@@ -73,7 +73,6 @@ libvlc_media_library_media_list
libvlc_media_library_new
libvlc_media_library_release
libvlc_media_library_retain
libvlc_media_library_save
libvlc_media_list_add_file_content
libvlc_media_list_add_media
libvlc_media_list_count
...
...
@@ -194,7 +193,6 @@ libvlc_video_get_scale
libvlc_video_get_spu
libvlc_video_get_spu_count
libvlc_video_get_spu_description
libvlc_video_get_teletext
libvlc_video_get_title_description
libvlc_video_get_track
libvlc_video_get_track_count
...
...
@@ -212,7 +210,6 @@ libvlc_video_set_mouse_input
libvlc_video_set_scale
libvlc_video_set_spu
libvlc_video_set_subtitle_file
libvlc_video_set_teletext
libvlc_video_set_track
libvlc_video_take_snapshot
libvlc_vlm_add_broadcast
...
...
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