projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c74032b
)
Fix a pointer type
author
Vitor Sessak
<vitor1001@gmail.com>
Fri, 15 Feb 2008 21:35:29 +0000
(21:35 +0000)
committer
Vitor Sessak
<vitor1001@gmail.com>
Fri, 15 Feb 2008 21:35:29 +0000
(21:35 +0000)
Commited in SoC by Bobby Bingham on 2007-06-30 16:17:56
Originally committed as revision 11969 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavfilter/avfilter.c
patch
|
blob
|
history
diff --git
a/libavfilter/avfilter.c
b/libavfilter/avfilter.c
index
c788623
..
1daf0e5
100644
(file)
--- a/
libavfilter/avfilter.c
+++ b/
libavfilter/avfilter.c
@@
-55,7
+55,7
@@
AVFilterPicRef *avfilter_default_get_video_buffer(AVFilterLink *link, int perms)
pic->free = avfilter_default_free_video_buffer;
avpicture_alloc((AVPicture *)pic, pic->format, ref->w, ref->h);
- memcpy(ref->data, pic->data, sizeof(
in
t *) * 4);
+ memcpy(ref->data, pic->data, sizeof(
uint8_
t *) * 4);
memcpy(ref->linesize, pic->linesize, sizeof(int *) * 4);
return ref;