[FFmpeg-cvslog] r11969 - trunk/libavfilter/avfilter.c
vitor
subversion
Fri Feb 15 22:35:29 CET 2008
Author: vitor
Date: Fri Feb 15 22:35:29 2008
New Revision: 11969
Log:
Fix a pointer type
Commited in SoC by Bobby Bingham on 2007-06-30 16:17:56
Modified:
trunk/libavfilter/avfilter.c
Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c (original)
+++ trunk/libavfilter/avfilter.c Fri Feb 15 22:35:29 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(int *) * 4);
+ memcpy(ref->data, pic->data, sizeof(uint8_t *) * 4);
memcpy(ref->linesize, pic->linesize, sizeof(int *) * 4);
return ref;
More information about the ffmpeg-cvslog
mailing list