Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
79f9f30a
Commit
79f9f30a
authored
Apr 11, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More strings
parent
31943c2c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
1 deletion
+7
-1
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+1
-0
modules/access_output/http.c
modules/access_output/http.c
+2
-0
modules/audio_filter/converter/dtstofloat32.c
modules/audio_filter/converter/dtstofloat32.c
+1
-1
modules/demux/livedotcom.cpp
modules/demux/livedotcom.cpp
+1
-0
modules/demux/mod.c
modules/demux/mod.c
+1
-0
src/libvlc.h
src/libvlc.h
+1
-0
No files found.
modules/access/dshow/dshow.cpp
View file @
79f9f30a
...
...
@@ -86,6 +86,7 @@ static char *ppsz_tuner_input_text[] =
"Name of the video device that will be used by the " \
"DirectShow plugin. If you don't specify anything, the default device " \
"will be used.")
/// \bug [String] size stuff should be on video !
#define ADEV_TEXT N_("Audio device name")
#define ADEV_LONGTEXT N_( \
"Name of the audio device that will be used by the " \
...
...
modules/access_output/http.c
View file @
79f9f30a
...
...
@@ -63,6 +63,8 @@ static void Close( vlc_object_t * );
#define PASS_TEXT N_("Password")
#define PASS_LONGTEXT N_("Password that will be " \
"requested to access the stream." )
/// \bug [String] missing closing parenthesis
#define MIME_TEXT N_("Mime")
#define MIME_LONGTEXT N_("MIME returned by the server (autodetected " \
"if not specified." )
...
...
modules/audio_filter/converter/dtstofloat32.c
View file @
79f9f30a
...
...
@@ -89,7 +89,7 @@ struct filter_sys_t
vlc_module_begin
();
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACODEC
);
set_shortname
(
_
(
"DCA"
)
);
set_shortname
(
"DCA"
);
set_description
(
_
(
"DTS Coherent Acoustics audio decoder"
)
);
add_bool
(
"dts-dynrng"
,
1
,
NULL
,
DYNRNG_TEXT
,
DYNRNG_LONGTEXT
,
VLC_FALSE
);
set_capability
(
"audio filter"
,
100
);
...
...
modules/demux/livedotcom.cpp
View file @
79f9f30a
...
...
@@ -96,6 +96,7 @@ vlc_module_begin();
N_
(
"Tunnel RTSP and RTP over HTTP"
),
VLC_TRUE
);
add_integer
(
"rtsp-http-port"
,
80
,
NULL
,
N_
(
"HTTP tunnel port"
),
/// \bug [String] Missing .
N_
(
"Port to use for tunneling the RTSP/RTP over HTTP"
),
VLC_TRUE
);
#endif
add_integer
(
"rtsp-caching"
,
4
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
...
...
modules/demux/mod.c
View file @
79f9f30a
...
...
@@ -44,6 +44,7 @@
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
/// \bug [String] missing .
#define NOISE_LONGTEXT N_("Enable noise reduction algorithm")
#define REVERB_LONGTEXT N_("Enable reverberation" )
#define REVERB_LEVEL_LONGTEXT N_( "Reverberation level (from 0 " \
...
...
src/libvlc.h
View file @
79f9f30a
...
...
@@ -334,6 +334,7 @@ static char *ppsz_align_descriptions[] =
"pixels (1:1). If you have a 16:9 screen, you might need to change this " \
"to 4:3 in order to keep proportions.")
/// \bug [String] Remove "this option"
#define SKIP_FRAMES_TEXT N_("Skip frames")
#define SKIP_FRAMES_LONGTEXT N_( \
"This option enables framedropping on MPEG2 stream. Framedropping " \
...
...
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