diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-27 18:32:14 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-31 16:11:26 +0200 |
commit | 22ee131e85983769a6901d190feb9d01a410e0b5 (patch) | |
tree | c6d6022441f95be8f45b1225407c2b8bdda9119d /libavfilter/vf_yadif.c | |
parent | 66ce282df54edb33515d9ef3015b737428b6e0c3 (diff) | |
download | ffmpeg-22ee131e85983769a6901d190feb9d01a410e0b5.tar.gz |
vf_yadif: add support to yuva420p
Diffstat (limited to 'libavfilter/vf_yadif.c')
-rw-r--r-- | libavfilter/vf_yadif.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index 13186e79ad..c3fd93c6d0 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -145,7 +145,7 @@ static void filter(AVFilterContext *ctx, AVFilterBufferRef *dstpic, int refs = yadif->cur->linesize[i]; int df = (yadif->csp->comp[i].depth_minus1+1) / 8; - if (i) { + if (i == 1 || i == 2) { /* Why is this not part of the per-plane description thing? */ w >>= yadif->csp->log2_chroma_w; h >>= yadif->csp->log2_chroma_h; @@ -355,6 +355,7 @@ static int query_formats(AVFilterContext *ctx) AV_NE( PIX_FMT_YUV420P16BE, PIX_FMT_YUV420P16LE ), AV_NE( PIX_FMT_YUV422P16BE, PIX_FMT_YUV422P16LE ), AV_NE( PIX_FMT_YUV444P16BE, PIX_FMT_YUV444P16LE ), + PIX_FMT_YUVA420P, PIX_FMT_NONE }; |