Commit d15101ee authored by Laurent Aimar's avatar Laurent Aimar

Cosmetics.

parent 41bacf4a
...@@ -57,6 +57,8 @@ static int DecoderProcess( decoder_t *, block_t * ); ...@@ -57,6 +57,8 @@ static int DecoderProcess( decoder_t *, block_t * );
static void DecoderOutputChangePause( decoder_t *, bool b_paused, mtime_t i_date ); static void DecoderOutputChangePause( decoder_t *, bool b_paused, mtime_t i_date );
static void DecoderFlush( decoder_t * ); static void DecoderFlush( decoder_t * );
static void DecoderUnsupportedCodec( decoder_t *, vlc_fourcc_t );
/* Buffers allocation callbacks for the decoders */ /* Buffers allocation callbacks for the decoders */
static aout_buffer_t *aout_new_buffer( decoder_t *, int ); static aout_buffer_t *aout_new_buffer( decoder_t *, int );
static void aout_del_buffer( decoder_t *, aout_buffer_t * ); static void aout_del_buffer( decoder_t *, aout_buffer_t * );
...@@ -130,16 +132,9 @@ struct decoder_owner_sys_t ...@@ -130,16 +132,9 @@ struct decoder_owner_sys_t
mtime_t i_ts_delay; mtime_t i_ts_delay;
}; };
/* */ /*****************************************************************************
static void DecoderUnsupportedCodec( decoder_t *p_dec, vlc_fourcc_t codec ) * Public functions
{ *****************************************************************************/
msg_Err( p_dec, "no suitable decoder module for fourcc `%4.4s'.\n"
"VLC probably does not support this sound or video format.",
(char*)&codec );
intf_UserFatal( p_dec, false, _("No suitable decoder module"),
_("VLC does not support the audio or video format \"%4.4s\". "
"Unfortunately there is no way for you to fix this."), (char*)&codec );
}
/* decoder_GetInputAttachment: /* decoder_GetInputAttachment:
*/ */
...@@ -505,6 +500,22 @@ void input_DecoderStopBuffering( decoder_t *p_dec ) ...@@ -505,6 +500,22 @@ void input_DecoderStopBuffering( decoder_t *p_dec )
{ {
} }
/*****************************************************************************
* Internal functions
*****************************************************************************/
/* */
static void DecoderUnsupportedCodec( decoder_t *p_dec, vlc_fourcc_t codec )
{
msg_Err( p_dec, "no suitable decoder module for fourcc `%4.4s'.\n"
"VLC probably does not support this sound or video format.",
(char*)&codec );
intf_UserFatal( p_dec, false, _("No suitable decoder module"),
_("VLC does not support the audio or video format \"%4.4s\". "
"Unfortunately there is no way for you to fix this."), (char*)&codec );
}
/** /**
* Create a decoder object * Create a decoder object
* *
......
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