Commit aecaa335 authored by Christophe Massiot's avatar Christophe Massiot

* modules/codec/ffmpeg/encoder.c: Avoid a useless warning.

parent 9ba032ea
......@@ -456,9 +456,10 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
{
if ( p_context->height <= 280 )
{
msg_Warn( p_enc,
"disabling interlaced video because height=%d <= 280",
p_context->height );
if ( p_context->height != 16 || p_context->width != 16 )
msg_Warn( p_enc,
"disabling interlaced video because height=%d <= 280",
p_context->height );
}
else
{
......
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