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
7b1cd547
Commit
7b1cd547
authored
Feb 07, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modules: remove leading underscores
parent
f8f8faa6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
15 deletions
+18
-15
include/vlc_modules.h
include/vlc_modules.h
+4
-4
src/libvlccore.sym
src/libvlccore.sym
+2
-2
src/modules/modules.c
src/modules/modules.c
+7
-4
src/modules/modules.h
src/modules/modules.h
+5
-5
No files found.
include/vlc_modules.h
View file @
7b1cd547
...
...
@@ -30,10 +30,10 @@
* Exported functions.
*****************************************************************************/
#define module_need(a,b,c,d) __module_need(VLC_OBJECT(a),b,c,d)
VLC_EXPORT
(
module_t
*
,
__module_need
,
(
vlc_object_t
*
,
const
char
*
,
const
char
*
,
bool
)
);
#define module_unneed(a,b) __module_unneed(VLC_OBJECT(a),b)
VLC_EXPORT
(
void
,
__module_unneed
,
(
vlc_object_t
*
,
module_t
*
)
);
VLC_EXPORT
(
module_t
*
,
module_need
,
(
vlc_object_t
*
,
const
char
*
,
const
char
*
,
bool
)
);
#define module_need(a,b,c,d) module_need(VLC_OBJECT(a),b,c,d)
VLC_EXPORT
(
void
,
module_unneed
,
(
vlc_object_t
*
,
module_t
*
)
);
#define module_unneed(a,b) module_unneed(VLC_OBJECT(a),b)
VLC_EXPORT
(
bool
,
module_exists
,
(
const
char
*
)
);
VLC_EXPORT
(
module_t
*
,
module_find
,
(
const
char
*
)
);
...
...
src/libvlccore.sym
View file @
7b1cd547
...
...
@@ -248,10 +248,10 @@ module_gettext
module_hold
module_list_free
module_list_get
__
module_need
module_need
module_provides
module_release
__
module_unneed
module_unneed
msg_DisableObjectPrinting
msg_EnableObjectPrinting
msg_Generic
...
...
src/modules/modules.c
View file @
7b1cd547
...
...
@@ -83,6 +83,7 @@ static void DupModule ( module_t * );
static
void
UndupModule
(
module_t
*
);
#endif
#undef module_InitBank
/**
* Init bank
*
...
...
@@ -91,7 +92,7 @@ static void UndupModule ( module_t * );
* \param p_this vlc object structure
* \return nothing
*/
void
__
module_InitBank
(
vlc_object_t
*
p_this
)
void
module_InitBank
(
vlc_object_t
*
p_this
)
{
module_bank_t
*
p_bank
=
NULL
;
...
...
@@ -387,6 +388,7 @@ static int modulecmp (const void *a, const void *b)
return
lb
->
i_score
-
la
->
i_score
;
}
#undef module_need
/**
* module Need
*
...
...
@@ -399,8 +401,8 @@ static int modulecmp (const void *a, const void *b)
* but the same capability
* \return the module or NULL in case of a failure
*/
module_t
*
__
module_need
(
vlc_object_t
*
p_this
,
const
char
*
psz_capability
,
const
char
*
psz_name
,
bool
b_strict
)
module_t
*
module_need
(
vlc_object_t
*
p_this
,
const
char
*
psz_capability
,
const
char
*
psz_name
,
bool
b_strict
)
{
stats_TimerStart
(
p_this
,
"module_need()"
,
STATS_TIMER_MODULE_NEED
);
...
...
@@ -624,6 +626,7 @@ found_shortcut:
return
p_module
;
}
#undef module_unneed
/**
* Module unneed
*
...
...
@@ -633,7 +636,7 @@ found_shortcut:
* \param p_module the module structure
* \return nothing
*/
void
__
module_unneed
(
vlc_object_t
*
p_this
,
module_t
*
p_module
)
void
module_unneed
(
vlc_object_t
*
p_this
,
module_t
*
p_module
)
{
/* Use the close method */
if
(
p_module
->
pf_deactivate
)
...
...
src/modules/modules.h
View file @
7b1cd547
...
...
@@ -25,8 +25,8 @@
# error This header file can only be included from LibVLC.
#endif
#ifndef
__
LIBVLC_MODULES_H
# define
__
LIBVLC_MODULES_H 1
#ifndef LIBVLC_MODULES_H
# define LIBVLC_MODULES_H 1
/* Number of tries before we unload an unused module */
...
...
@@ -142,8 +142,8 @@ struct module_t
module_t
*
vlc_module_create
(
vlc_object_t
*
);
module_t
*
vlc_submodule_create
(
module_t
*
module
);
#define module_InitBank(a) __module_InitBank(VLC_OBJECT(a))
void
__module_InitBank
(
vlc_object_t
*
);
void
module_InitBank
(
vlc_object_t
*
);
#define module_InitBank(a) module_InitBank(VLC_OBJECT(a))
void
module_LoadPlugins
(
vlc_object_t
*
);
#define module_LoadPlugins(a) module_LoadPlugins(VLC_OBJECT(a))
void
module_EndBank
(
vlc_object_t
*
,
bool
);
...
...
@@ -163,4 +163,4 @@ void CacheLoad (vlc_object_t *, module_bank_t *, const char *);
void
CacheSave
(
vlc_object_t
*
,
const
char
*
,
module_cache_t
*
const
*
,
size_t
);
module_cache_t
*
CacheFind
(
module_bank_t
*
,
const
char
*
,
int64_t
,
int64_t
);
#endif
/* !
__
LIBVLC_MODULES_H */
#endif
/* !LIBVLC_MODULES_H */
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