Commit 72ddabb8 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix dead assignement.

parent c1ec23d7
...@@ -146,8 +146,6 @@ VCDReadBlock( access_t * p_access ) ...@@ -146,8 +146,6 @@ VCDReadBlock( access_t * p_access )
int i_read; int i_read;
uint8_t *p_buf; uint8_t *p_buf;
i_read = 0;
dbg_print( (INPUT_DBG_LSN), "lsn: %lu", dbg_print( (INPUT_DBG_LSN), "lsn: %lu",
(long unsigned int) p_vcdplayer->i_lsn ); (long unsigned int) p_vcdplayer->i_lsn );
......
...@@ -207,7 +207,6 @@ static inline int64_t MP4_TrackGetDTS( demux_t *p_demux, mp4_track_t *p_track ) ...@@ -207,7 +207,6 @@ static inline int64_t MP4_TrackGetDTS( demux_t *p_demux, mp4_track_t *p_track )
else else
{ {
i_dts += i_sample * chunk.p_sample_delta_dts[i_index]; i_dts += i_sample * chunk.p_sample_delta_dts[i_index];
i_sample = 0;
break; break;
} }
} }
......
...@@ -2449,7 +2449,6 @@ static void Eject( intf_thread_t *p_intf ) ...@@ -2449,7 +2449,6 @@ static void Eject( intf_thread_t *p_intf )
} }
/* Remove what we have after @ */ /* Remove what we have after @ */
psz_parser = psz_device;
for( psz_parser = psz_device ; *psz_parser ; psz_parser++ ) for( psz_parser = psz_device ; *psz_parser ; psz_parser++ )
{ {
if( *psz_parser == '@' ) if( *psz_parser == '@' )
......
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