From 18b59956e0e94017f1b519bb42c7c937b2f9f8a4 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Wed, 11 Apr 2012 03:37:13 -0700 Subject: [PATCH] movenc: remove redundant check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The proper check is already in mov_write_header. Signed-off-by: Martin Storsjö --- libavformat/movenc.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 5777443db2..ce656148a5 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -2816,9 +2816,6 @@ static int mov_write_packet_internal(AVFormatContext *s, AVPacket *pkt) uint8_t *reformatted_data = NULL; int64_t frag_duration = 0; - if (!s->pb->seekable && !(mov->flags & FF_MOV_FLAG_EMPTY_MOOV)) - return 0; /* Can't handle that */ - if (!size) return 0; /* Discard 0 sized packets */ if (trk->entry)