[FFmpeg-cvslog] avformat/aiffenc: Remove always-false check

Andreas Rheinhardt git at videolan.org
Sun Apr 18 03:45:05 EEST 2021


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sat Apr 10 02:01:41 2021 +0200| [a4869bf029fdb49a9cb6643d37a4cb081d6d443c] | committer: Andreas Rheinhardt

avformat/aiffenc: Remove always-false check

write_header() already checks that there are only video tracks besides
the one audio track.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a4869bf029fdb49a9cb6643d37a4cb081d6d443c
---

 libavformat/aiffenc.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/libavformat/aiffenc.c b/libavformat/aiffenc.c
index 06e475cddb..1ecdb52ee7 100644
--- a/libavformat/aiffenc.c
+++ b/libavformat/aiffenc.c
@@ -210,9 +210,6 @@ static int aiff_write_packet(AVFormatContext *s, AVPacket *pkt)
     if (pkt->stream_index == aiff->audio_stream_idx)
         avio_write(pb, pkt->data, pkt->size);
     else {
-        if (s->streams[pkt->stream_index]->codecpar->codec_type != AVMEDIA_TYPE_VIDEO)
-            return 0;
-
         /* warn only once for each stream */
         if (s->streams[pkt->stream_index]->nb_frames == 1) {
             av_log(s, AV_LOG_WARNING, "Got more than one picture in stream %d,"



More information about the ffmpeg-cvslog mailing list