[vlc-commits] [Git][videolan/vlc][master] macosx: Use correct double type for a and b pos variables
Steve Lhomme (@robUx4)
gitlab at videolan.org
Thu Nov 21 18:29:13 UTC 2024
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
7da85115 by Claudio Cambra at 2024-11-21T18:16:23+00:00
macosx: Use correct double type for a and b pos variables
Signed-off-by: Claudio Cambra <developer at claudiocambra.com>
- - - - -
1 changed file:
- modules/gui/macosx/playqueue/VLCPlayerController.m
Changes:
=====================================
modules/gui/macosx/playqueue/VLCPlayerController.m
=====================================
@@ -1585,8 +1585,8 @@ static int BossCallback(vlc_object_t *p_this,
vlc_tick_t a_time = -1;
vlc_tick_t b_time = -1;
- float a_pos = -1;
- float b_pos = -1;
+ double a_pos = -1;
+ double b_pos = -1;
vlc_player_Lock(_p_player);
const enum vlc_player_abloop state = vlc_player_GetAtoBLoop(_p_player, &a_time, &a_pos, &b_time, &b_pos);
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7da85115834a760812fa9a17e75ee579ba07fc89
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7da85115834a760812fa9a17e75ee579ba07fc89
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list