Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
3608fc15
Commit
3608fc15
authored
Sep 09, 2007
by
Christophe Mutricy
Browse files
luameta.c: Fix a message
vlclua.c: get rid of an empty module and fix descriptions
parent
29d954bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/misc/lua/luameta.c
View file @
3608fc15
...
...
@@ -180,7 +180,7 @@ static int fetch_art( vlc_object_t *p_this, const char * psz_filename,
}
else
{
msg_Err
(
p_this
,
"Lua
playlist
script %s: "
msg_Err
(
p_this
,
"Lua
art fetcher
script %s: "
"didn't return a string"
,
psz_filename
);
}
}
...
...
modules/misc/lua/vlclua.c
View file @
3608fc15
...
...
@@ -43,21 +43,20 @@
*****************************************************************************/
vlc_module_begin
();
add_shortcut
(
"lua"
);
add_shortcut
(
"luameta"
);
set_shortname
(
N_
(
"Lua Meta"
)
);
set_description
(
_
(
"Fetch metadata using lua scripts"
)
);
set_capability
(
"meta fetcher"
,
10
);
set_callbacks
(
E_
(
FindMeta
),
NULL
);
add_submodule
();
add_shortcut
(
"luameta"
);
set_shortname
(
N_
(
"Lua Meta"
)
);
set_description
(
_
(
"Fetch Artwork using lua scripts"
)
);
set_capability
(
"meta fetcher"
,
10
);
set_callbacks
(
E_
(
FindMeta
),
NULL
);
add_submodule
();
set_capability
(
"art finder"
,
10
);
set_callbacks
(
E_
(
FindArt
),
NULL
);
set_shortname
(
N_
(
"Lua Art"
)
);
set_description
(
_
(
"Fetch artwork using lua scripts"
)
);
set_capability
(
"art finder"
,
10
);
set_callbacks
(
E_
(
FindArt
),
NULL
);
add_submodule
();
add_shortcut
(
"luaplaylist"
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_DEMUX
);
set_shortname
(
_
(
"Lua Playlist"
)
);
set_description
(
_
(
"Lua Playlist Parser Interface"
)
);
set_capability
(
"demux2"
,
9
);
...
...
Write
Preview
Supports
Markdown
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