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
964658d0
Commit
964658d0
authored
Aug 13, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide module_bank
parent
79ca9d67
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
19 deletions
+14
-19
src/modules/modules.c
src/modules/modules.c
+14
-0
src/modules/modules.h
src/modules/modules.h
+0
-19
No files found.
src/modules/modules.c
View file @
964658d0
...
...
@@ -58,6 +58,20 @@
#include "modules/modules.h"
typedef
struct
{
unsigned
i_usage
;
/* Plugins cache */
int
i_cache
;
module_cache_t
**
pp_cache
;
int
i_loaded_cache
;
module_cache_t
**
pp_loaded_cache
;
module_t
*
head
;
}
module_bank_t
;
static
module_bank_t
*
p_module_bank
=
NULL
;
static
vlc_mutex_t
module_lock
=
VLC_STATIC_MUTEX
;
...
...
src/modules/modules.h
View file @
964658d0
...
...
@@ -26,25 +26,6 @@
typedef
struct
module_cache_t
module_cache_t
;
/*****************************************************************************
* module_bank_t: the module bank
*****************************************************************************
* This variable is accessed by any function using modules.
*****************************************************************************/
typedef
struct
module_bank_t
{
unsigned
i_usage
;
/* Plugins cache */
int
i_cache
;
module_cache_t
**
pp_cache
;
int
i_loaded_cache
;
module_cache_t
**
pp_loaded_cache
;
module_t
*
head
;
}
module_bank_t
;
/*****************************************************************************
* Module cache description structure
*****************************************************************************/
...
...
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