mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
a66e674649
g-ir-scanner includes section docs as class/interface docs if the section name is equal to the lowercase type name. Since all the documentation is in section blocks, rename them to match the type names. https://bugzilla.gnome.org/show_bug.cgi?id=727776
143 lines
3.7 KiB
C
143 lines
3.7 KiB
C
/* Gstreamer Editing Services
|
|
*
|
|
* Copyright (C) <2012> 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.
|
|
*/
|
|
|
|
/**
|
|
* SECTION: gestrackelementasset
|
|
* @short_description: A GESAsset subclass specialized in GESTrackElement extraction
|
|
*/
|
|
|
|
#include "ges-track-element-asset.h"
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_TRACK_TYPE,
|
|
PROP_LAST
|
|
};
|
|
|
|
static GParamSpec *properties[PROP_LAST];
|
|
|
|
G_DEFINE_TYPE (GESTrackElementAsset, ges_track_element_asset, GES_TYPE_ASSET);
|
|
|
|
struct _GESTrackElementAssetPrivate
|
|
{
|
|
GESTrackType type;
|
|
};
|
|
|
|
static void
|
|
_get_property (GObject * object, guint property_id,
|
|
GValue * value, GParamSpec * pspec)
|
|
{
|
|
GESTrackElementAsset *asset = GES_TRACK_ELEMENT_ASSET (object);
|
|
|
|
switch (property_id) {
|
|
case PROP_TRACK_TYPE:
|
|
g_value_set_flags (value, asset->priv->type);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
_set_property (GObject * object, guint property_id,
|
|
const GValue * value, GParamSpec * pspec)
|
|
{
|
|
GESTrackElementAsset *asset = GES_TRACK_ELEMENT_ASSET (object);
|
|
|
|
switch (property_id) {
|
|
case PROP_TRACK_TYPE:
|
|
asset->priv->type = g_value_get_flags (value);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
ges_track_element_asset_class_init (GESTrackElementAssetClass * klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
g_type_class_add_private (klass, sizeof (GESTrackElementAssetPrivate));
|
|
|
|
object_class->get_property = _get_property;
|
|
object_class->set_property = _set_property;
|
|
|
|
/**
|
|
* GESClip:track-type:
|
|
*
|
|
* The formats supported by the object.
|
|
*/
|
|
properties[PROP_TRACK_TYPE] = g_param_spec_flags ("track-type",
|
|
"Track type", "The GESTrackType in which the object is",
|
|
GES_TYPE_TRACK_TYPE, GES_TRACK_TYPE_UNKNOWN,
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
|
|
|
|
g_object_class_install_property (object_class, PROP_TRACK_TYPE,
|
|
properties[PROP_TRACK_TYPE]);
|
|
}
|
|
|
|
static void
|
|
ges_track_element_asset_init (GESTrackElementAsset * self)
|
|
{
|
|
GESTrackElementAssetPrivate *priv;
|
|
|
|
priv = self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
|
GES_TYPE_TRACK_ELEMENT_ASSET, GESTrackElementAssetPrivate);
|
|
|
|
priv->type = GES_TRACK_TYPE_UNKNOWN;
|
|
|
|
}
|
|
|
|
/**
|
|
* ges_track_element_asset_set_track_type:
|
|
* @asset: A #GESAssetObject
|
|
* @type: A #GESTrackType
|
|
*
|
|
* Set the #GESAssetTrackType the #GESTrackElement extracted from @self
|
|
* should get into
|
|
*/
|
|
void
|
|
ges_track_element_asset_set_track_type (GESTrackElementAsset * asset,
|
|
GESTrackType type)
|
|
{
|
|
g_return_if_fail (GES_IS_TRACK_ELEMENT_ASSET (asset));
|
|
|
|
asset->priv->type = type;
|
|
}
|
|
|
|
/**
|
|
* ges_track_element_asset_get_track_type:
|
|
* @asset: A #GESAssetObject
|
|
*
|
|
* Get the GESAssetTrackType the #GESTrackElement extracted from @self
|
|
* should get into
|
|
*
|
|
* Returns: a #GESTrackType
|
|
*/
|
|
const GESTrackType
|
|
ges_track_element_asset_get_track_type (GESTrackElementAsset * asset)
|
|
{
|
|
g_return_val_if_fail (GES_IS_TRACK_ELEMENT_ASSET (asset),
|
|
GES_TRACK_TYPE_UNKNOWN);
|
|
|
|
return asset->priv->type;
|
|
}
|