[FFmpeg-cvslog] r11972 - trunk/libavfilter/avfilter.c
vitor
subversion
Fri Feb 15 22:35:40 CET 2008
Author: vitor
Date: Fri Feb 15 22:35:40 2008
New Revision: 11972
Log:
Cosmetic: align arguments to memcpys
Commited in SoC by Bobby Bingham on 2007-07-02 14:34:02
Modified:
trunk/libavfilter/avfilter.c
Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c (original)
+++ trunk/libavfilter/avfilter.c Fri Feb 15 22:35:40 2008
@@ -55,7 +55,7 @@ AVFilterPicRef *avfilter_default_get_vid
pic->free = avfilter_default_free_video_buffer;
avpicture_alloc((AVPicture *)pic, pic->format, ref->w, ref->h);
- memcpy(ref->data, pic->data, sizeof(pic->data));
+ memcpy(ref->data, pic->data, sizeof(pic->data));
memcpy(ref->linesize, pic->linesize, sizeof(pic->linesize));
return ref;
More information about the ffmpeg-cvslog
mailing list