From 98a047e1ddf9881d224d215b62d9aecac52dec81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cartegnie?= Date: Mon, 26 Jan 2026 17:29:12 +0100 Subject: [PATCH] demux: ty: fix packetization payloads are scattered due to 0x20 type events --- modules/demux/ty.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/demux/ty.c b/modules/demux/ty.c index 12aaff1399..ace1b185a0 100644 --- a/modules/demux/ty.c +++ b/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 ); /* */