libavfilter/tinterlace.h
9d548fce
 /*
  * Copyright (c) 2011 Stefano Sabatini
  * Copyright (c) 2010 Baptiste Coudurier
  * Copyright (c) 2003 Michael Zucchi <notzed@ximian.com>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License along
  * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 /**
  * @file
  * temporal field interlace filter, ported from MPlayer/libmpcodecs
  */
 #ifndef AVFILTER_TINTERLACE_H
 #define AVFILTER_TINTERLACE_H
 
40bfaa19
 #include "libavutil/bswap.h"
9d548fce
 #include "libavutil/opt.h"
40bfaa19
 #include "libavutil/pixdesc.h"
58ca4466
 #include "drawutils.h"
9d548fce
 #include "avfilter.h"
 
2da5bf4c
 #define TINTERLACE_FLAG_VLPF 01
 #define TINTERLACE_FLAG_EXACT_TB 2
 #define TINTERLACE_FLAG_CVLPF 4
 
9d548fce
 enum TInterlaceMode {
     MODE_MERGE = 0,
     MODE_DROP_EVEN,
     MODE_DROP_ODD,
     MODE_PAD,
     MODE_INTERLEAVE_TOP,
     MODE_INTERLEAVE_BOTTOM,
     MODE_INTERLACEX2,
13090895
     MODE_MERGEX2,
9d548fce
     MODE_NB,
 };
 
ed93ed5e
 typedef struct TInterlaceContext {
9d548fce
     const AVClass *class;
8ae35000
     int mode;                   ///< TInterlaceMode, interlace mode selected
59f1f764
     AVRational preout_time_base;
9d548fce
     int flags;                  ///< flags affecting interlacing algorithm
     int frame;                  ///< number of the output frame
     int vsub;                   ///< chroma vertical subsampling
     AVFrame *cur;
     AVFrame *next;
     uint8_t *black_data[4];     ///< buffer used to fill padded lines
     int black_linesize[4];
58ca4466
     FFDrawContext draw;
     FFDrawColor color;
40bfaa19
     const AVPixFmtDescriptor *csp;
18b46ecc
     void (*lowpass_line)(uint8_t *dstp, ptrdiff_t width, const uint8_t *srcp,
40bfaa19
                          ptrdiff_t mref, ptrdiff_t pref, int clip_max);
9d548fce
 } TInterlaceContext;
 
fb3eb573
 void ff_tinterlace_init_x86(TInterlaceContext *interlace);
 
9d548fce
 #endif /* AVFILTER_TINTERLACE_H */