/* GStreamer Editing Services * Copyright (C) 2015 Mathieu Duponchelle * * 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., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ #pragma once #include G_BEGIN_DECLS #define GES_TYPE_LAUNCHER ges_launcher_get_type() typedef struct _GESLauncherPrivate GESLauncherPrivate; G_DECLARE_FINAL_TYPE(GESLauncher, ges_launcher, GES, LAUNCHER, GApplication); typedef struct { gboolean mute; gboolean disable_mixing; gchar *save_path; gchar *save_only_path; gchar *load_path; GESTrackType track_types; gboolean needs_set_state; gboolean smartrender; gchar *scenario; gchar *testfile; gchar *format; gchar *outputuri; gchar *encoding_profile; gchar *videosink; gchar *audiosink; gboolean list_transitions; gboolean inspect_action_type; gchar *sanitized_timeline; gchar *video_track_caps; gchar *audio_track_caps; gboolean embed_nesteds; gboolean disable_validate; gboolean ignore_eos; } GESLauncherParsedOptions; struct _GESLauncher { GApplication parent; /*< private >*/ GESLauncherPrivate *priv; /* Padding for API extension */ gpointer _ges_reserved[GES_PADDING]; }; GESLauncher* ges_launcher_new (void); gint ges_launcher_get_exit_status (GESLauncher *self); gboolean ges_launcher_parse_options(GESLauncher* self, gchar*** arguments, gint *argc, GOptionContext* ctx, GError** error); G_END_DECLS