OSDN Git Service

Fix the size of the data to be copied from an AVFilterBuffer to an
authorS.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu>
Sat, 7 Aug 2010 00:02:21 +0000 (00:02 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 7 Aug 2010 00:02:21 +0000 (00:02 +0000)
AVFilterBuffereRef in avfilter_default_get_video_buffer().

The error was being caused by the previous patch which resized
AVFilterBuffer's data and linesize arrays to 8.

Patch by S.N. Hemanth Meenakshisundaram" &smeenaks&ucsd&edu&.

Originally committed as revision 24727 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavfilter/defaults.c

index 8deef93..47ae1e9 100644 (file)
@@ -59,8 +59,8 @@ AVFilterPicRef *avfilter_default_get_video_buffer(AVFilterLink *link, int perms,
                                     // SIMD-friendly
     av_fill_image_pointers(pic->data, pic->format, ref->h, buf, pic->linesize);
 
-    memcpy(ref->data,     pic->data,     sizeof(pic->data));
-    memcpy(ref->linesize, pic->linesize, sizeof(pic->linesize));
+    memcpy(ref->data,     pic->data,     4*sizeof(pic->data[0]));
+    memcpy(ref->linesize, pic->linesize, 4*sizeof(pic->linesize[0]));
 
     return ref;
 }