Browse Source

lavfutils: fix incompatible pointer type warning

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
6d401effc4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/lavfutils.c

+ 1
- 1
libavfilter/lavfutils.c View File

@@ -82,7 +82,7 @@ int ff_load_image(uint8_t *data[4], int linesize[4],
goto end;
ret = 0;

av_image_copy(data, linesize, frame->data, frame->linesize, *pix_fmt, *w, *h);
av_image_copy(data, linesize, (const uint8_t **)frame->data, frame->linesize, *pix_fmt, *w, *h);

end:
if (codec_ctx)


Loading…
Cancel
Save