diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-06 00:10:42 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-06 00:10:42 +0000 |
commit | 6e2fdc3eb149403520bd299e3630a655d0aca851 (patch) | |
tree | 3280ec0e744b10809e97a16aea425317e847ecb1 /ffmpeg.c | |
parent | 570da52bacbf778700adf83348a87b8a406d41df (diff) | |
download | ffmpeg-6e2fdc3eb149403520bd299e3630a655d0aca851.tar.gz |
Add parentheses in boolean expression: (A && B || C) => ((A && B) || C),
fix the warning:
ffmpeg.c: In function ‘output_packet’:
ffmpeg.c:1317: warning: suggest parentheses around && within ||
Originally committed as revision 21650 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1314,7 +1314,7 @@ static int output_packet(AVInputStream *ist, int ist_index, ist->pts= ist->next_pts; if(avpkt.size && avpkt.size != pkt->size && - (!ist->showed_multi_packet_warning && verbose>0 || verbose>1)){ + ((!ist->showed_multi_packet_warning && verbose>0) || verbose>1)){ fprintf(stderr, "Multiple frames in a packet from stream %d\n", pkt->stream_index); ist->showed_multi_packet_warning=1; } |