mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
Remove another useless ()
Originally committed as revision 19044 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
21bf2f51d7
commit
ce22c7d075
@ -571,7 +571,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
||||
av_log(avctx, AV_LOG_DEBUG, "Multithread encoder flag set.\n");
|
||||
if (c->flags & FLAG_NULLFRAME)
|
||||
av_log(avctx, AV_LOG_DEBUG, "Nullframe insertion flag set.\n");
|
||||
if ((avctx->codec_id == CODEC_ID_ZLIB) && (c->flags & FLAG_PNGFILTER))
|
||||
if (avctx->codec_id == CODEC_ID_ZLIB && (c->flags & FLAG_PNGFILTER))
|
||||
av_log(avctx, AV_LOG_DEBUG, "PNG filter flag set.\n");
|
||||
if (c->flags & FLAGMASK_UNUSED)
|
||||
av_log(avctx, AV_LOG_ERROR, "Unknown flag set (%d).\n", c->flags);
|
||||
|
Loading…
Reference in New Issue
Block a user