1 /* 2 * gstmsdkvpputil.h - MediaSDK video post processing utilities 3 * 4 * Copyright (C) 2016 Intel Corporation 5 * Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com> 6 * Author: Victor Jaquez <victorx.jaquez@intel.com> 7 * Copyright (C) 2018 Intel Corporation 8 * Author: Sreerenj Balachandran <sreerenj.balachandran@intel.com> 9 * 10 * This program is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU Lesser General Public License 12 * as published by the Free Software Foundation; either version 2.1 13 * of the License, or (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * Lesser General Public License for more details. 19 * 20 * You should have received a copy of the GNU Lesser General Public 21 * License along with this program; if not, write to the Free 22 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 23 * Boston, MA 02110-1301 USA 24 */ 25 26 #ifndef GST_MSDKVPPUTIL_H 27 #define GST_MSDKVPPUTIL_H 28 29 #include "gstmsdkvpp.h" 30 31 G_BEGIN_DECLS 32 33 GstCaps *gst_msdkvpp_fixate_srccaps (GstMsdkVPP * msdkvpp, 34 GstCaps * sinkcaps, GstCaps * srccaps); 35 36 gboolean 37 gst_msdkvpp_is_deinterlace_enabled (GstMsdkVPP * msdkvpp, 38 GstVideoInfo * vip); 39 40 G_END_DECLS 41 42 #endif /* GST_MSDKVPPUTIL_H */ 43