2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gst.h: Main header for GStreamer, apps should include this
|
2000-01-30 09:03:00 +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 __GST_H__
|
|
|
|
#define __GST_H__
|
|
|
|
|
2001-01-14 21:55:41 +00:00
|
|
|
#include <glib.h>
|
2002-02-15 16:14:21 +00:00
|
|
|
#include <popt.h>
|
2001-01-14 21:55:41 +00:00
|
|
|
|
2001-04-17 02:19:08 +00:00
|
|
|
#include <gst/gstversion.h>
|
2001-05-25 21:00:07 +00:00
|
|
|
#include <gst/gsttypes.h>
|
2001-04-17 02:19:08 +00:00
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
#include <gst/gstinfo.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <gst/gstobject.h>
|
|
|
|
#include <gst/gstpad.h>
|
|
|
|
#include <gst/gstbuffer.h>
|
2000-09-12 18:13:48 +00:00
|
|
|
#include <gst/gstcpu.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <gst/gstelement.h>
|
|
|
|
#include <gst/gstbin.h>
|
|
|
|
#include <gst/gstpipeline.h>
|
|
|
|
#include <gst/gstthread.h>
|
|
|
|
#include <gst/gsttype.h>
|
2000-12-31 16:12:48 +00:00
|
|
|
#include <gst/gstautoplug.h>
|
2000-12-03 17:51:29 +00:00
|
|
|
#include <gst/gstcaps.h>
|
2000-12-07 18:37:56 +00:00
|
|
|
#include <gst/gstprops.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <gst/gstplugin.h>
|
|
|
|
#include <gst/gstutils.h>
|
|
|
|
#include <gst/gsttrace.h>
|
|
|
|
#include <gst/gstxml.h>
|
2001-05-25 21:00:07 +00:00
|
|
|
#include <gst/gstscheduler.h>
|
2001-08-22 21:45:25 +00:00
|
|
|
#include <gst/gsttimecache.h>
|
2001-10-17 10:21:27 +00:00
|
|
|
#include <gst/gstevent.h>
|
2002-04-12 13:46:59 +00:00
|
|
|
#include <gst/gstclock.h>
|
|
|
|
#include <gst/gstsystemclock.h>
|
2000-12-03 00:17:52 +00:00
|
|
|
|
2001-01-07 04:00:30 +00:00
|
|
|
#include <gst/gstparse.h>
|
2002-04-12 09:53:00 +00:00
|
|
|
#include <gst/gstregistry.h>
|
2001-06-25 01:20:11 +00:00
|
|
|
#include <gst/gstextratypes.h>
|
2001-01-07 04:00:30 +00:00
|
|
|
|
2001-02-25 03:42:51 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* initialize GST */
|
2002-02-15 16:14:21 +00:00
|
|
|
void gst_init (int *argc, char **argv[]);
|
2002-02-24 17:08:07 +00:00
|
|
|
void gst_init_with_popt_table (int *argc, char **argv[], const struct poptOption *popt_options);
|
2002-02-15 16:14:21 +00:00
|
|
|
const struct poptOption *gst_init_get_popt_table (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-02-15 16:14:21 +00:00
|
|
|
void gst_main (void);
|
|
|
|
void gst_main_quit (void);
|
2000-09-09 16:36:10 +00:00
|
|
|
|
2001-02-25 03:42:51 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
#include <gst/gstlog.h>
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#endif /* __GST_H__ */
|