Browse Source

vsrc_buffer: FIx incompatible pointer type warning

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
2982b02b79
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vsrc_buffer.c

+ 1
- 1
libavfilter/vsrc_buffer.c View File

@@ -105,7 +105,7 @@ int av_vsrc_buffer_add_video_buffer_ref(AVFilterContext *buffer_filter,
c->picref = avfilter_get_video_buffer(outlink, AV_PERM_WRITE,
picref->video->w, picref->video->h);
av_image_copy(c->picref->data, c->picref->linesize,
picref->data, picref->linesize,
(void*)picref->data, picref->linesize,
picref->format, picref->video->w, picref->video->h);
avfilter_copy_buffer_ref_props(c->picref, picref);



Loading…
Cancel
Save