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
8f0d6292
Commit
8f0d6292
authored
May 04, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made vout_ShowText* private to the core.
parent
e875fef5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
7 deletions
+5
-7
include/vlc_osd.h
include/vlc_osd.h
+0
-5
src/libvlccore.sym
src/libvlccore.sym
+0
-2
src/video_output/vout_internal.h
src/video_output/vout_internal.h
+5
-0
No files found.
include/vlc_osd.h
View file @
8f0d6292
...
@@ -624,11 +624,6 @@ VLC_EXPORT( int, osd_Icon, ( vlc_object_t *, spu_t *, int, int, int, int, int, s
...
@@ -624,11 +624,6 @@ VLC_EXPORT( int, osd_Icon, ( vlc_object_t *, spu_t *, int, int, int, int, int, s
/**********************************************************************
/**********************************************************************
* Vout text and widget overlays
* Vout text and widget overlays
**********************************************************************/
**********************************************************************/
VLC_EXPORT
(
int
,
vout_ShowTextRelative
,
(
vout_thread_t
*
,
int
,
char
*
,
const
text_style_t
*
,
int
,
int
,
int
,
mtime_t
)
);
VLC_EXPORT
(
int
,
vout_ShowTextAbsolute
,
(
vout_thread_t
*
,
int
,
const
char
*
,
const
text_style_t
*
,
int
,
int
,
int
,
mtime_t
,
mtime_t
)
);
VLC_EXPORT
(
int
,
vout_OSDEpg
,
(
vout_thread_t
*
,
input_item_t
*
)
);
VLC_EXPORT
(
int
,
vout_OSDEpg
,
(
vout_thread_t
*
,
input_item_t
*
)
);
/**
/**
...
...
src/libvlccore.sym
View file @
8f0d6292
...
@@ -621,8 +621,6 @@ vout_OSDMessage
...
@@ -621,8 +621,6 @@ vout_OSDMessage
vout_OSDEpg
vout_OSDEpg
vout_OSDSlider
vout_OSDSlider
vout_Request
vout_Request
vout_ShowTextAbsolute
vout_ShowTextRelative
vout_window_New
vout_window_New
vout_window_Control
vout_window_Control
vout_window_Delete
vout_window_Delete
...
...
src/video_output/vout_internal.h
View file @
8f0d6292
...
@@ -169,5 +169,10 @@ void vout_DisplayWrapper(vout_thread_t *, picture_t *);
...
@@ -169,5 +169,10 @@ void vout_DisplayWrapper(vout_thread_t *, picture_t *);
/* */
/* */
int
spu_ProcessMouse
(
spu_t
*
,
const
vlc_mouse_t
*
,
const
video_format_t
*
);
int
spu_ProcessMouse
(
spu_t
*
,
const
vlc_mouse_t
*
,
const
video_format_t
*
);
/* */
int
vout_ShowTextRelative
(
vout_thread_t
*
,
int
,
char
*
,
const
text_style_t
*
,
int
,
int
,
int
,
mtime_t
);
int
vout_ShowTextAbsolute
(
vout_thread_t
*
,
int
,
const
char
*
,
const
text_style_t
*
,
int
,
int
,
int
,
mtime_t
,
mtime_t
);
#endif
#endif
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