Browse Source

vf_copy: silence "incompatible pointer type" warning

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 12 years ago
parent
commit
efaa2e01e6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_copy.c

+ 1
- 1
libavfilter/vf_copy.c View File

@@ -37,7 +37,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
return AVERROR(ENOMEM);
}
av_frame_copy_props(out, in);
av_image_copy(out->data, out->linesize, in->data, in->linesize,
av_image_copy(out->data, out->linesize, (const uint8_t**) in->data, in->linesize,
in->format, in->width, in->height);

av_frame_free(&in);


Loading…
Cancel
Save