]> git.sesse.net Git - ffmpeg/commitdiff
rmenc: Drop the temporary buffer for ac3 byteswap
authorLuca Barbato <lu_zero@gentoo.org>
Sat, 21 Mar 2015 14:38:37 +0000 (15:38 +0100)
committerLuca Barbato <lu_zero@gentoo.org>
Mon, 20 Apr 2015 10:41:33 +0000 (12:41 +0200)
Use direcly avio_w8().

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
libavformat/rmenc.c

index 863a866d1e11d924e875e10eaf6d94905996e8c0..ad2c17d529c4f443e0f3b945a739fc3aacf21dcc 100644 (file)
@@ -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;i<size;i+=2) {
-            buf1[i] = buf[i+1];
-            buf1[i+1] = buf[i];
+        for (i = 0; i < size; i += 2) {
+            avio_w8(pb, buf[i + 1]);
+            avio_w8(pb, buf[i]);
         }
-        avio_write(pb, buf1, size);
     } else {
         avio_write(pb, buf, size);
     }
     stream->nb_frames++;
-    av_free(buf1);
     return 0;
 }