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
d9143693
Commit
d9143693
authored
Jan 21, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't set ridiculously long descriptions or descriptions with 'plugin' or 'module' in it.
parent
000076e7
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
12 additions
and
12 deletions
+12
-12
modules/access/dvdread.c
modules/access/dvdread.c
+1
-1
modules/access/eyetv.m
modules/access/eyetv.m
+1
-1
modules/audio_filter/scaletempo.c
modules/audio_filter/scaletempo.c
+1
-1
modules/audio_filter/spatializer/spatializer.cpp
modules/audio_filter/spatializer/spatializer.cpp
+1
-1
modules/codec/tarkin.c
modules/codec/tarkin.c
+1
-1
modules/codec/x264.c
modules/codec/x264.c
+1
-1
modules/gui/wince/wince.cpp
modules/gui/wince/wince.cpp
+1
-1
modules/gui/wxwidgets/wxwidgets.cpp
modules/gui/wxwidgets/wxwidgets.cpp
+1
-1
modules/stream_out/raop.c
modules/stream_out/raop.c
+1
-1
modules/video_output/snapshot.c
modules/video_output/snapshot.c
+1
-1
modules/video_output/vmem.c
modules/video_output/vmem.c
+1
-1
modules/visualization/galaktos/plugin.c
modules/visualization/galaktos/plugin.c
+1
-1
No files found.
modules/access/dvdread.c
View file @
d9143693
...
...
@@ -103,7 +103,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
()
set_shortname
(
N_
(
"DVD without menus"
)
)
set_description
(
N_
(
"DVDRead Input (
DVD without
menu support)"
)
)
set_description
(
N_
(
"DVDRead Input (
no
menu support)"
)
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
add_integer
(
"dvdread-angle"
,
1
,
NULL
,
ANGLE_TEXT
,
...
...
modules/access/eyetv.m
View file @
d9143693
...
...
@@ -65,7 +65,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
()
set_shortname
(
"EyeTV"
)
set_description
(
N_
(
"EyeTV
access module
"
)
)
set_description
(
N_
(
"EyeTV
input
"
)
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
...
...
modules/audio_filter/scaletempo.c
View file @
d9143693
...
...
@@ -44,7 +44,7 @@ static void DoWork( aout_instance_t *, aout_filter_t *,
aout_buffer_t
*
,
aout_buffer_t
*
);
vlc_module_begin
()
set_description
(
N_
(
"
Scale audio tempo in sync with playback
rate"
)
)
set_description
(
N_
(
"
Audio tempo scaler synched with
rate"
)
)
set_shortname
(
N_
(
"Scaletempo"
)
)
set_capability
(
"audio filter"
,
0
)
set_category
(
CAT_AUDIO
)
...
...
modules/audio_filter/spatializer/spatializer.cpp
View file @
d9143693
...
...
@@ -62,7 +62,7 @@ static void Close( vlc_object_t * );
#define DAMP_LONGTEXT ""
vlc_module_begin
()
set_description
(
N_
(
"
s
patializer"
)
)
set_description
(
N_
(
"
Audio S
patializer"
)
)
set_shortname
(
N_
(
"Spatializer"
)
)
set_capability
(
"audio filter"
,
0
)
set_category
(
CAT_AUDIO
)
...
...
modules/codec/tarkin.c
View file @
d9143693
...
...
@@ -77,7 +77,7 @@ static void tarkin_CopyPicture( decoder_t *, picture_t *, uint8_t *, int );
* Module descriptor
*****************************************************************************/
vlc_module_begin
()
set_description
(
N_
(
"Tarkin decoder
module
"
)
)
set_description
(
N_
(
"Tarkin decoder"
)
)
set_capability
(
"decoder"
,
100
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_VCODEC
)
...
...
modules/codec/x264.c
View file @
d9143693
...
...
@@ -415,7 +415,7 @@ static const char *const direct_pred_list_text[] =
#endif
vlc_module_begin
()
set_description
(
N_
(
"H.264/MPEG4 AVC encoder (
using x264 library
)"
))
set_description
(
N_
(
"H.264/MPEG4 AVC encoder (
x264
)"
))
set_capability
(
"encoder"
,
200
)
set_callbacks
(
Open
,
Close
)
set_category
(
CAT_INPUT
)
...
...
modules/gui/wince/wince.cpp
View file @
d9143693
...
...
@@ -64,7 +64,7 @@ static void ShowDialog( intf_thread_t *, int, int, intf_dialog_args_t * );
vlc_module_begin
()
set_shortname
(
"WinCE"
)
set_description
(
(
char
*
)
_
(
"WinCE interface
module
"
)
)
set_description
(
(
char
*
)
_
(
"WinCE interface"
)
)
set_capability
(
"interface"
,
100
)
set_callbacks
(
Open
,
Close
)
add_shortcut
(
"wince"
)
...
...
modules/gui/wxwidgets/wxwidgets.cpp
View file @
d9143693
...
...
@@ -118,7 +118,7 @@ static const char *const psz_playlist_views[] = {
vlc_module_begin
()
set_shortname
(
"wxWidgets"
)
set_description
(
N_
(
"wxWidgets interface
module
"
)
)
set_description
(
N_
(
"wxWidgets interface"
)
)
set_category
(
CAT_INTERFACE
)
set_subcategory
(
SUBCAT_INTERFACE_MAIN
)
set_capability
(
"interface"
,
150
)
...
...
modules/stream_out/raop.c
View file @
d9143693
...
...
@@ -146,7 +146,7 @@ struct sout_stream_id_t
vlc_module_begin
();
set_shortname
(
N_
(
"RAOP"
)
)
set_description
(
N_
(
"Remote Audio Output Protocol stream
ing plugin
"
)
);
set_description
(
N_
(
"Remote Audio Output Protocol stream
output
"
)
);
set_capability
(
"sout stream"
,
0
);
add_shortcut
(
"raop"
);
set_category
(
CAT_SOUT
);
...
...
modules/video_output/snapshot.c
View file @
d9143693
...
...
@@ -77,7 +77,7 @@ static void Display ( vout_thread_t *, picture_t * );
vlc_module_begin
()
set_description
(
N_
(
"Snapshot
module
"
)
)
set_description
(
N_
(
"Snapshot
output
"
)
)
set_shortname
(
N_
(
"Snapshot"
)
)
set_category
(
CAT_VIDEO
)
...
...
modules/video_output/vmem.c
View file @
d9143693
...
...
@@ -72,7 +72,7 @@ static int UnlockPicture ( vout_thread_t *, picture_t * );
#define LT_DATA N_( "Data for the locking and unlocking functions" )
vlc_module_begin
()
set_description
(
N_
(
"Video memory
module
"
)
)
set_description
(
N_
(
"Video memory
output
"
)
)
set_shortname
(
N_
(
"Video memory"
)
)
set_category
(
CAT_VIDEO
)
...
...
modules/visualization/galaktos/plugin.c
View file @
d9143693
...
...
@@ -45,7 +45,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
()
set_description
(
N_
(
"GaLaktos visualization
plugin
"
)
)
set_description
(
N_
(
"GaLaktos visualization"
)
)
set_capability
(
"visualization"
,
0
)
set_callbacks
(
Open
,
Close
)
add_shortcut
(
"galaktos"
)
...
...
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