]> git.sesse.net Git - vlc/commitdiff
Fixed ES packetized propertys in PVA demuxer (close #3735).
authorLaurent Aimar <fenrir@videolan.org>
Thu, 10 Jun 2010 22:06:38 +0000 (00:06 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Thu, 10 Jun 2010 22:23:33 +0000 (00:23 +0200)
modules/demux/pva.c

index fad92474a98b9ab4f17749a386952fce7eebc6c0..b02f8ddff17820d5a8e270ce64eef2f9ff9d9505 100644 (file)
@@ -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;