Commit c89751aa authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '210461c0'

* commit '210461c0':
  imgconvert: check memory allocations and propagate errors
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 8ccfafa7 210461c0
......@@ -378,13 +378,15 @@ static void deinterlace_bottom_field(uint8_t *dst, int dst_wrap,
deinterlace_line(dst,src_m2,src_m1,src_0,src_0,src_0,width);
}
static void deinterlace_bottom_field_inplace(uint8_t *src1, int src_wrap,
int width, int height)
static int deinterlace_bottom_field_inplace(uint8_t *src1, int src_wrap,
int width, int height)
{
uint8_t *src_m1, *src_0, *src_p1, *src_p2;
int y;
uint8_t *buf;
buf = av_malloc(width);
if (!buf)
return AVERROR(ENOMEM);
src_m1 = src1;
memcpy(buf,src_m1,width);
......@@ -401,12 +403,13 @@ static void deinterlace_bottom_field_inplace(uint8_t *src1, int src_wrap,
/* do last line */
deinterlace_line_inplace(buf,src_m1,src_0,src_0,src_0,width);
av_free(buf);
return 0;
}
int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
enum AVPixelFormat pix_fmt, int width, int height)
{
int i;
int i, ret;
if (pix_fmt != AV_PIX_FMT_YUV420P &&
pix_fmt != AV_PIX_FMT_YUVJ420P &&
......@@ -442,8 +445,11 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
}
}
if (src == dst) {
deinterlace_bottom_field_inplace(dst->data[i], dst->linesize[i],
width, height);
ret = deinterlace_bottom_field_inplace(dst->data[i],
dst->linesize[i],
width, height);
if (ret < 0)
return ret;
} else {
deinterlace_bottom_field(dst->data[i],dst->linesize[i],
src->data[i], src->linesize[i],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment