Commit 7202a56a authored by Francois Cartegnie's avatar Francois Cartegnie

muxers: ogg: set invalid granulepos value (fix #8725)

parent ac833010
...@@ -989,6 +989,7 @@ static int MuxBlock( sout_mux_t *p_mux, sout_input_t *p_input ) ...@@ -989,6 +989,7 @@ static int MuxBlock( sout_mux_t *p_mux, sout_input_t *p_input )
op.b_o_s = 0; op.b_o_s = 0;
op.e_o_s = 0; op.e_o_s = 0;
op.packetno = p_stream->i_packet_no++; op.packetno = p_stream->i_packet_no++;
op.granulepos = -1;
if( p_stream->i_cat == AUDIO_ES ) if( p_stream->i_cat == AUDIO_ES )
{ {
......
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