Commit e0cbcf57 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Kate: don't spam the msg_Dbg before selection of the module.

parent 85606541
...@@ -346,13 +346,13 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -346,13 +346,13 @@ static int OpenDecoder( vlc_object_t *p_this )
decoder_sys_t *p_sys; decoder_sys_t *p_sys;
int i_ret; int i_ret;
msg_Dbg( p_dec, "kate: OpenDecoder");
if( p_dec->fmt_in.i_codec != VLC_FOURCC('k','a','t','e') ) if( p_dec->fmt_in.i_codec != VLC_FOURCC('k','a','t','e') )
{ {
return VLC_EGENERIC; return VLC_EGENERIC;
} }
msg_Dbg( p_dec, "kate: OpenDecoder");
/* Set callbacks */ /* Set callbacks */
p_dec->pf_decode_sub = (subpicture_t *(*)(decoder_t *, block_t **)) p_dec->pf_decode_sub = (subpicture_t *(*)(decoder_t *, block_t **))
DecodeBlock; DecodeBlock;
......
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