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
38b5e7cd
Commit
38b5e7cd
authored
Nov 13, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge string fixes
parent
4ef4f8dd
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
18 deletions
+36
-18
modules/access_output/http.c
modules/access_output/http.c
+27
-11
modules/codec/x264.c
modules/codec/x264.c
+2
-2
modules/control/http.c
modules/control/http.c
+4
-2
modules/misc/gnutls.c
modules/misc/gnutls.c
+3
-3
No files found.
modules/access_output/http.c
View file @
38b5e7cd
...
@@ -53,14 +53,23 @@ static void Close( vlc_object_t * );
...
@@ -53,14 +53,23 @@ static void Close( vlc_object_t * );
"requested to access the stream." )
"requested to access the stream." )
#define MIME_TEXT N_("Mime")
#define MIME_TEXT N_("Mime")
#define MIME_LONGTEXT N_("Allows you to give the mime returned by the server." )
#define MIME_LONGTEXT N_("Allows you to give the mime returned by the server." )
#define CERT_TEXT N_( "Certificate file" )
#define CERT_TEXT N_( "Certificate file" )
#define CERT_LONGTEXT N_( "HTTP/SSL stream output x509 PEM certificate file" )
#define CERT_LONGTEXT N_( "Path to the x509 PEM certificate file that will "\
"be used by the HTTP/SSL stream output" )
#define KEY_TEXT N_( "Private key file" )
#define KEY_TEXT N_( "Private key file" )
#define KEY_LONGTEXT N_( "HTTP/SSL stream output x509 PEM private key file" )
#define KEY_LONGTEXT N_( "Path to the x509 PEM private key file that will " \
" be used by the HTTP/SSL stream output. Leave " \
"empty if you don't have one." )
#define CA_TEXT N_( "Root CA file" )
#define CA_TEXT N_( "Root CA file" )
#define CA_LONGTEXT N_( "HTTP/SSL stream output x509 PEM trusted root CA certificates file" )
#define CA_LONGTEXT N_( "Path to the x509 PEM trusted root CA certificates " \
"(certificate authority) file that will be used by " \
"the HTTP/SSL stream output. Leave empty if you " \
"don't have one." )
#define CRL_TEXT N_( "CRL file" )
#define CRL_TEXT N_( "CRL file" )
#define CRL_LONGTEXT N_( "HTTP/SSL stream output Certificates Revocation List file" )
#define CRL_LONGTEXT N_( "Path to the x509 PEM Certificates Revocation List " \
"file that will be HTTP/SSL stream output. Leave " \
"empty if you don't have one." )
vlc_module_begin
();
vlc_module_begin
();
set_description
(
_
(
"HTTP stream output"
)
);
set_description
(
_
(
"HTTP stream output"
)
);
...
@@ -68,13 +77,20 @@ vlc_module_begin();
...
@@ -68,13 +77,20 @@ vlc_module_begin();
add_shortcut
(
"http"
);
add_shortcut
(
"http"
);
add_shortcut
(
"https"
);
add_shortcut
(
"https"
);
add_shortcut
(
"mmsh"
);
add_shortcut
(
"mmsh"
);
add_string
(
SOUT_CFG_PREFIX
"user"
,
""
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"user"
,
""
,
NULL
,
add_string
(
SOUT_CFG_PREFIX
"pwd"
,
""
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
VLC_TRUE
);
USER_TEXT
,
USER_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"mime"
,
""
,
NULL
,
MIME_TEXT
,
MIME_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"pwd"
,
""
,
NULL
,
add_string
(
SOUT_CFG_PREFIX
"cert"
,
"vlc.pem"
,
NULL
,
CERT_TEXT
,
CERT_LONGTEXT
,
VLC_TRUE
);
PASS_TEXT
,
PASS_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"key"
,
NULL
,
NULL
,
KEY_TEXT
,
KEY_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"mime"
,
""
,
NULL
,
add_string
(
SOUT_CFG_PREFIX
"ca"
,
NULL
,
NULL
,
CA_TEXT
,
CA_LONGTEXT
,
VLC_TRUE
);
MIME_TEXT
,
MIME_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"crl"
,
NULL
,
NULL
,
CRL_TEXT
,
CRL_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"cert"
,
"vlc.pem"
,
NULL
,
CERT_TEXT
,
CERT_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"key"
,
NULL
,
NULL
,
KEY_TEXT
,
KEY_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"ca"
,
NULL
,
NULL
,
CA_TEXT
,
CA_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"crl"
,
NULL
,
NULL
,
CRL_TEXT
,
CRL_LONGTEXT
,
VLC_TRUE
);
set_callbacks
(
Open
,
Close
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
vlc_module_end
();
...
...
modules/codec/x264.c
View file @
38b5e7cd
...
@@ -63,8 +63,8 @@ static void Close( vlc_object_t * );
...
@@ -63,8 +63,8 @@ static void Close( vlc_object_t * );
#define ANALYSE_LONGTEXT N_( "This selects the analysing mode.")
#define ANALYSE_LONGTEXT N_( "This selects the analysing mode.")
#define KEYINT_TEXT N_("Sets maximum interval between I frames")
#define KEYINT_TEXT N_("Sets maximum interval between I frames")
#define KEYINT_LONGTEXT N_( "Larger values save bits, thus improve quality
, "
\
#define KEYINT_LONGTEXT N_( "Larger values save bits, thus improve quality
"
\
"at the cost of seeking precision." )
"
for a given bitrate,
at the cost of seeking precision." )
#define IDRINT_TEXT N_("IDR frames")
#define IDRINT_TEXT N_("IDR frames")
#define IDRINT_LONGTEXT N_("In H.264, I-Frames do not necessarily bound a " \
#define IDRINT_LONGTEXT N_("In H.264, I-Frames do not necessarily bound a " \
...
...
modules/control/http.c
View file @
38b5e7cd
...
@@ -79,11 +79,13 @@ static void Close( vlc_object_t * );
...
@@ -79,11 +79,13 @@ static void Close( vlc_object_t * );
#define SRC_TEXT N_( "Source directory" )
#define SRC_TEXT N_( "Source directory" )
#define SRC_LONGTEXT N_( "Source directory" )
#define SRC_LONGTEXT N_( "Source directory" )
#define CERT_TEXT N_( "Certificate file" )
#define CERT_TEXT N_( "Certificate file" )
#define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file (enables SSL)" )
#define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file " \
"(enables SSL)" )
#define KEY_TEXT N_( "Private key file" )
#define KEY_TEXT N_( "Private key file" )
#define KEY_LONGTEXT N_( "HTTP interface x509 PEM private key file" )
#define KEY_LONGTEXT N_( "HTTP interface x509 PEM private key file" )
#define CA_TEXT N_( "Root CA file" )
#define CA_TEXT N_( "Root CA file" )
#define CA_LONGTEXT N_( "HTTP interface x509 PEM trusted root CA certificates file" )
#define CA_LONGTEXT N_( "HTTP interface x509 PEM trusted root CA " \
"certificates file" )
#define CRL_TEXT N_( "CRL file" )
#define CRL_TEXT N_( "CRL file" )
#define CRL_LONGTEXT N_( "HTTP interace Certificates Revocation List file" )
#define CRL_LONGTEXT N_( "HTTP interace Certificates Revocation List file" )
...
...
modules/misc/gnutls.c
View file @
38b5e7cd
...
@@ -53,7 +53,7 @@ static void Close( vlc_object_t * );
...
@@ -53,7 +53,7 @@ static void Close( vlc_object_t * );
#define DH_BITS_TEXT N_("Diffie-Hellman prime bits")
#define DH_BITS_TEXT N_("Diffie-Hellman prime bits")
#define DH_BITS_LONGTEXT N_( \
#define DH_BITS_LONGTEXT N_( \
"Allows you to modify the Diffie-Hellman prime's number of bits" \
"Allows you to modify the Diffie-Hellman prime's number of bits
" \
"(used for TLS or SSL-based server-side encryption)." )
"(used for TLS or SSL-based server-side encryption)." )
vlc_module_begin
();
vlc_module_begin
();
...
...
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