wvenc: remove flush call, not needed since 4f112a8e3

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2013-05-29 14:25:34 +00:00
parent 6d3b913479
commit f46732fe4d

View File

@ -20,7 +20,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "libavutil/attributes.h" #include "libavutil/attributes.h"
#include "apetag.h" #include "apetag.h"
@ -56,7 +55,6 @@ static int wv_write_packet(AVFormatContext *ctx, AVPacket *pkt)
s->samples += header.samples; s->samples += header.samples;
avio_write(ctx->pb, pkt->data, pkt->size); avio_write(ctx->pb, pkt->data, pkt->size);
avio_flush(ctx->pb);
return 0; return 0;
} }