From: Ramiro Polla Date: Tue, 19 Jan 2010 15:42:51 +0000 (+0000) Subject: swscale-example: Add comment about the use of av_{malloc,free}. X-Git-Tag: v0.6~1796 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9e5f164dc1ef90b08535db31370011af382429cc;p=platform%2Fupstream%2Flibav.git swscale-example: Add comment about the use of av_{malloc,free}. Originally committed as revision 30373 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale --- diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index a53b64b..7c43a39 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -102,6 +102,10 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, else dstStride[i]= dstW*4; + /* Image buffers passed into libswscale can be allocated any way you + * prefer, as long as they're aligned enough for the architecture, and + * they're freed appropriately (such as using av_free for buffers + * allocated with av_malloc). */ src[i]= av_malloc(srcStride[i]*srcH); dst[i]= av_malloc(dstStride[i]*dstH); out[i]= av_malloc(refStride[i]*h);