From: Sebastien Zwickert Date: Tue, 14 Aug 2012 09:47:39 +0000 (+0200) Subject: vda: better frame allocation X-Git-Tag: v9_beta1~670 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=694be29f13622c6b38c747c3bb14c93c95435c4d;p=platform%2Fupstream%2Flibav.git vda: better frame allocation Signed-off-by: Diego Biurrun --- diff --git a/libavcodec/vda_h264.c b/libavcodec/vda_h264.c index 2d2d228..5c8f567 100644 --- a/libavcodec/vda_h264.c +++ b/libavcodec/vda_h264.c @@ -144,7 +144,7 @@ static void vda_decoder_callback(void *vda_hw_ctx, vda_frame *new_frame; vda_frame *queue_walker; - if (!(new_frame = av_mallocz(sizeof(vda_frame)))) + if (!(new_frame = av_mallocz(sizeof(*new_frame)))) return; new_frame->next_frame = NULL; new_frame->cv_buffer = CVPixelBufferRetain(image_buffer);