diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-05-29 14:25:34 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-05-29 14:25:34 +0000 |
commit | f46732fe4d2ce5cb7978522f27226234fe5492c4 (patch) | |
tree | 5ec7cace0632347614c554f9ac74a5546ba0d904 /libavformat/wvenc.c | |
parent | 6d3b913479f25a69153ee9b8d93090e1bc57c000 (diff) | |
download | ffmpeg-f46732fe4d2ce5cb7978522f27226234fe5492c4.tar.gz |
wvenc: remove flush call, not needed since 4f112a8e3
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/wvenc.c')
-rw-r--r-- | libavformat/wvenc.c | 2 |
1 files changed, 0 insertions, 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; } |