Commit 54e38a89 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Magnify filter: give better debug message

parent 2128df3d
...@@ -99,7 +99,7 @@ static int Create( vlc_object_t *p_this ) ...@@ -99,7 +99,7 @@ static int Create( vlc_object_t *p_this )
case VLC_CODEC_GREY: case VLC_CODEC_GREY:
break; break;
default: default:
msg_Err( p_filter, "Unsupported chroma" ); msg_Err( p_filter, "Unsupported chroma %4.4s", (char *)&p_filter->fmt_in.i_codec );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
if( !es_format_IsSimilar( &p_filter->fmt_in, &p_filter->fmt_out ) ) if( !es_format_IsSimilar( &p_filter->fmt_in, &p_filter->fmt_out ) )
......
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