[vlc-commits] commit: Fixed ES packetized propertys in PVA demuxer (close #3735). ( Laurent Aimar )
git at videolan.org
git at videolan.org
Fri Jun 11 00:31:39 CEST 2010
vlc/vlc-1.1 | branch: master | Laurent Aimar <fenrir at videolan.org> | Fri Jun 11 00:06:38 2010 +0200| [df6b77086c6f25d046586d6f1d2eddcf608eebd7] | committer: Jean-Baptiste Kempf
Fixed ES packetized propertys in PVA demuxer (close #3735).
(cherry picked from commit 925f5e0229bd473c162f5fee4529af1921d3e840)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=df6b77086c6f25d046586d6f1d2eddcf608eebd7
---
modules/demux/pva.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/modules/demux/pva.c b/modules/demux/pva.c
index fad9247..b02f8dd 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;
More information about the vlc-commits
mailing list