gstreamer/ges/ges.c

107 lines
3.1 KiB
C
Raw Normal View History

2009-08-06 09:23:01 +00:00
/* GStreamer Editing Services
2009-11-30 14:14:25 +00:00
* Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
* 2009 Nokia Corporation
2009-08-06 09:23:01 +00:00
*
* 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.
*/
#include <ges/ges.h>
#include "ges-internal.h"
2009-08-06 09:23:01 +00:00
#define GES_GNONLIN_VERSION_NEEDED_MAJOR 0
#define GES_GNONLIN_VERSION_NEEDED_MINOR 10
#define GES_GNONLIN_VERSION_NEEDED_MICRO 16
GST_DEBUG_CATEGORY (_ges_debug);
2009-08-06 09:23:01 +00:00
/**
* SECTION:ges-common
* @short_description: Initialization.
*/
static gboolean
ges_check_gnonlin_availability (void)
{
gboolean ret = TRUE;
2012-01-02 14:58:17 +00:00
if (!gst_registry_check_feature_version (gst_registry_get (),
"gnlcomposition", GES_GNONLIN_VERSION_NEEDED_MAJOR,
GES_GNONLIN_VERSION_NEEDED_MINOR, GES_GNONLIN_VERSION_NEEDED_MICRO)) {
GST_ERROR ("GNonLin plugins not found, or not at least version %u.%u.%u",
GES_GNONLIN_VERSION_NEEDED_MAJOR, GES_GNONLIN_VERSION_NEEDED_MINOR,
GES_GNONLIN_VERSION_NEEDED_MICRO);
ret = FALSE;
}
return ret;
}
/**
* ges_init:
*
* Initialize the GStreamer Editing Service. Call this before any usage of
2011-05-18 14:46:34 +00:00
* GES. You should take care of initilizing GStreamer before calling this
* function.
*/
gboolean
2009-08-06 09:23:01 +00:00
ges_init (void)
{
/* initialize debugging category */
GST_DEBUG_CATEGORY_INIT (_ges_debug, "ges", GST_DEBUG_FG_YELLOW,
2009-08-06 09:23:01 +00:00
"GStreamer Editing Services");
/* register timeline object classes with the system */
GES_TYPE_TIMELINE_TEST_SOURCE;
GES_TYPE_TIMELINE_FILE_SOURCE;
GES_TYPE_TIMELINE_TITLE_SOURCE;
GES_TYPE_TIMELINE_STANDARD_TRANSITION;
GES_TYPE_TIMELINE_OVERLAY;
/* check the gnonlin elements are available */
if (!ges_check_gnonlin_availability ())
return FALSE;
/* TODO: user-defined types? */
GST_DEBUG ("GStreamer Editing Services initialized");
return TRUE;
2009-08-06 09:23:01 +00:00
}
/**
* ges_version:
* @major: (out): pointer to a guint to store the major version number
* @minor: (out): pointer to a guint to store the minor version number
* @micro: (out): pointer to a guint to store the micro version number
* @nano: (out): pointer to a guint to store the nano version number
*
* Gets the version number of the GStreamer Editing Services library.
*/
void
ges_version (guint * major, guint * minor, guint * micro, guint * nano)
{
g_return_if_fail (major);
g_return_if_fail (minor);
g_return_if_fail (micro);
g_return_if_fail (nano);
*major = GES_VERSION_MAJOR;
*minor = GES_VERSION_MINOR;
*micro = GES_VERSION_MICRO;
*nano = GES_VERSION_NANO;
}