[vlc-commits] [Git][videolan/vlc][master] packetizer: cvdsub: fix invalid length
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Thu May 21 09:17:50 UTC 2026
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
71ba4be5 by François Cartegnie at 2026-05-21T11:07:27+02:00
packetizer: cvdsub: fix invalid length
- - - - -
1 changed file:
- modules/codec/cvdsub.c
Changes:
=====================================
modules/codec/cvdsub.c
=====================================
@@ -202,7 +202,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
if( !(p_spu = Reassemble( p_dec, p_block )) ) return NULL;
p_spu->i_dts = p_spu->i_pts;
- p_spu->i_length = VLC_TICK_INVALID;
+ p_spu->i_length = 0;
return p_spu;
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/71ba4be5488271c53944923c473f0d88887a06cf
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/71ba4be5488271c53944923c473f0d88887a06cf
You're receiving this email because of your account on code.videolan.org. Manage all notifications: https://code.videolan.org/-/profile/notifications | Help: https://code.videolan.org/help
More information about the vlc-commits
mailing list