[SCM] libav/experimental: Support deinterlacing of YUVJ422P in old deinterlacer. Patch by Maksym Veremeyenko verem at m1stereo tv.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:16:12 UTC 2013


The following commit has been merged in the experimental branch:
commit b299c4e4d342bd7894a9fe9b805a5c0f8b6603a1
Author: Maksym Veremeyenko <verem at m1stereo.tv>
Date:   Sat Sep 25 14:37:54 2010 +0000

    Support deinterlacing of YUVJ422P in old deinterlacer.
    Patch by Maksym Veremeyenko verem at m1stereo tv.
    
    Originally committed as revision 25195 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c
index 5e7f1fd..879335c 100644
--- a/libavcodec/imgconvert.c
+++ b/libavcodec/imgconvert.c
@@ -1177,6 +1177,7 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
     if (pix_fmt != PIX_FMT_YUV420P &&
         pix_fmt != PIX_FMT_YUVJ420P &&
         pix_fmt != PIX_FMT_YUV422P &&
+        pix_fmt != PIX_FMT_YUVJ422P &&
         pix_fmt != PIX_FMT_YUV444P &&
         pix_fmt != PIX_FMT_YUV411P &&
         pix_fmt != PIX_FMT_GRAY8)
@@ -1193,6 +1194,7 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
                 height >>= 1;
                 break;
             case PIX_FMT_YUV422P:
+            case PIX_FMT_YUVJ422P:
                 width >>= 1;
                 break;
             case PIX_FMT_YUV411P:

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list