From d34039b171bebe37bf723a1b03e5651267099739 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sat, 21 Mar 2015 15:38:37 +0100 Subject: rmenc: Drop the temporary buffer for ac3 byteswap Use direcly avio_w8(). Signed-off-by: Luca Barbato --- libavformat/rmenc.c | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'libavformat/rmenc.c') diff --git a/libavformat/rmenc.c b/libavformat/rmenc.c index 863a866d1e..ad2c17d529 100644 --- a/libavformat/rmenc.c +++ b/libavformat/rmenc.c @@ -355,31 +355,23 @@ static int rm_write_header(AVFormatContext *s) static int rm_write_audio(AVFormatContext *s, const uint8_t *buf, int size, int flags) { - uint8_t *buf1; RMMuxContext *rm = s->priv_data; AVIOContext *pb = s->pb; StreamInfo *stream = rm->audio_stream; int i; - /* XXX: suppress this malloc */ - buf1 = av_malloc(size * sizeof(uint8_t)); - if (!buf1) - return AVERROR(ENOMEM); - write_packet_header(s, stream, size, !!(flags & AV_PKT_FLAG_KEY)); if (stream->enc->codec_id == AV_CODEC_ID_AC3) { /* for AC-3, the words seem to be reversed */ - for(i=0;inb_frames++; - av_free(buf1); return 0; } -- cgit v1.2.3