Commit 972e1f8c authored by Francois Cartegnie's avatar Francois Cartegnie

access: dvdnav: missing vlc_object cast

parent d521bd3e
...@@ -1354,7 +1354,7 @@ static int DemuxBlock( demux_t *p_demux, const uint8_t *p, int len ) ...@@ -1354,7 +1354,7 @@ static int DemuxBlock( demux_t *p_demux, const uint8_t *p, int len )
ESNew( p_demux, i_id ); ESNew( p_demux, i_id );
} }
if( tk->b_seen && tk->es && if( tk->b_seen && tk->es &&
!ps_pkt_parse_pes( p_demux, p_pkt, tk->i_skip ) ) !ps_pkt_parse_pes( VLC_OBJECT(p_demux), p_pkt, tk->i_skip ) )
{ {
es_out_Send( p_demux->out, tk->es, p_pkt ); es_out_Send( p_demux->out, tk->es, p_pkt );
} }
......
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