Commit c4611bcd authored by Francois Cartegnie's avatar Francois Cartegnie

demux: asf: fix double declaration (cid 1135582)

parent b52e3f08
...@@ -597,7 +597,7 @@ static void ParsePayloadExtensions(demux_t *p_demux, asf_track_t *tk, ...@@ -597,7 +597,7 @@ static void ParsePayloadExtensions(demux_t *p_demux, asf_track_t *tk,
/* Extensions always come in the declared order */ /* Extensions always come in the declared order */
for ( int i=0; i< tk->p_esp->i_payload_extension_system_count; i++ ) for ( int i=0; i< tk->p_esp->i_payload_extension_system_count; i++ )
{ {
asf_payload_extension_system_t *p_ext = &tk->p_esp->p_ext[i]; p_ext = &tk->p_esp->p_ext[i];
if ( p_ext->i_data_size == 0xFFFF ) /* Variable length extension data */ if ( p_ext->i_data_size == 0xFFFF ) /* Variable length extension data */
{ {
if ( i_length < 2 ) return; if ( i_length < 2 ) return;
......
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