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>
|
2002-07-24 20:20:50 +00:00
|
|
|
#include <gst/gstbufferpool-default.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>
|
2002-12-12 22:14:36 +00:00
|
|
|
#include <gst/gstindex.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
#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>
|
2003-01-16 21:22:06 +00:00
|
|
|
#include <gst/gsturi.h>
|
2003-02-10 20:32:32 +00:00
|
|
|
#include <gst/gsturitype.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
#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-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>
|
2003-02-10 20:32:32 +00:00
|
|
|
#include <gst/gstregistrypool.h>
|
2002-07-02 13:37:28 +00:00
|
|
|
#include <gst/gstenumtypes.h>
|
2001-01-07 04:00:30 +00:00
|
|
|
|
2003-01-09 14:15:37 +00:00
|
|
|
/* API compatibility stuff */
|
|
|
|
#include <gst/gstcompat.h>
|
|
|
|
|
2002-07-08 19:07:30 +00:00
|
|
|
G_BEGIN_DECLS
|
2001-02-25 03:42:51 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* initialize GST */
|
2002-11-27 21:08:06 +00:00
|
|
|
void gst_init (int *argc, char **argv[]);
|
|
|
|
gboolean gst_init_check (int *argc, char **argv[]);
|
2003-04-04 16:29:37 +00:00
|
|
|
void gst_init_with_popt_table (int *argc, char **argv[],
|
|
|
|
const struct poptOption
|
|
|
|
*popt_options);
|
|
|
|
gboolean gst_init_check_with_popt_table (int *argc, char **argv[],
|
2002-11-27 21:08:06 +00:00
|
|
|
const struct poptOption
|
|
|
|
*popt_options);
|
|
|
|
const struct
|
|
|
|
poptOption* gst_init_get_popt_table (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-11-27 21:08:06 +00:00
|
|
|
void gst_use_threads (gboolean use_threads);
|
|
|
|
gboolean gst_has_threads (void);
|
2002-06-21 14:50:00 +00:00
|
|
|
|
2002-11-27 21:08:06 +00:00
|
|
|
void gst_main (void);
|
|
|
|
void gst_main_quit (void);
|
2000-09-09 16:36:10 +00:00
|
|
|
|
2002-07-08 19:07:30 +00:00
|
|
|
G_END_DECLS
|
2001-02-25 03:42:51 +00:00
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
#include <gst/gstlog.h>
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#endif /* __GST_H__ */
|