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
aefe3ed8
Commit
aefe3ed8
authored
Aug 16, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not export thread init functions.
They should not be used by plugins. And in fact, they are not.
parent
be50cf5b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
7 deletions
+18
-7
include/vlc_threads_funcs.h
include/vlc_threads_funcs.h
+0
-2
src/libvlc.h
src/libvlc.h
+18
-3
src/libvlc.sym
src/libvlc.sym
+0
-2
No files found.
include/vlc_threads_funcs.h
View file @
aefe3ed8
...
...
@@ -35,8 +35,6 @@
/*****************************************************************************
* Function definitions
*****************************************************************************/
VLC_EXPORT
(
int
,
__vlc_threads_init
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_threads_end
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_mutex_init
,
(
vlc_object_t
*
,
vlc_mutex_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_mutex_destroy
,
(
const
char
*
,
int
,
vlc_mutex_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_cond_init
,
(
vlc_object_t
*
,
vlc_cond_t
*
)
);
...
...
src/libvlc.h
View file @
aefe3ed8
...
...
@@ -33,6 +33,24 @@ extern const size_t libvlc_config_count;
extern
const
struct
hotkey
libvlc_hotkeys
[];
extern
const
size_t
libvlc_hotkeys_size
;
/*
* Threads subsystem
*/
int
__vlc_threads_init
(
vlc_object_t
*
);
int
__vlc_threads_end
(
vlc_object_t
*
);
/*
* CPU capabilities
*/
extern
uint32_t
cpu_flags
;
uint32_t
CPUCapabilities
(
void
);
/*
* LibVLC objects stuff
*/
extern
vlc_object_t
*
vlc_custom_create
(
vlc_object_t
*
p_this
,
size_t
i_size
,
int
i_type
,
const
char
*
psz_type
);
...
...
@@ -76,9 +94,6 @@ struct libvlc_global_data_t
libvlc_global_data_t
*
vlc_global
(
void
);
extern
uint32_t
cpu_flags
;
uint32_t
CPUCapabilities
(
void
);
/* Private LibVLC data for each objects */
struct
vlc_object_internals_t
{
...
...
src/libvlc.sym
View file @
aefe3ed8
...
...
@@ -390,9 +390,7 @@ vlc_strndup
__vlc_thread_create
__vlc_thread_join
__vlc_thread_ready
__vlc_threads_end
__vlc_thread_set_priority
__vlc_threads_init
vlc_ureduce
vlc_vasprintf
VLC_Version
...
...
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