Commit 4792d1e7 authored by Benjamin Larsson's avatar Benjamin Larsson

Support deinterlacing of YUVJ420P.

Originally committed as revision 25148 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 63206a8f
...@@ -1175,6 +1175,7 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src, ...@@ -1175,6 +1175,7 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
int i; int i;
if (pix_fmt != PIX_FMT_YUV420P && if (pix_fmt != PIX_FMT_YUV420P &&
pix_fmt != PIX_FMT_YUVJ420P &&
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 &&
...@@ -1186,6 +1187,7 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src, ...@@ -1186,6 +1187,7 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
for(i=0;i<3;i++) { for(i=0;i<3;i++) {
if (i == 1) { if (i == 1) {
switch(pix_fmt) { switch(pix_fmt) {
case PIX_FMT_YUVJ420P:
case PIX_FMT_YUV420P: case PIX_FMT_YUV420P:
width >>= 1; width >>= 1;
height >>= 1; height >>= 1;
......
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