2010-04-20 11:08:27 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2010 Edward Hervey <bilboed@bilboed.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
|
2012-11-04 00:25:20 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2010-04-20 11:08:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2010-07-07 04:21:38 +00:00
|
|
|
#include <stdio.h>
|
2010-04-20 11:08:27 +00:00
|
|
|
#include <stdlib.h>
|
2010-05-24 08:59:43 +00:00
|
|
|
#include <string.h>
|
2010-04-20 11:08:27 +00:00
|
|
|
#include <glib.h>
|
2011-12-30 16:18:18 +00:00
|
|
|
#include <glib/gprintf.h>
|
2010-04-20 11:08:27 +00:00
|
|
|
#include <ges/ges.h>
|
2010-12-15 11:36:25 +00:00
|
|
|
#include <gst/pbutils/encoding-profile.h>
|
2010-04-20 11:08:27 +00:00
|
|
|
|
2013-06-17 05:55:54 +00:00
|
|
|
#include <locale.h> /* for LC_ALL */
|
|
|
|
|
2010-06-02 09:49:08 +00:00
|
|
|
/* GLOBAL VARIABLE */
|
|
|
|
static guint repeat = 0;
|
2013-07-01 14:27:54 +00:00
|
|
|
static GESPipeline *pipeline = NULL;
|
2010-09-16 07:07:05 +00:00
|
|
|
static gboolean seenerrors = FALSE;
|
2013-09-12 21:34:55 +00:00
|
|
|
static gchar **new_paths = NULL;
|
|
|
|
static GMainLoop *mainloop;
|
2013-10-11 20:05:03 +00:00
|
|
|
static GHashTable *tried_uris;
|
2010-06-02 09:49:08 +00:00
|
|
|
|
2010-09-24 18:31:53 +00:00
|
|
|
static gchar *
|
|
|
|
ensure_uri (gchar * location)
|
|
|
|
{
|
|
|
|
if (gst_uri_is_valid (location))
|
|
|
|
return g_strdup (location);
|
2012-05-02 07:44:25 +00:00
|
|
|
else
|
|
|
|
return gst_filename_to_uri (location, NULL);
|
2010-09-24 18:31:53 +00:00
|
|
|
}
|
|
|
|
|
2011-01-12 16:52:10 +00:00
|
|
|
static gboolean
|
2010-07-15 17:50:22 +00:00
|
|
|
thumbnail_cb (gpointer pipeline)
|
|
|
|
{
|
|
|
|
static int i = 0;
|
2013-07-01 14:27:54 +00:00
|
|
|
GESPipeline *p = (GESPipeline *) pipeline;
|
2010-07-15 17:50:22 +00:00
|
|
|
gchar *filename;
|
2010-08-31 11:29:37 +00:00
|
|
|
gboolean res;
|
2010-07-15 17:50:22 +00:00
|
|
|
|
|
|
|
filename = g_strdup_printf ("thumbnail%d.jpg", i++);
|
|
|
|
|
2013-07-01 14:27:54 +00:00
|
|
|
res = ges_pipeline_save_thumbnail (p, -1, -1,
|
2013-04-17 19:51:30 +00:00
|
|
|
(gchar *) "image/jpeg", filename, NULL);
|
2010-08-31 11:29:37 +00:00
|
|
|
|
|
|
|
g_free (filename);
|
|
|
|
|
|
|
|
return res;
|
2010-07-15 17:50:22 +00:00
|
|
|
}
|
2010-05-24 08:59:43 +00:00
|
|
|
|
2013-09-12 21:34:55 +00:00
|
|
|
static gchar *
|
|
|
|
source_moved_cb (GESProject * project, GError * error, GESAsset * asset)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
const gchar *old_uri = ges_asset_get_id (asset);
|
|
|
|
|
|
|
|
for (i = 0; new_paths[i] != NULL; i++) {
|
|
|
|
gchar *basename, *res;
|
|
|
|
|
|
|
|
basename = g_path_get_basename (old_uri);
|
|
|
|
res = g_build_filename (new_paths[i], basename, NULL);
|
|
|
|
g_free (basename);
|
|
|
|
|
2013-10-11 20:05:03 +00:00
|
|
|
if (g_hash_table_lookup (tried_uris, res)) {
|
|
|
|
GST_DEBUG ("File already tried: %s\n", res);
|
|
|
|
g_free (res);
|
|
|
|
} else {
|
|
|
|
g_hash_table_add (tried_uris, g_strdup (res));
|
|
|
|
return res;
|
|
|
|
}
|
2013-09-12 21:34:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
error_loading_asset_cb (GESProject * project, GError * error,
|
|
|
|
const gchar * failed_id, GType extractable_type)
|
|
|
|
{
|
2013-10-11 20:05:03 +00:00
|
|
|
g_printerr ("Error loading asset %s: %s\n", failed_id, error->message);
|
2013-09-12 21:34:55 +00:00
|
|
|
|
|
|
|
g_main_loop_quit (mainloop);
|
|
|
|
}
|
|
|
|
|
2011-01-12 16:52:10 +00:00
|
|
|
static gboolean
|
2010-06-03 17:14:41 +00:00
|
|
|
check_time (char *time)
|
|
|
|
{
|
2012-04-17 15:18:44 +00:00
|
|
|
static GRegex *re = NULL;
|
2010-06-03 17:14:41 +00:00
|
|
|
|
2012-04-17 15:18:44 +00:00
|
|
|
if (!re) {
|
|
|
|
if (NULL == (re = g_regex_new ("^[0-9]+(.[0-9]+)?$", G_REGEX_EXTENDED, 0,
|
2012-05-02 07:44:25 +00:00
|
|
|
NULL)))
|
2011-03-15 13:02:14 +00:00
|
|
|
return FALSE;
|
2010-06-03 17:14:41 +00:00
|
|
|
}
|
|
|
|
|
2012-04-17 15:18:44 +00:00
|
|
|
if (g_regex_match (re, time, 0, NULL))
|
2010-06-03 17:14:41 +00:00
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-01-12 16:52:10 +00:00
|
|
|
static guint64
|
2010-06-03 17:14:41 +00:00
|
|
|
str_to_time (char *time)
|
|
|
|
{
|
|
|
|
if (check_time (time)) {
|
|
|
|
return (guint64) (atof (time) * GST_SECOND);
|
|
|
|
}
|
2011-01-17 15:46:15 +00:00
|
|
|
GST_ERROR ("%s not a valid time", time);
|
2010-06-03 17:14:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-24 18:31:53 +00:00
|
|
|
static GESTimeline *
|
2013-09-12 21:34:55 +00:00
|
|
|
create_timeline (int nbargs, gchar ** argv, const gchar * proj_uri)
|
2010-04-20 11:08:27 +00:00
|
|
|
{
|
2013-04-23 23:04:04 +00:00
|
|
|
GESLayer *layer;
|
2011-11-30 15:15:35 +00:00
|
|
|
GESTrack *tracka = NULL, *trackv = NULL;
|
2010-04-20 11:08:27 +00:00
|
|
|
GESTimeline *timeline;
|
|
|
|
guint i;
|
2013-09-12 21:34:55 +00:00
|
|
|
GESProject *project = ges_project_new (proj_uri);
|
|
|
|
|
|
|
|
if (new_paths)
|
|
|
|
g_signal_connect (project, "missing-uri",
|
|
|
|
G_CALLBACK (source_moved_cb), NULL);
|
|
|
|
|
|
|
|
g_signal_connect (project, "error-loading-asset",
|
|
|
|
G_CALLBACK (error_loading_asset_cb), NULL);
|
2010-04-20 11:08:27 +00:00
|
|
|
|
2013-06-16 02:13:20 +00:00
|
|
|
timeline = GES_TIMELINE (ges_asset_extract (GES_ASSET (project), NULL));
|
2010-04-20 11:08:27 +00:00
|
|
|
|
2013-09-12 21:34:55 +00:00
|
|
|
if (proj_uri)
|
|
|
|
return timeline;
|
|
|
|
|
2013-08-31 00:32:56 +00:00
|
|
|
tracka = GES_TRACK (ges_audio_track_new ());
|
|
|
|
trackv = GES_TRACK (ges_video_track_new ());
|
2010-04-20 11:08:27 +00:00
|
|
|
|
2013-02-08 20:11:22 +00:00
|
|
|
/* We are only going to be doing one layer of clips */
|
2013-04-23 23:04:04 +00:00
|
|
|
layer = (GESLayer *) ges_simple_layer_new ();
|
2010-04-20 11:08:27 +00:00
|
|
|
|
|
|
|
/* Add the tracks and the layer to the timeline */
|
|
|
|
if (!ges_timeline_add_layer (timeline, layer) ||
|
2013-08-31 00:32:56 +00:00
|
|
|
!(ges_timeline_add_track (timeline, tracka)) ||
|
|
|
|
!(ges_timeline_add_track (timeline, trackv)))
|
2011-01-17 15:46:15 +00:00
|
|
|
goto build_failure;
|
2010-04-20 11:08:27 +00:00
|
|
|
|
2013-08-31 00:03:16 +00:00
|
|
|
/* Here we've finished initializing our timeline, we're
|
2010-04-20 11:08:27 +00:00
|
|
|
* ready to start using it... by solely working with the layer !*/
|
|
|
|
|
|
|
|
for (i = 0; i < nbargs / 3; i++) {
|
2013-02-15 02:34:48 +00:00
|
|
|
GESClip *clip;
|
2010-05-19 10:38:21 +00:00
|
|
|
|
2010-05-26 16:19:41 +00:00
|
|
|
char *source = argv[i * 3];
|
|
|
|
char *arg0 = argv[(i * 3) + 1];
|
2010-06-04 10:17:56 +00:00
|
|
|
guint64 duration = str_to_time (argv[(i * 3) + 2]);
|
2010-05-26 16:19:41 +00:00
|
|
|
|
|
|
|
if (!g_strcmp0 ("+pattern", source)) {
|
2013-02-15 02:34:48 +00:00
|
|
|
clip = GES_CLIP (ges_test_clip_new_for_nick (arg0));
|
|
|
|
if (!clip) {
|
2011-01-17 15:46:15 +00:00
|
|
|
g_error ("%s is an invalid pattern name!\n", arg0);
|
|
|
|
goto build_failure;
|
|
|
|
}
|
2010-05-26 16:19:41 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_object_set (G_OBJECT (clip), "duration", duration, NULL);
|
2010-05-26 16:19:41 +00:00
|
|
|
|
2011-01-17 15:46:15 +00:00
|
|
|
g_printf ("Adding <pattern:%s> duration %" GST_TIME_FORMAT "\n", arg0,
|
|
|
|
GST_TIME_ARGS (duration));
|
2010-05-26 16:19:41 +00:00
|
|
|
}
|
|
|
|
|
2010-05-27 10:06:00 +00:00
|
|
|
else if (!g_strcmp0 ("+transition", source)) {
|
2011-01-17 15:46:15 +00:00
|
|
|
if (duration <= 0) {
|
|
|
|
g_error ("durations must be greater than 0");
|
|
|
|
goto build_failure;
|
|
|
|
}
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
clip = GES_CLIP (ges_transition_clip_new_for_nick (arg0));
|
2010-05-27 10:06:00 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
if (!clip) {
|
2010-05-27 10:06:00 +00:00
|
|
|
g_error ("invalid transition type\n");
|
2011-01-17 15:46:15 +00:00
|
|
|
goto build_failure;
|
|
|
|
}
|
2010-06-04 10:17:56 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_object_set (G_OBJECT (clip), "duration", duration, NULL);
|
2010-05-27 10:06:00 +00:00
|
|
|
|
2011-01-17 15:46:15 +00:00
|
|
|
g_printf ("Adding <transition:%s> duration %" GST_TIME_FORMAT "\n", arg0,
|
|
|
|
GST_TIME_ARGS (duration));
|
2010-05-27 10:06:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-06-16 11:22:15 +00:00
|
|
|
else if (!g_strcmp0 ("+title", source)) {
|
2013-02-15 02:34:48 +00:00
|
|
|
clip = GES_CLIP (ges_title_clip_new ());
|
2010-06-16 11:22:15 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_object_set (clip, "duration", duration, "text", arg0, NULL);
|
2010-06-16 11:22:15 +00:00
|
|
|
|
2011-01-17 15:46:15 +00:00
|
|
|
g_printf ("Adding <title:%s> duration %" GST_TIME_FORMAT "\n", arg0,
|
|
|
|
GST_TIME_ARGS (duration));
|
2010-06-16 11:22:15 +00:00
|
|
|
}
|
|
|
|
|
2010-05-26 16:19:41 +00:00
|
|
|
else {
|
2010-06-09 15:11:56 +00:00
|
|
|
gchar *uri;
|
2013-06-12 14:48:03 +00:00
|
|
|
GESAsset *asset;
|
2010-06-09 15:11:56 +00:00
|
|
|
guint64 inpoint;
|
|
|
|
|
2013-06-12 14:48:03 +00:00
|
|
|
GError *error = NULL;
|
|
|
|
|
2010-09-24 18:31:53 +00:00
|
|
|
if (!(uri = ensure_uri (source))) {
|
2011-01-31 19:01:24 +00:00
|
|
|
GST_ERROR ("couldn't create uri for '%s'", source);
|
2011-01-17 15:46:15 +00:00
|
|
|
goto build_failure;
|
2010-09-24 18:31:53 +00:00
|
|
|
}
|
2010-06-09 15:11:56 +00:00
|
|
|
|
2011-01-17 15:46:15 +00:00
|
|
|
inpoint = str_to_time (argv[i * 3 + 1]);
|
2013-06-12 14:48:03 +00:00
|
|
|
asset = GES_ASSET (ges_uri_clip_asset_request_sync (uri, &error));
|
|
|
|
if (error) {
|
|
|
|
g_printerr ("Can not create asset for %s", uri);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-06-16 02:13:20 +00:00
|
|
|
ges_project_add_asset (project, asset);
|
2013-06-12 14:48:03 +00:00
|
|
|
clip = GES_CLIP (ges_asset_extract (asset, &error));
|
|
|
|
if (error) {
|
|
|
|
g_printerr ("Can not extract asset for %s", uri);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_object_set (clip,
|
2010-05-26 16:19:41 +00:00
|
|
|
"in-point", (guint64) inpoint, "duration", (guint64) duration, NULL);
|
|
|
|
|
2011-01-17 15:46:15 +00:00
|
|
|
g_printf ("Adding clip %s inpoint:%" GST_TIME_FORMAT " duration:%"
|
2010-05-26 16:19:41 +00:00
|
|
|
GST_TIME_FORMAT "\n", uri, GST_TIME_ARGS (inpoint),
|
|
|
|
GST_TIME_ARGS (duration));
|
|
|
|
|
2010-05-24 08:59:43 +00:00
|
|
|
g_free (uri);
|
|
|
|
}
|
2010-05-26 16:19:41 +00:00
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
/* Since we're using a GESSimpleLayer, objects will be automatically
|
2010-04-20 11:08:27 +00:00
|
|
|
* appended to the end of the layer */
|
2013-04-23 23:04:04 +00:00
|
|
|
ges_layer_add_clip (layer, clip);
|
2010-04-20 11:08:27 +00:00
|
|
|
}
|
|
|
|
|
2010-09-24 18:31:53 +00:00
|
|
|
return timeline;
|
2011-01-17 15:46:15 +00:00
|
|
|
|
|
|
|
build_failure:
|
|
|
|
{
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_unref (timeline);
|
2011-01-17 15:46:15 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2010-09-24 18:31:53 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 14:27:54 +00:00
|
|
|
static GESPipeline *
|
2013-08-31 00:03:16 +00:00
|
|
|
create_pipeline (GESTimeline ** ret_timeline, gchar * load_path,
|
2013-08-31 00:32:56 +00:00
|
|
|
gchar * save_path, int argc, char **argv)
|
2010-09-24 18:31:53 +00:00
|
|
|
{
|
2013-09-12 21:34:55 +00:00
|
|
|
gchar *uri = NULL;
|
2013-07-01 14:27:54 +00:00
|
|
|
GESPipeline *pipeline = NULL;
|
2011-01-17 15:46:15 +00:00
|
|
|
GESTimeline *timeline = NULL;
|
2010-09-24 18:31:53 +00:00
|
|
|
|
2011-01-17 15:46:15 +00:00
|
|
|
/* Timeline creation */
|
2010-09-24 18:31:53 +00:00
|
|
|
if (load_path) {
|
2011-01-17 15:46:15 +00:00
|
|
|
g_printf ("Loading project from : %s\n", load_path);
|
2010-09-24 18:31:53 +00:00
|
|
|
|
|
|
|
if (!(uri = ensure_uri (load_path))) {
|
2011-01-17 15:46:15 +00:00
|
|
|
g_error ("couldn't create uri for '%s'", load_path);
|
|
|
|
goto failure;
|
2010-09-24 18:31:53 +00:00
|
|
|
}
|
2013-03-30 12:37:43 +00:00
|
|
|
}
|
2013-09-12 21:34:55 +00:00
|
|
|
if (!(timeline = create_timeline (argc, argv, uri)))
|
|
|
|
goto failure;
|
|
|
|
|
2013-06-09 16:29:05 +00:00
|
|
|
ges_timeline_commit (timeline);
|
2010-09-24 18:31:53 +00:00
|
|
|
|
2013-09-12 21:34:55 +00:00
|
|
|
if (uri)
|
|
|
|
g_free (uri);
|
|
|
|
|
2011-01-17 15:46:15 +00:00
|
|
|
/* save project if path is given. we do this now in case GES crashes or
|
|
|
|
* hangs during playback. */
|
|
|
|
if (save_path) {
|
|
|
|
gchar *uri;
|
|
|
|
if (!(uri = ensure_uri (save_path))) {
|
|
|
|
g_error ("couldn't create uri for '%s", save_path);
|
|
|
|
goto failure;
|
2010-09-24 18:31:53 +00:00
|
|
|
}
|
2012-11-24 03:09:28 +00:00
|
|
|
ges_timeline_save_to_uri (timeline, uri, NULL, TRUE, NULL);
|
2011-01-17 15:46:15 +00:00
|
|
|
g_free (uri);
|
2010-09-24 18:31:53 +00:00
|
|
|
}
|
|
|
|
|
2010-04-20 11:08:27 +00:00
|
|
|
/* In order to view our timeline, let's grab a convenience pipeline to put
|
|
|
|
* our timeline in. */
|
2013-07-01 14:27:54 +00:00
|
|
|
pipeline = ges_pipeline_new ();
|
2010-04-20 11:08:27 +00:00
|
|
|
|
|
|
|
/* Add the timeline to that pipeline */
|
2013-07-01 14:27:54 +00:00
|
|
|
if (!ges_pipeline_add_timeline (pipeline, timeline))
|
2011-01-17 15:46:15 +00:00
|
|
|
goto failure;
|
2010-04-20 11:08:27 +00:00
|
|
|
|
2013-08-31 00:03:16 +00:00
|
|
|
*ret_timeline = timeline;
|
2010-04-20 11:08:27 +00:00
|
|
|
return pipeline;
|
2011-01-17 15:46:15 +00:00
|
|
|
|
|
|
|
failure:
|
|
|
|
{
|
2013-09-12 21:34:55 +00:00
|
|
|
if (uri)
|
|
|
|
g_free (uri);
|
2011-01-17 15:46:15 +00:00
|
|
|
if (timeline)
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_unref (timeline);
|
2011-01-17 15:46:15 +00:00
|
|
|
if (pipeline)
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_unref (pipeline);
|
2011-01-17 15:46:15 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2010-04-20 11:08:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bus_message_cb (GstBus * bus, GstMessage * message, GMainLoop * mainloop)
|
|
|
|
{
|
|
|
|
switch (GST_MESSAGE_TYPE (message)) {
|
2013-11-09 12:51:55 +00:00
|
|
|
case GST_MESSAGE_WARNING:{
|
|
|
|
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
|
|
|
|
GST_DEBUG_GRAPH_SHOW_ALL, "ges-launch.warning");
|
|
|
|
break;
|
|
|
|
}
|
2011-05-05 18:02:28 +00:00
|
|
|
case GST_MESSAGE_ERROR:{
|
|
|
|
GError *err = NULL;
|
|
|
|
gchar *dbg_info = NULL;
|
|
|
|
|
|
|
|
gst_message_parse_error (message, &err, &dbg_info);
|
2013-08-31 00:03:16 +00:00
|
|
|
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
|
|
|
|
GST_DEBUG_GRAPH_SHOW_ALL, "ges-launch-error");
|
|
|
|
g_printerr ("ERROR from element %s: %s\n", GST_OBJECT_NAME (message->src),
|
|
|
|
err->message);
|
2011-05-05 18:02:28 +00:00
|
|
|
g_printerr ("Debugging info: %s\n", (dbg_info) ? dbg_info : "none");
|
|
|
|
g_error_free (err);
|
|
|
|
g_free (dbg_info);
|
2010-09-16 07:07:05 +00:00
|
|
|
seenerrors = TRUE;
|
2010-04-20 11:08:27 +00:00
|
|
|
g_main_loop_quit (mainloop);
|
|
|
|
break;
|
2011-05-05 18:02:28 +00:00
|
|
|
}
|
2010-04-20 11:08:27 +00:00
|
|
|
case GST_MESSAGE_EOS:
|
2010-06-02 09:49:08 +00:00
|
|
|
if (repeat > 0) {
|
2010-11-11 16:39:32 +00:00
|
|
|
g_printerr ("Looping again\n");
|
|
|
|
if (!gst_element_seek_simple (GST_ELEMENT (pipeline), GST_FORMAT_TIME,
|
|
|
|
GST_SEEK_FLAG_FLUSH, 0))
|
|
|
|
g_printerr ("seeking failed\n");
|
|
|
|
else
|
|
|
|
g_printerr ("seeking succeeded\n");
|
2010-06-02 09:49:08 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING);
|
2010-11-11 16:39:32 +00:00
|
|
|
g_printerr ("Looping set\n");
|
2010-06-02 09:49:08 +00:00
|
|
|
repeat -= 1;
|
|
|
|
} else {
|
2010-11-11 16:39:32 +00:00
|
|
|
g_printerr ("Done\n");
|
2010-06-02 09:49:08 +00:00
|
|
|
g_main_loop_quit (mainloop);
|
|
|
|
}
|
2010-04-20 11:08:27 +00:00
|
|
|
break;
|
2013-11-09 12:51:55 +00:00
|
|
|
case GST_MESSAGE_STATE_CHANGED:
|
|
|
|
if (GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (pipeline)) {
|
|
|
|
gchar *dump_name;
|
|
|
|
GstState old, new, pending;
|
|
|
|
gchar *state_transition_name;
|
|
|
|
|
|
|
|
gst_message_parse_state_changed (message, &old, &new, &pending);
|
|
|
|
state_transition_name = g_strdup_printf ("%s_%s",
|
|
|
|
gst_element_state_get_name (old), gst_element_state_get_name (new));
|
|
|
|
dump_name = g_strconcat ("ges-launch.", state_transition_name, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
|
|
|
|
GST_DEBUG_GRAPH_SHOW_ALL, dump_name);
|
|
|
|
|
|
|
|
g_free (dump_name);
|
|
|
|
g_free (state_transition_name);
|
|
|
|
}
|
|
|
|
break;
|
2010-04-20 11:08:27 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-12 16:45:23 +00:00
|
|
|
static void
|
|
|
|
print_enum (GType enum_type)
|
2010-06-03 17:13:42 +00:00
|
|
|
{
|
2011-01-12 16:45:23 +00:00
|
|
|
GEnumClass *enum_class = G_ENUM_CLASS (g_type_class_ref (enum_type));
|
|
|
|
guint i;
|
2010-06-03 17:13:42 +00:00
|
|
|
|
2011-01-12 16:45:23 +00:00
|
|
|
GST_ERROR ("%d", enum_class->n_values);
|
2010-11-25 13:03:07 +00:00
|
|
|
|
2011-01-12 16:45:23 +00:00
|
|
|
for (i = 0; i < enum_class->n_values; i++) {
|
2011-01-17 15:46:15 +00:00
|
|
|
g_printf ("%s\n", enum_class->values[i].value_nick);
|
2010-06-03 17:13:42 +00:00
|
|
|
}
|
|
|
|
|
2011-01-12 16:45:23 +00:00
|
|
|
g_type_class_unref (enum_class);
|
2010-06-03 17:13:42 +00:00
|
|
|
}
|
|
|
|
|
2011-01-12 16:45:23 +00:00
|
|
|
static void
|
|
|
|
print_transition_list (void)
|
2010-06-03 17:13:42 +00:00
|
|
|
{
|
2011-01-12 16:45:23 +00:00
|
|
|
print_enum (GES_VIDEO_STANDARD_TRANSITION_TYPE_TYPE);
|
|
|
|
}
|
2010-06-11 13:28:43 +00:00
|
|
|
|
2011-01-12 16:45:23 +00:00
|
|
|
static void
|
|
|
|
print_pattern_list (void)
|
|
|
|
{
|
|
|
|
print_enum (GES_VIDEO_TEST_PATTERN_TYPE);
|
2010-06-03 17:13:42 +00:00
|
|
|
}
|
|
|
|
|
2013-06-17 01:47:52 +00:00
|
|
|
static gboolean
|
|
|
|
_print_position (void)
|
|
|
|
{
|
|
|
|
gint64 position, duration;
|
|
|
|
|
|
|
|
if (pipeline) {
|
|
|
|
gst_element_query_position (GST_ELEMENT (pipeline), GST_FORMAT_TIME,
|
|
|
|
&position);
|
|
|
|
gst_element_query_duration (GST_ELEMENT (pipeline), GST_FORMAT_TIME,
|
|
|
|
&duration);
|
|
|
|
g_print ("<Position: %" GST_TIME_FORMAT " / %" GST_TIME_FORMAT "/>\r",
|
|
|
|
GST_TIME_ARGS (position), GST_TIME_ARGS (duration));
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-08-31 00:32:56 +00:00
|
|
|
static GstEncodingProfile *
|
|
|
|
_parse_encoding_profile (const gchar * format)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
char *preset_name = NULL;
|
|
|
|
GstEncodingProfile *encoding_profile;
|
|
|
|
gchar **restriction_format, **preset_v;
|
|
|
|
|
|
|
|
guint i, presence = 0;
|
|
|
|
GstCaps *restrictioncaps = NULL;
|
|
|
|
gchar **strpresence_v, **strcaps_v = g_strsplit (format, ":", 0);
|
|
|
|
|
|
|
|
if (strcaps_v[0] && *strcaps_v[0]) {
|
|
|
|
caps = gst_caps_from_string (strcaps_v[0]);
|
|
|
|
if (caps == NULL) {
|
|
|
|
g_printerr ("Could not parse caps %s", strcaps_v[0]);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
encoding_profile =
|
|
|
|
GST_ENCODING_PROFILE (gst_encoding_container_profile_new
|
|
|
|
("User profile", "User profile", caps, NULL));
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
} else {
|
|
|
|
encoding_profile = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 1; strcaps_v[i]; i++) {
|
|
|
|
GstEncodingProfile *profile = NULL;
|
|
|
|
gchar *strcaps, *strpresence;
|
|
|
|
|
|
|
|
restriction_format = g_strsplit (strcaps_v[i], "->", 0);
|
|
|
|
if (restriction_format[1]) {
|
|
|
|
restrictioncaps = gst_caps_from_string (restriction_format[0]);
|
|
|
|
strcaps = g_strdup (restriction_format[1]);
|
|
|
|
} else {
|
|
|
|
restrictioncaps = NULL;
|
|
|
|
strcaps = g_strdup (restriction_format[0]);
|
|
|
|
}
|
|
|
|
g_strfreev (restriction_format);
|
|
|
|
|
|
|
|
preset_v = g_strsplit (strcaps, "+", 0);
|
|
|
|
if (preset_v[1]) {
|
|
|
|
strpresence = preset_v[1];
|
|
|
|
g_free (strcaps);
|
|
|
|
strcaps = g_strdup (preset_v[0]);
|
|
|
|
} else {
|
|
|
|
strpresence = preset_v[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
strpresence_v = g_strsplit (strpresence, "|", 0);
|
|
|
|
if (strpresence_v[1]) { /* We have a presence */
|
|
|
|
gchar *endptr;
|
|
|
|
|
|
|
|
if (preset_v[1]) { /* We have preset and presence */
|
|
|
|
preset_name = g_strdup (strpresence_v[0]);
|
|
|
|
} else { /* We have a presence but no preset */
|
|
|
|
g_free (strcaps);
|
|
|
|
strcaps = g_strdup (strpresence_v[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
presence = strtoll (strpresence_v[1], &endptr, 10);
|
|
|
|
if (endptr == strpresence_v[1]) {
|
|
|
|
g_printerr ("Wrong presence %s\n", strpresence_v[1]);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else { /* We have no presence */
|
|
|
|
if (preset_v[1]) { /* Not presence but preset */
|
|
|
|
preset_name = g_strdup (preset_v[1]);
|
|
|
|
g_free (strcaps);
|
|
|
|
strcaps = g_strdup (preset_v[0]);
|
|
|
|
} /* Else we have no presence nor preset */
|
|
|
|
}
|
|
|
|
g_strfreev (strpresence_v);
|
|
|
|
g_strfreev (preset_v);
|
|
|
|
|
|
|
|
GST_DEBUG ("Creating preset with restrictions: %" GST_PTR_FORMAT
|
|
|
|
", caps: %s, preset %s, presence %d", restrictioncaps, strcaps,
|
|
|
|
preset_name ? preset_name : "none", presence);
|
|
|
|
|
|
|
|
caps = gst_caps_from_string (strcaps);
|
|
|
|
g_free (strcaps);
|
|
|
|
if (caps == NULL) {
|
|
|
|
g_warning ("Could not create caps for %s", strcaps_v[i]);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_str_has_prefix (strcaps_v[i], "audio/")) {
|
|
|
|
profile = GST_ENCODING_PROFILE (gst_encoding_audio_profile_new (caps,
|
|
|
|
preset_name, restrictioncaps, presence));
|
|
|
|
} else if (g_str_has_prefix (strcaps_v[i], "video/") ||
|
|
|
|
g_str_has_prefix (strcaps_v[i], "image/")) {
|
|
|
|
profile = GST_ENCODING_PROFILE (gst_encoding_video_profile_new (caps,
|
|
|
|
preset_name, restrictioncaps, presence));
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (preset_name);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
if (restrictioncaps)
|
|
|
|
gst_caps_unref (restrictioncaps);
|
|
|
|
|
|
|
|
if (profile == NULL) {
|
|
|
|
g_warning ("No way to create a preset for caps: %s", strcaps_v[i]);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (encoding_profile) {
|
|
|
|
if (gst_encoding_container_profile_add_profile
|
|
|
|
(GST_ENCODING_CONTAINER_PROFILE (encoding_profile),
|
|
|
|
profile) == FALSE) {
|
|
|
|
g_warning ("Can not create a preset for caps: %s", strcaps_v[i]);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
encoding_profile = profile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_strfreev (strcaps_v);
|
|
|
|
|
|
|
|
return encoding_profile;
|
|
|
|
}
|
|
|
|
|
2010-04-20 11:08:27 +00:00
|
|
|
int
|
|
|
|
main (int argc, gchar ** argv)
|
|
|
|
{
|
|
|
|
GError *err = NULL;
|
|
|
|
gchar *outputuri = NULL;
|
2013-08-31 00:32:56 +00:00
|
|
|
const gchar *format = NULL;
|
2011-11-30 14:44:45 +00:00
|
|
|
gchar *exclude_args = NULL;
|
2010-04-20 11:08:27 +00:00
|
|
|
static gboolean smartrender = FALSE;
|
2010-06-03 17:13:42 +00:00
|
|
|
static gboolean list_transitions = FALSE;
|
|
|
|
static gboolean list_patterns = FALSE;
|
2010-07-15 17:50:22 +00:00
|
|
|
static gdouble thumbinterval = 0;
|
2011-11-30 14:44:45 +00:00
|
|
|
static gboolean verbose = FALSE;
|
2010-09-24 18:31:53 +00:00
|
|
|
gchar *save_path = NULL;
|
|
|
|
gchar *load_path = NULL;
|
2010-04-20 11:08:27 +00:00
|
|
|
GOptionEntry options[] = {
|
2010-07-15 17:50:22 +00:00
|
|
|
{"thumbnail", 'm', 0.0, G_OPTION_ARG_DOUBLE, &thumbinterval,
|
|
|
|
"Take thumbnails every n seconds (saved in current directory)", "N"},
|
2010-04-20 11:08:27 +00:00
|
|
|
{"smartrender", 's', 0, G_OPTION_ARG_NONE, &smartrender,
|
|
|
|
"Render to outputuri, and avoid decoding/reencoding", NULL},
|
|
|
|
{"outputuri", 'o', 0, G_OPTION_ARG_STRING, &outputuri,
|
|
|
|
"URI to encode to", "URI (<protocol>://<location>)"},
|
2013-08-31 00:32:56 +00:00
|
|
|
{"format", 'f', 0, G_OPTION_ARG_STRING, &format,
|
|
|
|
"Set the properties to use for the encoding profile "
|
|
|
|
"(in case of transcoding.) For example:\n"
|
|
|
|
"video/mpegts:video/x-raw,width=1920,height=1080->video/x-h264:audio/x-ac3\n"
|
|
|
|
"A preset name can be used by adding +presetname, eg:\n"
|
|
|
|
"video/webm:video/x-vp8+mypreset:audio/x-vorbis\n"
|
|
|
|
"The presence property of the profile can be specified with |<presence>, eg:\n"
|
|
|
|
"video/webm:video/x-vp8|<presence>:audio/x-vorbis\n",
|
|
|
|
"properties-values"},
|
2013-08-31 00:03:16 +00:00
|
|
|
{"repeat", 'r', 0, G_OPTION_ARG_INT, &repeat,
|
2010-06-02 09:49:08 +00:00
|
|
|
"Number of time to repeat timeline", NULL},
|
2010-06-03 17:13:42 +00:00
|
|
|
{"list-transitions", 't', 0, G_OPTION_ARG_NONE, &list_transitions,
|
|
|
|
"List valid transition types and exit", NULL},
|
|
|
|
{"list-patterns", 'p', 0, G_OPTION_ARG_NONE, &list_patterns,
|
|
|
|
"List patterns and exit", NULL},
|
2010-09-24 18:31:53 +00:00
|
|
|
{"save", 'z', 0, G_OPTION_ARG_STRING, &save_path,
|
|
|
|
"Save project to file before rendering", "<path>"},
|
2013-08-31 00:03:16 +00:00
|
|
|
{"load", 'l', 0, G_OPTION_ARG_STRING, &load_path,
|
2010-09-24 18:31:53 +00:00
|
|
|
"Load project from file before rendering", "<path>"},
|
2011-11-30 14:44:45 +00:00
|
|
|
{"verbose", 0, 0, G_OPTION_ARG_NONE, &verbose,
|
|
|
|
"Output status information and property notifications", NULL},
|
|
|
|
{"exclude", 'X', 0, G_OPTION_ARG_NONE, &exclude_args,
|
|
|
|
"Do not output status information of TYPE", "TYPE1,TYPE2,..."},
|
2013-09-12 21:34:55 +00:00
|
|
|
{"sample-paths", 'P', 0, G_OPTION_ARG_STRING_ARRAY, &new_paths,
|
|
|
|
"List of pathes to look assets in if they were moved"},
|
2010-04-20 11:08:27 +00:00
|
|
|
{NULL}
|
|
|
|
};
|
|
|
|
GOptionContext *ctx;
|
|
|
|
GstBus *bus;
|
2013-08-31 00:03:16 +00:00
|
|
|
GESTimeline *timeline;
|
2010-04-20 11:08:27 +00:00
|
|
|
|
2013-06-17 05:55:54 +00:00
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
|
2011-01-26 21:50:00 +00:00
|
|
|
ctx = g_option_context_new ("- plays or renders a timeline.");
|
2010-04-20 11:08:27 +00:00
|
|
|
g_option_context_set_summary (ctx,
|
2011-08-01 11:42:17 +00:00
|
|
|
"ges-launch renders a timeline, which can be specified on the commandline,\n"
|
|
|
|
"or loaded from a file using the -q option.\n\n"
|
|
|
|
"A timeline is a list of files, patterns, and transitions to be rendered\n"
|
|
|
|
"one after the other. Files and Patterns provide video and audio as the\n"
|
|
|
|
"primary input, and transitions animate between the end of one file/pattern\n"
|
|
|
|
"and the beginning of a new one. Hence, transitions can only be listed\n"
|
|
|
|
"in between patterns or files.\n\n"
|
|
|
|
"A file is a triplet of filename, inpoint (in seconds) and\n"
|
|
|
|
"duration (in seconds). If the duration is 0, the full file length is used.\n\n"
|
|
|
|
"Patterns and transitions are triplets that begin with either \"+pattern\"\n"
|
|
|
|
"or \"+transition\", followed by a <type> and duration (in seconds, must be\n"
|
|
|
|
"greater than 0)\n\n"
|
|
|
|
"Durations in all cases can be fractions of a second.\n\n"
|
|
|
|
"Example:\n"
|
|
|
|
"ges-launch file1.avi 0 45 +transition crossfade 3.5 file2.avi 0 0");
|
2010-04-20 11:08:27 +00:00
|
|
|
g_option_context_add_main_entries (ctx, options, NULL);
|
|
|
|
g_option_context_add_group (ctx, gst_init_get_option_group ());
|
|
|
|
|
|
|
|
if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
|
2010-11-11 16:39:32 +00:00
|
|
|
g_printerr ("Error initializing: %s\n", err->message);
|
2010-04-20 11:08:27 +00:00
|
|
|
g_option_context_free (ctx);
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
2011-01-12 16:45:23 +00:00
|
|
|
/* Initialize the GStreamer Editing Services */
|
2011-02-07 12:19:18 +00:00
|
|
|
if (!ges_init ()) {
|
|
|
|
g_printerr ("Error initializing GES\n");
|
|
|
|
exit (1);
|
|
|
|
}
|
2011-01-12 16:45:23 +00:00
|
|
|
|
2010-06-03 17:13:42 +00:00
|
|
|
if (list_transitions) {
|
|
|
|
print_transition_list ();
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (list_patterns) {
|
|
|
|
print_pattern_list ();
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
2013-10-11 20:05:03 +00:00
|
|
|
tried_uris = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
|
2013-08-31 00:03:16 +00:00
|
|
|
if (((!load_path && (argc < 4)))) {
|
2011-01-17 15:46:15 +00:00
|
|
|
g_printf ("%s", g_option_context_get_help (ctx, TRUE, NULL));
|
2010-04-20 11:08:27 +00:00
|
|
|
g_option_context_free (ctx);
|
2010-09-16 07:07:05 +00:00
|
|
|
exit (1);
|
2010-04-20 11:08:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_option_context_free (ctx);
|
|
|
|
|
|
|
|
/* Create the pipeline */
|
2013-08-31 00:03:16 +00:00
|
|
|
pipeline =
|
2013-08-31 00:32:56 +00:00
|
|
|
create_pipeline (&timeline, load_path, save_path, argc - 1, argv + 1);
|
2010-04-20 11:08:27 +00:00
|
|
|
if (!pipeline)
|
2010-09-16 07:07:05 +00:00
|
|
|
exit (1);
|
2010-04-20 11:08:27 +00:00
|
|
|
|
|
|
|
/* Setup profile/encoding if needed */
|
2013-08-31 00:03:16 +00:00
|
|
|
if (smartrender || outputuri) {
|
|
|
|
GstEncodingProfile *prof = NULL;
|
|
|
|
|
2013-08-31 00:32:56 +00:00
|
|
|
if (!format) {
|
|
|
|
GESProject *proj =
|
|
|
|
GES_PROJECT (ges_extractable_get_asset (GES_EXTRACTABLE (timeline)));
|
2013-08-31 00:03:16 +00:00
|
|
|
const GList *profiles = ges_project_list_encoding_profiles (proj);
|
2010-06-21 09:47:21 +00:00
|
|
|
|
2013-08-31 00:03:16 +00:00
|
|
|
prof = profiles ? profiles->data : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!prof) {
|
2013-08-31 00:32:56 +00:00
|
|
|
if (format == NULL)
|
|
|
|
format = "application/ogg:video/x-theora:audio/x-vorbis";
|
|
|
|
|
|
|
|
prof = _parse_encoding_profile (format);
|
2013-08-31 00:03:16 +00:00
|
|
|
}
|
2010-04-20 11:08:27 +00:00
|
|
|
|
2013-09-13 23:38:43 +00:00
|
|
|
if (outputuri)
|
|
|
|
outputuri = ensure_uri (outputuri);
|
|
|
|
|
2013-07-01 14:27:54 +00:00
|
|
|
if (!prof || !ges_pipeline_set_render_settings (pipeline, outputuri, prof)
|
|
|
|
|| !ges_pipeline_set_mode (pipeline,
|
2013-09-13 23:38:43 +00:00
|
|
|
smartrender ? TIMELINE_MODE_SMART_RENDER : TIMELINE_MODE_RENDER)) {
|
|
|
|
g_free (outputuri);
|
2010-09-16 07:07:05 +00:00
|
|
|
exit (1);
|
2013-09-13 23:38:43 +00:00
|
|
|
}
|
|
|
|
g_free (outputuri);
|
2010-06-21 09:47:21 +00:00
|
|
|
|
2010-12-15 11:36:25 +00:00
|
|
|
gst_encoding_profile_unref (prof);
|
2010-04-20 11:08:27 +00:00
|
|
|
} else {
|
2013-07-01 14:27:54 +00:00
|
|
|
ges_pipeline_set_mode (pipeline, TIMELINE_MODE_PREVIEW);
|
2010-04-20 11:08:27 +00:00
|
|
|
}
|
|
|
|
|
2011-11-30 14:44:45 +00:00
|
|
|
if (verbose) {
|
|
|
|
gchar **exclude_list =
|
|
|
|
exclude_args ? g_strsplit (exclude_args, ",", 0) : NULL;
|
|
|
|
g_signal_connect (pipeline, "deep-notify",
|
|
|
|
G_CALLBACK (gst_object_default_deep_notify), exclude_list);
|
|
|
|
}
|
|
|
|
|
2010-04-20 11:08:27 +00:00
|
|
|
/* Play the pipeline */
|
|
|
|
mainloop = g_main_loop_new (NULL, FALSE);
|
|
|
|
|
2010-07-15 17:50:22 +00:00
|
|
|
if (thumbinterval != 0.0) {
|
2011-01-17 15:46:15 +00:00
|
|
|
g_printf ("thumbnailing every %f seconds\n", thumbinterval);
|
2010-07-15 17:50:22 +00:00
|
|
|
g_timeout_add (1000 * thumbinterval, thumbnail_cb, pipeline);
|
|
|
|
}
|
|
|
|
|
2010-04-20 11:08:27 +00:00
|
|
|
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
|
|
|
|
gst_bus_add_signal_watch (bus);
|
|
|
|
g_signal_connect (bus, "message", G_CALLBACK (bus_message_cb), mainloop);
|
|
|
|
|
|
|
|
if (gst_element_set_state (GST_ELEMENT (pipeline),
|
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
|
2011-01-17 15:46:15 +00:00
|
|
|
g_error ("Failed to start the encoding\n");
|
2010-04-20 11:08:27 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2013-06-17 01:47:52 +00:00
|
|
|
g_timeout_add (100, (GSourceFunc) _print_position, NULL);
|
2010-04-20 11:08:27 +00:00
|
|
|
g_main_loop_run (mainloop);
|
|
|
|
|
|
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
|
|
|
|
2010-06-17 09:45:27 +00:00
|
|
|
gst_object_unref (pipeline);
|
|
|
|
|
2013-10-11 20:05:03 +00:00
|
|
|
g_hash_table_unref (tried_uris);
|
2010-09-16 07:07:05 +00:00
|
|
|
return (int) seenerrors;
|
2010-04-20 11:08:27 +00:00
|
|
|
}
|