1 /* GStreamer Editing Services
2  *
3  * Copyright (C) <2013> Thibault Saunier <thibault.saunier@collabora.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., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20 #ifndef _GES_VALIDATE_
21 #define _GES_VALIDATE_
22 
23 #include <glib.h>
24 #include <gio/gio.h>
25 #include <gst/gst.h>
26 
27 G_BEGIN_DECLS
28 
29 gboolean
30 ges_validate_activate (GstPipeline *pipeline, const gchar *scenario, gboolean *needs_set_state);
31 void ges_launch_validate_uri (const gchar *nid);
32 
33 gint
34 ges_validate_clean (GstPipeline *pipeline);
35 
36 void ges_validate_handle_request_state_change (GstMessage *message, GApplication *application);
37 gint ges_validate_print_action_types (const gchar **types, gint num_types);
38 
39 G_END_DECLS
40 
41 #endif  /* _GES_VALIDATE */
42