Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC


Commits:
7dc44f2d by Lyndon Brown at 2022-01-05T08:40:16+00:00
visual: fix reading specified height

- - - - -


1 changed file:

- modules/visualization/visual/visual.c


Changes:

=====================================
modules/visualization/visual/visual.c
=====================================
@@ -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;



View it on GitLab: 
https://code.videolan.org/videolan/vlc/-/commit/7dc44f2d20a42fd43c1545a09b8b7c0e00d1b28d

-- 
View it on GitLab: 
https://code.videolan.org/videolan/vlc/-/commit/7dc44f2d20a42fd43c1545a09b8b7c0e00d1b28d
You're receiving this email because of your account on code.videolan.org.


_______________________________________________
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to