[FFmpeg-soc] [soc]: r1914 - libavfilter/defaults.c
vitor
subversion at mplayerhq.hu
Fri Feb 15 22:05:06 CET 2008
Author: vitor
Date: Fri Feb 15 22:05:06 2008
New Revision: 1914
Log:
Force alignment of pic->linesize
Modified:
libavfilter/defaults.c
Modified: libavfilter/defaults.c
==============================================================================
--- libavfilter/defaults.c (original)
+++ libavfilter/defaults.c Fri Feb 15 22:05:06 2008
@@ -20,14 +20,19 @@
*/
#include "avfilter.h"
+#include "imgconvert.h"
/* TODO: buffer pool. see comment for avfilter_default_get_video_buffer() */
void avfilter_default_free_video_buffer(AVFilterPic *pic)
{
- avpicture_free((AVPicture *) pic);
+ av_free(pic->data[0]);
av_free(pic);
}
+#define ALIGN(a) do{ \
+ (a) = ((a) + 15) & (~15); \
+ } while(0);
+
/* TODO: set the buffer's priv member to a context structure for the whole
* filter chain. This will allow for a buffer pool instead of the constant
* alloc & free cycle currently implemented. */
@@ -35,6 +40,8 @@ AVFilterPicRef *avfilter_default_get_vid
{
AVFilterPic *pic = av_mallocz(sizeof(AVFilterPic));
AVFilterPicRef *ref = av_mallocz(sizeof(AVFilterPicRef));
+ int i, tempsize;
+ char *buf;
ref->pic = pic;
ref->w = link->w;
@@ -46,9 +53,14 @@ AVFilterPicRef *avfilter_default_get_vid
pic->refcount = 1;
pic->format = link->format;
pic->free = avfilter_default_free_video_buffer;
- avpicture_alloc((AVPicture *)pic, pic->format,
- (ref->w + 15) & (~15), // make linesize a multiple of 16
- (ref->h + 15) & (~15));
+ ff_fill_linesize((AVPicture *)pic, pic->format, ref->w);
+
+ for (i=0; i<4;i++)
+ ALIGN(pic->linesize[i]);
+
+ tempsize = ff_fill_pointer((AVPicture *)pic, NULL, pic->format, ref->h);
+ buf = av_malloc(tempsize);
+ ff_fill_pointer((AVPicture *)pic, buf, pic->format, ref->h);
memcpy(ref->data, pic->data, sizeof(pic->data));
memcpy(ref->linesize, pic->linesize, sizeof(pic->linesize));
More information about the FFmpeg-soc
mailing list