Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
8c7ec7a4
Commit
8c7ec7a4
authored
Mar 24, 2009
by
Rémi Denis-Courmont
Committed by
Rémi Denis-Courmont
Mar 31, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Format string (make gcc happy)
parent
c6833294
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
src/input/decoder.c
src/input/decoder.c
+3
-3
src/libvlc.c
src/libvlc.c
+4
-2
No files found.
src/input/decoder.c
View file @
8c7ec7a4
...
...
@@ -275,7 +275,7 @@ decoder_t *input_DecoderNew( input_thread_t *p_input,
if
(
p_dec
==
NULL
)
{
msg_Err
(
p_input
,
"could not create packetizer"
);
dialog_Fatal
(
p_input
,
_
(
"Streaming / Transcoding failed"
),
dialog_Fatal
(
p_input
,
_
(
"Streaming / Transcoding failed"
),
"%s"
,
_
(
"VLC could not open the packetizer module."
)
);
return
NULL
;
}
...
...
@@ -288,7 +288,7 @@ decoder_t *input_DecoderNew( input_thread_t *p_input,
if
(
p_dec
==
NULL
)
{
msg_Err
(
p_input
,
"could not create decoder"
);
dialog_Fatal
(
p_input
,
_
(
"Streaming / Transcoding failed"
),
dialog_Fatal
(
p_input
,
_
(
"Streaming / Transcoding failed"
),
"%s"
,
_
(
"VLC could not open the decoder module."
)
);
return
NULL
;
}
...
...
@@ -441,7 +441,7 @@ int input_DecoderSetCcState( decoder_t *p_dec, bool b_decode, int i_channel )
if
(
!
p_cc
)
{
msg_Err
(
p_dec
,
"could not create decoder"
);
dialog_Fatal
(
p_dec
,
_
(
"Streaming / Transcoding failed"
),
dialog_Fatal
(
p_dec
,
_
(
"Streaming / Transcoding failed"
),
"%s"
,
_
(
"VLC could not open the decoder module."
)
);
return
VLC_EGENERIC
;
}
...
...
src/libvlc.c
View file @
8c7ec7a4
...
...
@@ -1158,7 +1158,9 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
psz_module
=
"dummy"
;
else
#endif
msg_Info
(
p_libvlc
,
_
(
"Running vlc with the default interface. Use 'cvlc' to use vlc without interface."
)
);
msg_Info
(
p_libvlc
,
"%s"
,
_
(
"Running vlc with the default interface. "
"Use 'cvlc' to use vlc without interface."
)
);
}
free
(
psz_interface
);
}
...
...
@@ -1974,7 +1976,7 @@ static void Version( void )
utf8_fprintf
(
stdout
,
_
(
"Compiled by %s@%s.%s
\n
"
),
VLC_CompileBy
(),
VLC_CompileHost
(),
VLC_CompileDomain
()
);
utf8_fprintf
(
stdout
,
_
(
"Compiler: %s
\n
"
),
VLC_Compiler
()
);
utf8_fprintf
(
stdout
,
LICENSE_MSG
);
utf8_fprintf
(
stdout
,
"%s"
,
LICENSE_MSG
);
#ifdef WIN32
/* Pause the console because it's destroyed when we exit */
PauseConsole
();
...
...
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