mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-02 02:00:45 +08:00
Remove unnecessary parentheses from return calls.
Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -1690,7 +1690,7 @@ static int has_codec_parameters(AVCodecContext *enc)
|
||||
val = 1;
|
||||
break;
|
||||
}
|
||||
return (enc->codec_id != CODEC_ID_NONE && val != 0);
|
||||
return enc->codec_id != CODEC_ID_NONE && val != 0;
|
||||
}
|
||||
|
||||
static int try_decode_frame(AVStream *st, const uint8_t *data, int size)
|
||||
|
Reference in New Issue
Block a user