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
63ffc8e1
Commit
63ffc8e1
authored
Sep 26, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua_extension: remove dummy variable (we want to run every extension anyway).
parent
122b75e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/misc/lua/extension.c
modules/misc/lua/extension.c
+6
-6
No files found.
modules/misc/lua/extension.c
View file @
63ffc8e1
...
...
@@ -56,7 +56,7 @@ const char* const ppsz_capabilities[] = {
static
int
ScanExtensions
(
extensions_manager_t
*
p_this
);
static
int
ScanLuaCallback
(
vlc_object_t
*
p_this
,
const
char
*
psz_script
,
void
*
pb_continue
);
void
*
dummy
);
static
int
Control
(
extensions_manager_t
*
,
int
,
va_list
);
static
int
GetMenuEntries
(
extensions_manager_t
*
p_mgr
,
extension_t
*
p_ext
,
char
***
pppsz_titles
,
uint16_t
**
ppi_ids
);
...
...
@@ -181,12 +181,11 @@ void Close_Extension( vlc_object_t *p_this )
**/
static
int
ScanExtensions
(
extensions_manager_t
*
p_mgr
)
{
bool
b_true
=
true
;
int
i_ret
=
vlclua_scripts_batch_execute
(
VLC_OBJECT
(
p_mgr
),
"extensions"
,
&
ScanLuaCallback
,
&
b_true
);
NULL
);
if
(
!
i_ret
)
return
VLC_EGENERIC
;
...
...
@@ -211,11 +210,12 @@ static int vlclua_dummy_require( lua_State *L )
* @param p_this This extensions_manager_t object
* @param psz_script Name of the script to run
* @param L Lua State, common to all scripts here
* @param
pb_continue bool* that indicates whether to continue batch or not
* @param
dummy: unused
**/
int
ScanLuaCallback
(
vlc_object_t
*
p_this
,
const
char
*
psz_script
,
void
*
pb_continue
)
void
*
dummy
)
{
VLC_UNUSED
(
dummy
);
extensions_manager_t
*
p_mgr
=
(
extensions_manager_t
*
)
p_this
;
bool
b_ok
=
false
;
...
...
@@ -411,7 +411,7 @@ exit:
vlc_mutex_unlock
(
&
p_mgr
->
lock
);
/* Continue batch execution */
return
pb_continue
?
(
(
*
(
bool
*
)
pb_continue
)
?
-
1
:
0
)
:
-
1
;
return
VLC_EGENERIC
;
}
static
int
Control
(
extensions_manager_t
*
p_mgr
,
int
i_control
,
va_list
args
)
...
...
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