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
5fe479dd
Commit
5fe479dd
authored
Jun 28, 2005
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fix some configuration options declerations and strings
parent
9aebdb61
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
11 deletions
+16
-11
include/vlc_config_cat.h
include/vlc_config_cat.h
+5
-5
modules/access/directory.c
modules/access/directory.c
+1
-1
modules/codec/fake.c
modules/codec/fake.c
+3
-3
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+7
-2
No files found.
include/vlc_config_cat.h
View file @
5fe479dd
...
...
@@ -136,19 +136,19 @@
#define SOUT_MUX_TITLE N_( "Muxers" )
#define SOUT_MUX_HELP N_( "Muxers are the encapsulation formats that are used to " \
"put all the elementary streams (video, audio, ...) " \
"together. This setting allows you to always force a muxer." \
"together. This setting allows you to always force a muxer.
" \
"You should probably not do that.\n" \
"You can also set default parameters for each muxer." )
#define SOUT_ACO_TITLE N_( "Access output" )
#define SOUT_ACO_HELP N_( "Access output are the ways the muxed streams are sent." \
"This setting allows you to always force an access output." \
#define SOUT_ACO_HELP N_( "Access output are the ways the muxed streams are sent.
" \
"This setting allows you to always force an access output.
" \
"You should probably not do that.\n" \
"You can also set default parameters for each access output.")
#define SOUT_PACKET_TITLE N_( "Packetizers" )
#define SOUT_PACKET_HELP N_( "Packetizers are used to \"preprocess\" the elementary "\
"streams before muxing." \
"This setting allows you to always force a packetizer." \
"streams before muxing.
" \
"This setting allows you to always force a packetizer.
" \
"You should probably not do that.\n" \
"You can also set default parameters for each packetizer." )
...
...
modules/access/directory.c
View file @
5fe479dd
...
...
@@ -93,7 +93,7 @@ vlc_module_begin();
RECURSIVE_LONGTEXT
,
VLC_FALSE
);
change_string_list
(
psz_recursive_list
,
psz_recursive_list_text
,
0
);
#ifdef HAVE_STRSEP
add_string
(
"ignore-filetypes"
,
"m3u,nfo,jpg,gif,sfv,txt,sub,idx,srt,cue"
,
add_string
(
"ignore-filetypes"
,
"m3u,
db,
nfo,jpg,gif,sfv,txt,sub,idx,srt,cue"
,
NULL
,
IGNORE_TEXT
,
IGNORE_LONGTEXT
,
VLC_FALSE
);
#endif
set_callbacks
(
Open
,
Close
);
...
...
modules/codec/fake.c
View file @
5fe479dd
...
...
@@ -63,10 +63,10 @@ vlc_module_begin();
set_callbacks
(
OpenDecoder
,
CloseDecoder
);
add_shortcut
(
"fake"
);
add_
string
(
"fake-file"
,
""
,
NULL
,
FILE_TEXT
,
FILE_LONGTEXT
,
VLC_
TRU
E
);
add_
file
(
"fake-file"
,
""
,
NULL
,
FILE_TEXT
,
FILE_LONGTEXT
,
VLC_
FALS
E
);
add_string
(
"fake-aspect-ratio"
,
"4:3"
,
NULL
,
ASPECT_RATIO_TEXT
,
ASPECT_RATIO_LONGTEXT
,
VLC_
FALS
E
);
ASPECT_RATIO_TEXT
,
ASPECT_RATIO_LONGTEXT
,
VLC_
TRU
E
);
vlc_module_end
();
/*****************************************************************************
...
...
modules/stream_out/transcode.c
View file @
5fe479dd
...
...
@@ -63,8 +63,7 @@
"Allows you to deinterlace the video before encoding." )
#define DEINTERLACE_MODULE_TEXT N_("Deinterlace module")
#define DEINTERLACE_MODULE_LONGTEXT N_( \
"Specifies the deinterlace module to use (ffmpeg-deinterlace or " \
"deinterlace)." )
"Specifies the deinterlace module to use." )
#define WIDTH_TEXT N_("Video width")
#define WIDTH_LONGTEXT N_( \
"Allows you to specify the output video width." )
...
...
@@ -141,6 +140,11 @@
#define HURRYUP_LONGTEXT N_( "Allows you to specify if the transcoder " \
"should drop frames if your CPU can't keep up with the encoding rate." )
static
char
*
ppsz_deinterlace_type
[]
=
{
"deinterlace"
,
"ffmpeg-deinterlace"
};
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
...
...
@@ -172,6 +176,7 @@ vlc_module_begin();
add_string
(
SOUT_CFG_PREFIX
"deinterlace-module"
,
"deinterlace"
,
NULL
,
DEINTERLACE_MODULE_TEXT
,
DEINTERLACE_MODULE_LONGTEXT
,
VLC_FALSE
);
change_string_list
(
ppsz_deinterlace_type
,
0
,
0
);
add_integer
(
SOUT_CFG_PREFIX
"width"
,
0
,
NULL
,
WIDTH_TEXT
,
WIDTH_LONGTEXT
,
VLC_TRUE
);
add_integer
(
SOUT_CFG_PREFIX
"height"
,
0
,
NULL
,
HEIGHT_TEXT
,
...
...
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