Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
c04668ad
Commit
c04668ad
authored
Sep 29, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua: factorize the right way.
parent
b318bfb3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
40 deletions
+12
-40
modules/misc/lua/extension.c
modules/misc/lua/extension.c
+5
-40
modules/misc/lua/vlc.h
modules/misc/lua/vlc.h
+7
-0
No files found.
modules/misc/lua/extension.c
View file @
c04668ad
...
...
@@ -341,62 +341,27 @@ int ScanLuaCallback( vlc_object_t *p_this, const char *psz_script,
/* Get author */
lua_getfield
(
L
,
-
1
,
"author"
);
if
(
lua_isstring
(
L
,
-
1
)
)
{
p_ext
->
psz_author
=
strdup
(
luaL_checkstring
(
L
,
-
1
)
);
}
else
{
p_ext
->
psz_author
=
NULL
;
}
p_ext
->
psz_author
=
luaL_strdupornull
(
L
,
-
1
);
lua_pop
(
L
,
1
);
/* Get description */
lua_getfield
(
L
,
-
1
,
"description"
);
if
(
lua_isstring
(
L
,
-
1
)
)
{
p_ext
->
psz_description
=
strdup
(
luaL_checkstring
(
L
,
-
1
)
);
}
else
{
p_ext
->
psz_description
=
NULL
;
}
p_ext
->
psz_description
=
luaL_strdupornull
(
L
,
-
1
);
lua_pop
(
L
,
1
);
/* Get short description */
lua_getfield
(
L
,
-
1
,
"shortdesc"
);
if
(
lua_isstring
(
L
,
-
1
)
)
{
p_ext
->
psz_shortdescription
=
strdup
(
luaL_checkstring
(
L
,
-
1
)
);
}
else
{
p_ext
->
psz_shortdescription
=
NULL
;
}
p_ext
->
psz_shortdescription
=
luaL_strdupornull
(
L
,
-
1
);
lua_pop
(
L
,
1
);
/* Get URL */
lua_getfield
(
L
,
-
1
,
"url"
);
if
(
lua_isstring
(
L
,
-
1
)
)
{
p_ext
->
psz_url
=
strdup
(
luaL_checkstring
(
L
,
-
1
)
);
}
else
{
p_ext
->
psz_url
=
NULL
;
}
p_ext
->
psz_url
=
luaL_strdupornull
(
L
,
-
1
);
lua_pop
(
L
,
1
);
/* Get version */
lua_getfield
(
L
,
-
1
,
"version"
);
if
(
lua_isstring
(
L
,
-
1
)
)
{
p_ext
->
psz_version
=
strdup
(
luaL_checkstring
(
L
,
-
1
)
);
}
else
{
p_ext
->
psz_version
=
NULL
;
}
p_ext
->
psz_version
=
luaL_strdupornull
(
L
,
-
1
);
lua_pop
(
L
,
1
);
}
else
...
...
modules/misc/lua/vlc.h
View file @
c04668ad
...
...
@@ -91,6 +91,13 @@ static inline const char *luaL_nilorcheckstring( lua_State *L, int narg )
return
luaL_checkstring
(
L
,
narg
);
}
static
inline
char
*
luaL_strdupornull
(
lua_State
*
L
,
int
narg
)
{
if
(
lua_isstring
(
L
,
narg
)
)
return
strdup
(
luaL_checkstring
(
L
,
narg
)
);
return
NULL
;
}
void
vlclua_set_this
(
lua_State
*
,
vlc_object_t
*
);
#define vlclua_set_this(a, b) vlclua_set_this(a, VLC_OBJECT(b))
vlc_object_t
*
vlclua_get_this
(
lua_State
*
);
...
...
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