Module: libav
Branch: master
Commit: c15fea7933b3801962851a37c3ef00ce968431c4

Author:    Janne Grunau <[email protected]>
Committer: Janne Grunau <[email protected]>
Date:      Sun Dec  2 22:15:42 2012 +0100

mimic: initialize padding of swap_buf through av_fast_padded_malloc

---

 libavcodec/mimic.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/libavcodec/mimic.c b/libavcodec/mimic.c
index 8e35f92..95695de 100644
--- a/libavcodec/mimic.c
+++ b/libavcodec/mimic.c
@@ -370,8 +370,7 @@ static int mimic_decode_frame(AVCodecContext *avctx, void 
*data,
 
     ff_thread_finish_setup(avctx);
 
-    av_fast_malloc(&ctx->swap_buf, &ctx->swap_buf_size,
-                                 swap_buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
+    av_fast_padded_malloc(&ctx->swap_buf, &ctx->swap_buf_size, swap_buf_size);
     if(!ctx->swap_buf)
         return AVERROR(ENOMEM);
 

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to