Commit e0c6fe20 authored by cehoyos's avatar cehoyos

Enable avpicture_deinterlace() for PIX_FMT_GRAY8.

Patch by Andrea Gualano, gualano T imavis O com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10712 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d956ad36
...@@ -2824,7 +2824,8 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src, ...@@ -2824,7 +2824,8 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
if (pix_fmt != PIX_FMT_YUV420P && if (pix_fmt != PIX_FMT_YUV420P &&
pix_fmt != PIX_FMT_YUV422P && pix_fmt != PIX_FMT_YUV422P &&
pix_fmt != PIX_FMT_YUV444P && pix_fmt != PIX_FMT_YUV444P &&
pix_fmt != PIX_FMT_YUV411P) pix_fmt != PIX_FMT_YUV411P &&
pix_fmt != PIX_FMT_GRAY8)
return -1; return -1;
if ((width & 3) != 0 || (height & 3) != 0) if ((width & 3) != 0 || (height & 3) != 0)
return -1; return -1;
...@@ -2845,6 +2846,9 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src, ...@@ -2845,6 +2846,9 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
default: default:
break; break;
} }
if (pix_fmt == PIX_FMT_GRAY8) {
break;
}
} }
if (src == dst) { if (src == dst) {
deinterlace_bottom_field_inplace(dst->data[i], dst->linesize[i], deinterlace_bottom_field_inplace(dst->data[i], dst->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