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
56391b1f
Commit
56391b1f
authored
Jan 21, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various shortnames forgotten.
parent
492db3d9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
1 deletion
+6
-1
modules/access/dv.c
modules/access/dv.c
+1
-1
modules/codec/dvbsub.c
modules/codec/dvbsub.c
+1
-0
modules/codec/fluidsynth.c
modules/codec/fluidsynth.c
+1
-0
modules/codec/speex.c
modules/codec/speex.c
+1
-0
modules/demux/mp4/mp4.c
modules/demux/mp4/mp4.c
+1
-0
modules/demux/ps.c
modules/demux/ps.c
+1
-0
No files found.
modules/access/dv.c
View file @
56391b1f
...
...
@@ -75,7 +75,7 @@ static int Control( access_t *, int, va_list );
vlc_module_begin
()
set_description
(
N_
(
"Digital Video (Firewire/ieee1394) input"
)
)
set_shortname
(
N_
(
"
dv
"
)
)
set_shortname
(
N_
(
"
DV
"
)
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
add_integer
(
"dv-caching"
,
60000
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
...
...
modules/codec/dvbsub.c
View file @
56391b1f
...
...
@@ -89,6 +89,7 @@ static block_t *Encode ( encoder_t *, subpicture_t * );
vlc_module_begin
()
# define DVBSUB_CFG_PREFIX "dvbsub-"
set_description
(
N_
(
"DVB subtitles decoder"
)
)
set_shortname
(
N_
(
"DVB subtitles"
)
)
set_capability
(
"decoder"
,
50
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_SCODEC
)
...
...
modules/codec/fluidsynth.c
View file @
56391b1f
...
...
@@ -40,6 +40,7 @@ static void Close (vlc_object_t *);
vlc_module_begin
()
set_description
(
N_
(
"FluidSynth MIDI synthetizer"
))
set_capability
(
"decoder"
,
100
)
set_shortname
(
N_
(
"FluidSynth"
))
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACODEC
)
set_callbacks
(
Open
,
Close
)
...
...
modules/codec/speex.c
View file @
56391b1f
...
...
@@ -94,6 +94,7 @@ vlc_module_begin ()
set_description
(
N_
(
"Speex audio decoder"
)
)
set_capability
(
"decoder"
,
100
)
set_shortname
(
N_
(
"Speex"
)
)
set_callbacks
(
OpenDecoder
,
CloseDecoder
)
add_submodule
()
...
...
modules/demux/mp4/mp4.c
View file @
56391b1f
...
...
@@ -56,6 +56,7 @@ vlc_module_begin ()
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_DEMUX
)
set_description
(
N_
(
"MP4 stream demuxer"
)
)
set_shortname
(
N_
(
"MP4"
)
)
set_capability
(
"demux"
,
242
)
set_callbacks
(
Open
,
Close
)
vlc_module_end
()
...
...
modules/demux/ps.c
View file @
56391b1f
...
...
@@ -54,6 +54,7 @@ static void Close ( vlc_object_t * );
vlc_module_begin
()
set_description
(
N_
(
"MPEG-PS demuxer"
)
)
set_shortname
(
N_
(
"PS"
)
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_DEMUX
)
set_capability
(
"demux"
,
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