Felix Paul Kühne pushed to branch master at VideoLAN / VLC
Commits:
98a047e1 by François Cartegnie at 2026-01-31T12:43:46+01:00
demux: ty: fix packetization
payloads are scattered due to 0x20 type events
- - - - -
1 changed file:
- modules/demux/ty.c
Changes:
=====================================
modules/demux/ty.c
=====================================
@@ -365,11 +365,13 @@ static int Open(vlc_object_t *p_this)
es_format_Init( &fmt, AUDIO_ES, VLC_CODEC_A52 );
}
fmt.i_group = TY_ES_GROUP;
+ fmt.b_packetized = false;
p_sys->p_audio = es_out_Add( p_demux->out, &fmt );
/* register the video stream */
es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_MPGV );
fmt.i_group = TY_ES_GROUP;
+ fmt.b_packetized = false;
p_sys->p_video = es_out_Add( p_demux->out, &fmt );
/* */
View it on GitLab:
https://code.videolan.org/videolan/vlc/-/commit/98a047e1ddf9881d224d215b62d9aecac52dec81
--
View it on GitLab:
https://code.videolan.org/videolan/vlc/-/commit/98a047e1ddf9881d224d215b62d9aecac52dec81
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance_______________________________________________
vlc-commits mailing list
[email protected]
https://mailman.videolan.org/listinfo/vlc-commits