Commit df6b7708 authored by Laurent Aimar's avatar Laurent Aimar Committed by Jean-Baptiste Kempf

Fixed ES packetized propertys in PVA demuxer (close #3735).

(cherry picked from commit 925f5e02)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent c26bdee6
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment