1 /* 2 * GStreamer 3 * Copyright (C) 2008 Nokia Corporation <multimedia@maemo.org> 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 __CAMERABIN_GENERAL_H_ 22 #define __CAMERABIN_GENERAL_H_ 23 24 #include <gst/gst.h> 25 26 gboolean gst_camerabin_try_add_element (GstBin * bin, const gchar * srcpad, GstElement * new_elem, const gchar * dstpad); 27 gboolean gst_camerabin_add_element (GstBin * bin, GstElement * new_elem); 28 gboolean gst_camerabin_add_element_full (GstBin * bin, const gchar * srcpad, GstElement * new_elem, const gchar * dstpad); 29 30 GstElement *gst_camerabin_create_and_add_element (GstBin * bin, const gchar * elem_name, const gchar * instance_name); 31 32 GstElement * gst_camerabin_setup_default_element (GstBin * bin, GstElement *user_elem, const gchar *auto_elem_name, const gchar *default_elem_name, 33 const gchar * instance_elem_name); 34 35 void gst_camerabin_remove_elements_from_bin (GstBin * bin); 36 37 #endif /* #ifndef __CAMERABIN_GENERAL_H_ */ 38