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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GES_H__
|
|
|
|
#define __GES_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2009-08-06 10:14:37 +00:00
|
|
|
#include <ges/ges-types.h>
|
2010-07-01 15:03:55 +00:00
|
|
|
#include <ges/ges-enums.h>
|
2009-08-06 10:14:37 +00:00
|
|
|
|
2009-08-06 09:23:01 +00:00
|
|
|
#include <ges/ges-timeline.h>
|
|
|
|
#include <ges/ges-timeline-layer.h>
|
2009-08-06 10:14:37 +00:00
|
|
|
#include <ges/ges-simple-timeline-layer.h>
|
2009-08-06 09:23:01 +00:00
|
|
|
#include <ges/ges-timeline-object.h>
|
|
|
|
#include <ges/ges-timeline-pipeline.h>
|
|
|
|
#include <ges/ges-timeline-source.h>
|
|
|
|
#include <ges/ges-timeline-transition.h>
|
2010-06-30 18:25:18 +00:00
|
|
|
#include <ges/ges-timeline-test-source.h>
|
2010-06-14 11:31:15 +00:00
|
|
|
#include <ges/ges-timeline-title-source.h>
|
2010-07-01 10:34:46 +00:00
|
|
|
#include <ges/ges-timeline-overlay.h>
|
2010-07-01 09:17:46 +00:00
|
|
|
#include <ges/ges-timeline-text-overlay.h>
|
2009-08-06 09:23:01 +00:00
|
|
|
#include <ges/ges-track.h>
|
2009-08-06 10:14:37 +00:00
|
|
|
#include <ges/ges-track-object.h>
|
2009-08-06 16:54:01 +00:00
|
|
|
#include <ges/ges-track-source.h>
|
2009-08-06 09:23:01 +00:00
|
|
|
|
2009-08-07 14:45:16 +00:00
|
|
|
#include <ges/ges-custom-timeline-source.h>
|
2009-09-21 10:51:16 +00:00
|
|
|
#include <ges/ges-timeline-file-source.h>
|
|
|
|
#include <ges/ges-track-filesource.h>
|
2010-06-30 17:34:29 +00:00
|
|
|
#include <ges/ges-track-video-test-source.h>
|
2010-06-30 18:01:18 +00:00
|
|
|
#include <ges/ges-track-audio-test-source.h>
|
2010-06-14 15:52:09 +00:00
|
|
|
#include <ges/ges-track-title-source.h>
|
2010-06-30 16:13:35 +00:00
|
|
|
#include <ges/ges-track-text-overlay.h>
|
2010-07-02 14:23:41 +00:00
|
|
|
#include <ges/ges-track-transition.h>
|
|
|
|
#include <ges/ges-track-video-transition.h>
|
|
|
|
#include <ges/ges-track-audio-transition.h>
|
2009-08-07 14:45:16 +00:00
|
|
|
|
2010-05-20 08:44:01 +00:00
|
|
|
#include <ges/ges-utils.h>
|
|
|
|
|
2009-08-06 09:23:01 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
void ges_init (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GES_H__ */
|