1 /* 2 * GStreamer 3 * Copyright (C) 2019 Jan Schmidt <jan@centricular.com> 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Library General Public 7 * License as published by the Free Software Foundation; either 8 * version 2 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Library General Public License for more details. 14 * 15 * You should have received a copy of the GNU Library General Public 16 * License along with this library; if not, write to the 17 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 18 * Boston, MA 02110-1301, USA. 19 */ 20 21 #ifndef __YADIF_H__ 22 #define __YADIF_H__ 23 24 #define GST_TYPE_DEINTERLACE_YADIF (gst_deinterlace_method_yadif_get_type ()) 25 26 GType gst_deinterlace_method_yadif_get_type (void); 27 28 void 29 gst_yadif_filter_line_mode0_sse2 (void *dst, const void *tzero, const void *bzero, 30 const void *mone, const void *mp, const void *ttwo, const void *btwo, const void *tptwo, const void *bptwo, 31 const void *ttone, const void *ttp, const void *bbone, const void *bbp, int w); 32 33 void 34 gst_yadif_filter_line_mode2_sse2 (void *dst, const void *tzero, const void *bzero, 35 const void *mone, const void *mp, const void *ttwo, const void *btwo, const void *tptwo, const void *bptwo, 36 const void *ttone, const void *ttp, const void *bbone, const void *bbp, int w); 37 38 void 39 gst_yadif_filter_line_mode0_ssse3 (void *dst, const void *tzero, const void *bzero, 40 const void *mone, const void *mp, const void *ttwo, const void *btwo, const void *tptwo, const void *bptwo, 41 const void *ttone, const void *ttp, const void *bbone, const void *bbp, int w); 42 43 void 44 gst_yadif_filter_line_mode2_ssse3 (void *dst, const void *tzero, const void *bzero, 45 const void *mone, const void *mp, const void *ttwo, const void *btwo, const void *tptwo, const void *bptwo, 46 const void *ttone, const void *ttp, const void *bbone, const void *bbp, int w); 47 48 #endif 49