From: Laurent Aimar Date: Thu, 10 Jun 2010 22:06:38 +0000 (+0200) Subject: Fixed ES packetized propertys in PVA demuxer (close #3735). X-Git-Tag: 1.2.0-pre1~6239 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=925f5e0229bd473c162f5fee4529af1921d3e840;p=vlc Fixed ES packetized propertys in PVA demuxer (close #3735). --- diff --git a/modules/demux/pva.c b/modules/demux/pva.c index fad92474a9..b02f8ddff1 100644 --- a/modules/demux/pva.c +++ b/modules/demux/pva.c @@ -99,9 +99,11 @@ static int Open( vlc_object_t *p_this ) /* Register one audio and one video stream */ es_format_Init( &fmt, AUDIO_ES, VLC_CODEC_MPGA ); + fmt.b_packetized = false; p_sys->p_audio = es_out_Add( p_demux->out, &fmt ); es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_MPGV ); + fmt.b_packetized = false; p_sys->p_video = es_out_Add( p_demux->out, &fmt ); p_sys->i_vc = -1;