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
5522140b
Commit
5522140b
authored
Mar 11, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
String fixes by Christophe Mutricy
parent
e95b2584
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
1 deletion
+11
-1
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+1
-0
modules/demux/demuxdump.c
modules/demux/demuxdump.c
+1
-0
modules/demux/mjpeg.c
modules/demux/mjpeg.c
+1
-0
modules/demux/mod.c
modules/demux/mod.c
+1
-0
modules/demux/mpeg/h264.c
modules/demux/mpeg/h264.c
+6
-1
modules/misc/dummy/dummy.c
modules/misc/dummy/dummy.c
+1
-0
No files found.
modules/demux/avi/avi.c
View file @
5522140b
...
...
@@ -48,6 +48,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_shortname
(
"AVI"
);
set_description
(
_
(
"AVI demuxer"
)
);
set_capability
(
"demux2"
,
212
);
set_category
(
CAT_INPUT
);
...
...
modules/demux/demuxdump.c
View file @
5522140b
...
...
@@ -46,6 +46,7 @@ static int Open( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_shortname
(
"Dump"
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_DEMUX
);
set_description
(
_
(
"Filedump demuxer"
)
);
...
...
modules/demux/mjpeg.c
View file @
5522140b
...
...
@@ -45,6 +45,7 @@ static void Close( vlc_object_t * );
"playing from files, use 0 for live.")
vlc_module_begin
();
set_shortname
(
"MJEPG"
);
set_description
(
_
(
"JPEG camera demuxer"
)
);
set_capability
(
"demux2"
,
5
);
set_callbacks
(
Open
,
Close
);
...
...
modules/demux/mod.c
View file @
5522140b
...
...
@@ -45,6 +45,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_shortname
(
"MOD"
);
set_description
(
_
(
"MOD demuxer (libmodplug)"
)
);
set_capability
(
"demux2"
,
10
);
set_category
(
CAT_INPUT
);
...
...
modules/demux/mpeg/h264.c
View file @
5522140b
...
...
@@ -36,12 +36,17 @@
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
#define FPS_TEXT N_("Frames per Second")
#define FPS_LONGTEXT N_("Allows you to set the desired frame rate.")
vlc_module_begin
();
set_shortname
(
"H264"
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_DEMUX
);
set_description
(
_
(
"H264 video demuxer"
)
);
set_capability
(
"demux2"
,
0
);
add_float
(
"h264-fps"
,
25
.
0
,
NULL
,
"fps"
,
"fps"
,
VLC_TRUE
);
add_float
(
"h264-fps"
,
25
.
0
,
NULL
,
FPS_TEXT
,
FPS_LONGTEXT
,
VLC_TRUE
);
set_callbacks
(
Open
,
Close
);
add_shortcut
(
"h264"
);
vlc_module_end
();
...
...
modules/misc/dummy/dummy.c
View file @
5522140b
...
...
@@ -55,6 +55,7 @@
#endif
vlc_module_begin
();
set_shortname
(
_
(
"Dummy"
));
set_description
(
_
(
"Dummy interface function"
)
);
set_capability
(
"interface"
,
0
);
set_category
(
CAT_INTERFACE
);
...
...
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