Tizen 2.0 Release
[framework/multimedia/gst-plugins-bad0.10.git] / tests / examples / opencv / gst_element_print_properties.h
1 /* GStreamer
2  * Copyright (C) 2010 Wesley Miller <wmiller@sdr.com>
3  *
4  *
5  *  gst_element_print_properties(): a tool to inspect GStreamer
6  *                                  element properties
7  *
8  *  This program is free software: you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation, either version 3 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program 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
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  *
21  */
22
23 #ifndef GST_ELEMENT_PRINT_PROPERTIES_H
24 #define GST_ELEMENT_PRINT_PROPERTIES_H
25
26 extern void gst_element_print_properties (GstElement * element);
27 extern void print_column_titles (guint c2w, guint c3w, guint c4w);
28 extern void print_element_info (GstElement * element, guint c2w, guint c3w,
29     guint c4w);
30 extern gchar *flags_to_string (GFlagsValue * vals, guint flags);
31 extern void print_caps (const GstCaps * caps, const gchar * pfx);
32 extern gboolean print_field (GQuark field, const GValue * value, gpointer pfx);
33
34 #endif