Skip to content
Snippets Groups Projects
Commit 7dc44f2d authored by Lyndon Brown's avatar Lyndon Brown Committed by Hugo Beauzée-Luyssen
Browse files

visual: fix reading specified height

parent 90c03c4a
No related branches found
No related tags found
Loading
Pipeline #176160 passed with stage
in 18 minutes and 24 seconds
......@@ -204,7 +204,7 @@ static int Open( vlc_object_t *p_this )
return VLC_EGENERIC;
int width = var_InheritInteger( p_filter , "effect-width");
int height = var_InheritInteger( p_filter , "effect-width");
int height = var_InheritInteger( p_filter , "effect-height");
/* No resolution under 400x532 and no odd dimension */
if( width < 532 )
width = 532;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment