Browse Source

Use parentheses around && within ||, fix the gcc warning:

ffplay.c: In function ‘video_thread’:
ffplay.c:1391: warning: suggest parentheses around && within ||

Originally committed as revision 21600 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Stefano Sabatini 15 years ago
parent
commit
ecbed31c00
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffplay.c

+ 1
- 1
ffplay.c View File

@@ -1387,7 +1387,7 @@ static int video_thread(void *arg)
} }


if( ( decoder_reorder_pts==1 if( ( decoder_reorder_pts==1
|| decoder_reorder_pts && is->faulty_pts<is->faulty_dts
|| (decoder_reorder_pts && is->faulty_pts<is->faulty_dts)
|| pkt->dts == AV_NOPTS_VALUE) || pkt->dts == AV_NOPTS_VALUE)
&& frame->reordered_opaque != AV_NOPTS_VALUE) && frame->reordered_opaque != AV_NOPTS_VALUE)
pts= frame->reordered_opaque; pts= frame->reordered_opaque;


Loading…
Cancel
Save