]> git.sesse.net Git - ffmpeg/commitdiff
avformat/aiffenc: Remove wrong and redundant check
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Wed, 2 Oct 2019 04:04:12 +0000 (06:04 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Thu, 3 Oct 2019 17:34:23 +0000 (19:34 +0200)
The check "if (!pb->seekable & AVIO_SEEKABLE_NORMAL)" is wrong, because
! has higher precendence than &. But it is also redundant, because this
part of the code is only ever reached when the AVIO_SEEKABLE_NORMAL flag
is set for pb. So simply remove the check.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: Matthieu Bouron <matthieu.bouron@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavformat/aiffenc.c

index 0b837cd264f954383982941b4777029cfd3d356c..d09c9afb953e2b3106d5660818b030b0d8640a52 100644 (file)
@@ -49,9 +49,6 @@ static int put_id3v2_tags(AVFormatContext *s, AIFFOutputContext *aiff)
     AVIOContext *pb = s->pb;
     AVPacketList *pict_list = aiff->pict_list;
 
-    if (!pb->seekable & AVIO_SEEKABLE_NORMAL)
-        return 0;
-
     if (!s->metadata && !aiff->pict_list)
         return 0;