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
5918f43b
Commit
5918f43b
authored
Feb 03, 2010
by
Jean-Philippe André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extensions: they can also have a short description
This is "shortdesc" in the Lua descriptor
parent
ef5d32ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
include/vlc_extensions.h
include/vlc_extensions.h
+1
-0
modules/misc/lua/extension.c
modules/misc/lua/extension.c
+12
-0
No files found.
include/vlc_extensions.h
View file @
5918f43b
...
...
@@ -42,6 +42,7 @@ typedef struct extension_t {
char
*
psz_version
;
/**< Version (ro) */
char
*
psz_url
;
/**< A URL to the official page (ro) */
char
*
psz_description
;
/**< Full description (ro) */
char
*
psz_shortdescription
;
/**< Short description (eg. 1 line) (ro) */
extension_sys_t
*
p_sys
;
/**< Reserved for the manager module */
}
extension_t
;
...
...
modules/misc/lua/extension.c
View file @
5918f43b
...
...
@@ -355,6 +355,18 @@ int ScanLuaCallback( vlc_object_t *p_this, const char *psz_script,
}
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
;
}
lua_pop
(
L
,
1
);
/* Get URL */
lua_getfield
(
L
,
-
1
,
"url"
);
if
(
lua_isstring
(
L
,
-
1
)
)
...
...
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