Commit bedf87eb authored by Rafaël Carré's avatar Rafaël Carré

Simplify message when codec could not be found

People do not read that far and keep asking for support anyway.
parent 217213c1
...@@ -687,12 +687,9 @@ static void DecoderUnsupportedCodec( decoder_t *p_dec, vlc_fourcc_t codec ) ...@@ -687,12 +687,9 @@ static void DecoderUnsupportedCodec( decoder_t *p_dec, vlc_fourcc_t codec )
const char *desc = vlc_fourcc_GetDescription(p_dec->fmt_in.i_cat, codec); const char *desc = vlc_fourcc_GetDescription(p_dec->fmt_in.i_cat, codec);
if (!desc || !*desc) if (!desc || !*desc)
desc = N_("No description for this codec"); desc = N_("No description for this codec");
msg_Err( p_dec, "no suitable decoder module for fourcc `%4.4s' (%s). " msg_Err( p_dec, "Codec `%4.4s' (%s) is not supported.", (char*)&codec, desc );
"VLC probably does not support this sound or video format.", dialog_Fatal( p_dec, _("Codec not supported"),
(char*)&codec, desc ); _("VLC could not decode the format \"%4.4s\" (%s)"),
dialog_Fatal( p_dec, _("No suitable decoder module"),
_("VLC does not support the audio or video format \"%4.4s\" (%s). "
"Unfortunately there is no way for you to fix this."),
(char*)&codec, desc ); (char*)&codec, desc );
} else { } else {
msg_Err( p_dec, "could not identify codec" ); msg_Err( p_dec, "could not identify codec" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment