[vlc-commits] [Git][videolan/vlc][master] decoder: fix invalid lock
Steve Lhomme (@robUx4)
gitlab at videolan.org
Thu Sep 15 11:46:54 UTC 2022
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
085d1ae7 by Thomas Guillem at 2022-09-15T11:28:40+00:00
decoder: fix invalid lock
Typo/regression from 7dcc370d120266ca552433b0b419f1e65f194f5c
- - - - -
1 changed file:
- src/input/decoder.c
Changes:
=====================================
src/input/decoder.c
=====================================
@@ -1422,7 +1422,7 @@ static void ModuleThread_QueueSpu( decoder_t *p_dec, subpicture_t *p_spu )
p_spu->i_start < p_owner->i_preroll_end &&
( p_spu->i_stop == VLC_TICK_INVALID || p_spu->i_stop < p_owner->i_preroll_end ) )
{
- vlc_fifo_Lock(p_owner->p_fifo);
+ vlc_fifo_Unlock(p_owner->p_fifo);
subpicture_Delete( p_spu );
}
else
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/085d1ae71b4db6ff7019ba04c51bc6627f10093a
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/085d1ae71b4db6ff7019ba04c51bc6627f10093a
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