Mercurial > libavformat.hg
diff utils.c @ 3278:1de87c1b6a12 libavformat
Remove unnecessary parentheses from return calls.
| author | diego |
|---|---|
| date | Tue, 06 May 2008 09:16:36 +0000 |
| parents | 7fe0c156ed74 |
| children | 6f61c3b36632 |
line wrap: on
line diff
--- a/utils.c Mon May 05 09:17:56 2008 +0000 +++ b/utils.c Tue May 06 09:16:36 2008 +0000 @@ -1690,7 +1690,7 @@ 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)
