[vlc-commits] [Git][videolan/vlc][master] visual: fix reading specified height
Hugo Beauzée-Luyssen (@chouquette)
gitlab at videolan.org
Wed Jan 5 09:01:06 UTC 2022
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.
More information about the vlc-commits
mailing list