Browse Source

Cosmetic: align arguments to memcpys

Commited in SoC by Bobby Bingham on 2007-07-02 14:34:02

Originally committed as revision 11972 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 18 years ago
parent
commit
92beffdc92
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/avfilter.c

+ 1
- 1
libavfilter/avfilter.c View File

@@ -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(pic->data));
memcpy(ref->data, pic->data, sizeof(pic->data));
memcpy(ref->linesize, pic->linesize, sizeof(pic->linesize));

return ref;


Loading…
Cancel
Save