From f46732fe4d2ce5cb7978522f27226234fe5492c4 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 29 May 2013 14:25:34 +0000 Subject: [PATCH] wvenc: remove flush call, not needed since 4f112a8e3 Signed-off-by: Paul B Mahol --- libavformat/wvenc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavformat/wvenc.c b/libavformat/wvenc.c index 7fed4a687d..a1e462390c 100644 --- a/libavformat/wvenc.c +++ b/libavformat/wvenc.c @@ -20,7 +20,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ - #include "libavutil/attributes.h" #include "apetag.h" @@ -56,7 +55,6 @@ static int wv_write_packet(AVFormatContext *ctx, AVPacket *pkt) s->samples += header.samples; avio_write(ctx->pb, pkt->data, pkt->size); - avio_flush(ctx->pb); return 0; }