1 /* 2 * Copyright (C) 2013, Fluendo S.A. 3 * Author: Andoni Morales <amorales@fluendo.com> 4 * 5 * Copyright (C) 2014,2018 Collabora Ltd. 6 * Author: Matthieu Bouron <matthieu.bouron@collabora.com> 7 * 8 * This library is free software; you can redistribute it and/or 9 * modify it under the terms of the GNU Lesser General Public 10 * License as published by the Free Software Foundation 11 * version 2.1 of the License. 12 * 13 * This library is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * Lesser General Public License for more details. 17 * 18 * You should have received a copy of the GNU Lesser General Public 19 * License along with this library; if not, write to the Free Software 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 21 * 22 */ 23 24 #ifndef __GST_AMC_SURFACE_TEXTURE_JNI_H__ 25 #define __GST_AMC_SURFACE_TEXTURE_JNI_H__ 26 27 #include "../gstamcsurfacetexture.h" 28 29 G_BEGIN_DECLS 30 31 #define GST_TYPE_AMC_SURFACE_TEXTURE_JNI gst_amc_surface_texture_jni_get_type () 32 G_DECLARE_FINAL_TYPE (GstAmcSurfaceTextureJNI, gst_amc_surface_texture_jni, GST, AMC_SURFACE_TEXTURE_JNI, GstAmcSurfaceTexture) 33 34 GstAmcSurfaceTextureJNI * gst_amc_surface_texture_jni_new (GError ** err); 35 36 jobject gst_amc_surface_texture_jni_get_jobject (GstAmcSurfaceTextureJNI * self); 37 38 G_END_DECLS 39 40 #endif 41