mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
check in skeletal ges-enums.{c,h}
This commit is contained in:
parent
aec1fbd88c
commit
b25befe29a
4 changed files with 54 additions and 0 deletions
|
@ -9,6 +9,7 @@ CLEANFILES = $(BUILT_SOURCES) $(built_header_make) $(built_source_make)
|
|||
|
||||
libges_@GST_MAJORMINOR@_la_SOURCES = \
|
||||
ges.c \
|
||||
ges-enums.c \
|
||||
ges-custom-timeline-source.c \
|
||||
ges-simple-timeline-layer.c \
|
||||
ges-timeline.c \
|
||||
|
@ -40,6 +41,7 @@ libges_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/ges
|
|||
libges_@GST_MAJORMINOR@include_HEADERS = \
|
||||
ges-types.h \
|
||||
ges.h \
|
||||
ges-enums.h \
|
||||
ges-custom-timeline-source.h \
|
||||
ges-internal.h \
|
||||
ges-simple-timeline-layer.h \
|
||||
|
|
21
ges/ges-enums.c
Normal file
21
ges/ges-enums.c
Normal file
|
@ -0,0 +1,21 @@
|
|||
/* GStreamer Editing Services
|
||||
* Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
|
||||
* 2010 Nokia Corporation
|
||||
*
|
||||
* 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-enums.h"
|
30
ges/ges-enums.h
Normal file
30
ges/ges-enums.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
/* GStreamer Editing Services
|
||||
* Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
|
||||
* 2010 Nokia Corporation
|
||||
*
|
||||
* 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_ENUMS_H__
|
||||
#define __GES_ENUMS_H__
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GES_ENUMS_H__ */
|
|
@ -25,6 +25,7 @@
|
|||
#include <gst/gst.h>
|
||||
|
||||
#include <ges/ges-types.h>
|
||||
#include <ges/ges-enums.h>
|
||||
|
||||
#include <ges/ges-timeline.h>
|
||||
#include <ges/ges-timeline-layer.h>
|
||||
|
|
Loading…
Reference in a new issue