]> git.sesse.net Git - ffmpeg/commitdiff
lavc: shrink encoded audio packet size after encoding.
authorJustin Ruggles <justin.ruggles@gmail.com>
Tue, 20 Mar 2012 17:21:52 +0000 (13:21 -0400)
committerJustin Ruggles <justin.ruggles@gmail.com>
Tue, 20 Mar 2012 18:12:54 +0000 (14:12 -0400)
libavcodec/utils.c

index fc48f029f67c071f7a68289958fd3517ef465268..a638bbfc91a0b4ddc1b6aced38f239a3b6c8213c 100644 (file)
@@ -960,8 +960,15 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
         if (fs_tmp)
             avctx->frame_size = fs_tmp;
     }
-    if (!ret)
+    if (!ret) {
+        if (!user_packet && avpkt->data) {
+            uint8_t *new_data = av_realloc(avpkt->data, avpkt->size);
+            if (new_data)
+                avpkt->data = new_data;
+        }
+
         avctx->frame_number++;
+    }
 
     if (ret < 0 || !*got_packet_ptr)
         av_free_packet(avpkt);