[FFmpeg-cvslog] avcodec/iff: Add "else" to make code look prettier
    Michael Niedermayer 
    git at videolan.org
       
    Mon Jul 15 00:06:41 EEST 2019
    
    
  
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sat Jul 13 19:43:13 2019 +0200| [84669b1872269a458266b63005cade9788a00a64] | committer: Michael Niedermayer
avcodec/iff: Add "else" to make code look prettier
Reviewed-by: Peter Ross <pross at xvid.org>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=84669b1872269a458266b63005cade9788a00a64
---
 libavcodec/iff.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/iff.c b/libavcodec/iff.c
index c6e2359b00..7f1c589d7c 100644
--- a/libavcodec/iff.c
+++ b/libavcodec/iff.c
@@ -284,7 +284,7 @@ static int extract_header(AVCodecContext *const avctx,
             if (s->bpp > 8) {
                 av_log(avctx, AV_LOG_ERROR, "Invalid number of hold bits for HAM: %u\n", s->ham);
                 return AVERROR_INVALIDDATA;
-            } if (s->ham != (s->bpp > 6 ? 6 : 4)) {
+            } else if (s->ham != (s->bpp > 6 ? 6 : 4)) {
                 av_log(avctx, AV_LOG_ERROR, "Invalid number of hold bits for HAM: %u, BPP: %u\n", s->ham, s->bpp);
                 return AVERROR_INVALIDDATA;
             }
    
    
More information about the ffmpeg-cvslog
mailing list