[vlc-commits] input: decoder: hide missing codec dialog for sout
Francois Cartegnie
git at videolan.org
Thu Jun 22 11:12:14 CEST 2017
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Jun 22 10:23:39 2017 +0200| [6b4770fcdcf060102f1480d41544211e185e96bf] | committer: Francois Cartegnie
input: decoder: hide missing codec dialog for sout
because sout enables every es
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6b4770fcdcf060102f1480d41544211e185e96bf
---
src/input/decoder.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/input/decoder.c b/src/input/decoder.c
index 688fc6f451..435e78e6b9 100644
--- a/src/input/decoder.c
+++ b/src/input/decoder.c
@@ -1869,7 +1869,7 @@ static void DeleteDecoder( decoder_t * p_dec )
}
/* */
-static void DecoderUnsupportedCodec( decoder_t *p_dec, const es_format_t *fmt )
+static void DecoderUnsupportedCodec( decoder_t *p_dec, const es_format_t *fmt, bool b_decoding )
{
if (fmt->i_codec != VLC_FOURCC('u','n','d','f') && fmt->i_codec) {
const char *desc = vlc_fourcc_GetDescription(fmt->i_cat, fmt->i_codec);
@@ -1879,7 +1879,7 @@ static void DecoderUnsupportedCodec( decoder_t *p_dec, const es_format_t *fmt )
vlc_dialog_display_error( p_dec, _("Codec not supported"),
_("VLC could not decode the format \"%4.4s\" (%s)"),
(char*)&fmt->i_codec, desc );
- } else {
+ } else if( b_decoding ){
msg_Err( p_dec, "could not identify codec" );
vlc_dialog_display_error( p_dec, _("Unidentified codec"),
_("VLC could not identify the audio or video codec" ) );
@@ -1908,7 +1908,7 @@ static decoder_t *decoder_New( vlc_object_t *p_parent, input_thread_t *p_input,
if( !p_dec->p_module )
{
- DecoderUnsupportedCodec( p_dec, fmt );
+ DecoderUnsupportedCodec( p_dec, fmt, !p_sout );
DeleteDecoder( p_dec );
return NULL;
@@ -2170,7 +2170,7 @@ int input_DecoderSetCcState( decoder_t *p_dec, bool b_decode, int i_channel )
}
else if( !p_cc->p_module )
{
- DecoderUnsupportedCodec( p_dec, &fmt );
+ DecoderUnsupportedCodec( p_dec, &fmt, true );
input_DecoderDelete(p_cc);
return VLC_EGENERIC;
}
More information about the vlc-commits
mailing list