mirror of
https://github.com/videolan/vlc.git
synced 2024-12-13 11:44:18 +08:00
Make parenthesis explicite
This commit is contained in:
parent
174bef2955
commit
7ea4dc2480
@ -1663,10 +1663,10 @@ static int TrackGotoChunkSample( demux_t *p_demux, mp4_track_t *p_track,
|
||||
vlc_bool_t b_reselect = VLC_FALSE;
|
||||
|
||||
/* now see if actual es is ok */
|
||||
if( p_track->i_chunk < 0 ||
|
||||
p_track->i_chunk >= p_track->i_chunk_count - 1 ||
|
||||
p_track->chunk[p_track->i_chunk].i_sample_description_index !=
|
||||
p_track->chunk[i_chunk].i_sample_description_index )
|
||||
if( (p_track->i_chunk == 0) ||
|
||||
(p_track->i_chunk >= p_track->i_chunk_count - 1) ||
|
||||
(p_track->chunk[p_track->i_chunk].i_sample_description_index !=
|
||||
p_track->chunk[i_chunk].i_sample_description_index) )
|
||||
{
|
||||
msg_Warn( p_demux, "recreate ES for track[Id 0x%x]",
|
||||
p_track->i_track_ID );
|
||||
|
Loading…
Reference in New Issue
Block a user