2013-09-13 21:15:21 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
*
|
|
|
|
* Copyright (C) <2013> Thibault Saunier <thibault.saunier@collabora.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2020-03-17 21:13:51 +00:00
|
|
|
#pragma once
|
2013-09-13 21:15:21 +00:00
|
|
|
|
|
|
|
#include <glib.h>
|
2015-03-24 13:13:54 +00:00
|
|
|
#include <gio/gio.h>
|
2013-09-13 21:15:21 +00:00
|
|
|
#include <gst/gst.h>
|
2019-06-28 21:35:40 +00:00
|
|
|
#include <ges/ges.h>
|
2013-09-13 21:15:21 +00:00
|
|
|
|
2021-01-15 18:26:36 +00:00
|
|
|
#include "utils.h"
|
2020-02-04 20:07:39 +00:00
|
|
|
#include "ges-launcher.h"
|
|
|
|
|
2013-09-13 21:15:21 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
gboolean
|
2020-02-24 11:50:04 +00:00
|
|
|
ges_validate_activate(GstPipeline* pipeline, GESLauncher *launcher, GESLauncherParsedOptions* opts);
|
2020-02-04 20:07:39 +00:00
|
|
|
void ges_launch_validate_uri(const gchar* nid);
|
2013-09-13 21:15:21 +00:00
|
|
|
|
|
|
|
gint
|
|
|
|
ges_validate_clean (GstPipeline *pipeline);
|
|
|
|
|
2015-03-24 13:13:54 +00:00
|
|
|
void ges_validate_handle_request_state_change (GstMessage *message, GApplication *application);
|
2014-09-05 19:08:49 +00:00
|
|
|
gint ges_validate_print_action_types (const gchar **types, gint num_types);
|
2014-05-18 16:34:26 +00:00
|
|
|
|
2013-09-13 21:15:21 +00:00
|
|
|
G_END_DECLS
|