/usr/include/gstreamermm-1.0/gstreamermm.h is in libgstreamermm-1.0-dev 1.4.3+dfsg-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | #ifndef _GSTREAMERMM_H_
#define _GSTREAMERMM_H_
/** @mainpage gstreamermm Reference Manual
*
* @section Description Description
*
* gstreamermm provides C++ bindings for the <a
* href="http://gstreamer.freedesktop.org">GStreamer streaming multimedia
* library</a>. With gstreamermm it is possible to develop applications that
* work with multimedia in C++. For instance, see Gst::Element, Gst::Bin and
* Gst::Pipeline.
*
* @section Features Features
*
* - gstreamermm is developed over <a
* href="http://www.gtkmm.org/index.shtml">glibmm</a>, <a
* href="http://libsigc.sourceforge.net/">libsigc++</a> and <a
* href="http://libxmlplusplus.sourceforge.net/">libxml++</a> and the
* functionalities they provide.
* - Referencing and unreferencing of GObjects is handled automatically via
* glibmm's automatic pointer class, Glib::RefPtr.
* - libsigc++'s slots are used for callbacks and signals.
* - Most of the GStreamer core and base plug-ins are wrapped.
*
* @section Basics Basic Usage
*
* Some form of the Gst::init() method must be called before using the
* library's classes, functions, etc. To get a deeper understanding of how to
* set up pipelines, deal with elements, pads, etc., see the <a
* href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/manual/html/index.html">GStreamer
* Application Development Manual</a>.
*
* The following includes the gstreamermm header:
* @code
* #include <gstreamermm.h>
* @endcode
* (You may include individual headers, such as @c gstreamermm/pipeline.h
* instead.)
*
* @section Compiling Compiling
*
* If your source file is @c program.cc, you can compile it with:
* @code
* g++ program.cc -o program `pkg-config --cflags --libs gstreamermm-1.0`
* @endcode
*
* Alternatively, if using autoconf, use the following in @c configure.ac:
* @code
* PKG_CHECK_MODULES([GSTREAMERMM_1_0], [gstreamermm-1.0])
* @endcode
* Then use the generated @c GSTREAMERMM_1_0_CFLAGS and @c GSTREAMERMM_1_0_LIBS
* variables in the
* project @c Makefile.am files. For example:
* @code
* program_CPPFLAGS = $(GSTREAMERMM_1_0_CFLAGS)
* program_LDADD = $(GSTREAMERMM_1_0_LIBS)
* @endcode
*/
#include <gstreamermm/check.h>
#include <gstreamermm/init.h>
#include <gstreamermm/version.h>
#include <gstreamermm/register.h>
// Core includes
#include <gstreamermm/allocator.h>
#include <gstreamermm/atomicqueue.h>
#include <gstreamermm/bin.h>
#include <gstreamermm/buffer.h>
#include <gstreamermm/bufferlist.h>
#include <gstreamermm/bus.h>
#include <gstreamermm/caps.h>
#include <gstreamermm/capsfeatures.h>
#include <gstreamermm/childproxy.h>
#include <gstreamermm/clock.h>
#include <gstreamermm/context.h>
#include <gstreamermm/element.h>
#include <gstreamermm/elementfactory.h>
#include <gstreamermm/enums.h>
#include <gstreamermm/error.h>
#include <gstreamermm/event.h>
#include <gstreamermm/format.h>
#include <gstreamermm/ghostpad.h>
#include <gstreamermm/iterator.h>
#include <gstreamermm/message.h>
#include <gstreamermm/object.h>
#include <gstreamermm/pad.h>
#include <gstreamermm/padtemplate.h>
#include <gstreamermm/parse.h>
#include <gstreamermm/pipeline.h>
#include <gstreamermm/plugin.h>
#include <gstreamermm/pluginfeature.h>
#include <gstreamermm/preset.h>
#include <gstreamermm/query.h>
#include <gstreamermm/registry.h>
#include <gstreamermm/segment.h>
#include <gstreamermm/structure.h>
#include <gstreamermm/systemclock.h>
#include <gstreamermm/taglist.h>
#include <gstreamermm/tagsetter.h>
#include <gstreamermm/task.h>
#include <gstreamermm/taskpool.h>
#include <gstreamermm/typefind.h>
#include <gstreamermm/typefindfactory.h>
#include <gstreamermm/urihandler.h>
#include <gstreamermm/value.h>
#include <gstreamermm/valuelist.h>
// Core library base includes
#include <gstreamermm/basesink.h>
#include <gstreamermm/basesrc.h>
#include <gstreamermm/basetransform.h>
#include <gstreamermm/pushsrc.h>
// Base library includes
#include <gstreamermm/audioclock.h>
#include <gstreamermm/audiofilter.h>
#include <gstreamermm/audiosink.h>
#include <gstreamermm/audiosrc.h>
#include <gstreamermm/audiobasesink.h>
#include <gstreamermm/audiobasesrc.h>
#include <gstreamermm/discoverer.h>
#include <gstreamermm/discovererinfo.h>
#include <gstreamermm/audioringbuffer.h>
#include <gstreamermm/videosink.h>
// Base inteface includes
#include <gstreamermm/navigation.h>
#include <gstreamermm/videoorientation.h>
// Plug-in core includes
#include <gstreamermm/capsfilter.h>
#include <gstreamermm/fakesrc.h>
#include <gstreamermm/fakesink.h>
#include <gstreamermm/fdsink.h>
#include <gstreamermm/fdsrc.h>
#include <gstreamermm/filesrc.h>
#include <gstreamermm/filesink.h>
#include <gstreamermm/funnel.h>
#include <gstreamermm/identity.h>
#include <gstreamermm/multiqueue.h>
#include <gstreamermm/queue.h>
#include <gstreamermm/queue2.h>
// Plug-in base includes
#include <gstreamermm/adder.h>
#include <gstreamermm/alsasink.h>
#include <gstreamermm/alsasrc.h>
#include <gstreamermm/audioconvert.h>
#include <gstreamermm/audiorate.h>
//#include <gstreamermm/audioresample.h>
#include <gstreamermm/audiotestsrc.h>
#include <gstreamermm/cdparanoiasrc.h>
#include <gstreamermm/clockoverlay.h>
#include <gstreamermm/decodebin.h>
#include <gstreamermm/giosink.h>
#include <gstreamermm/giosrc.h>
#include <gstreamermm/giostreamsink.h>
#include <gstreamermm/giostreamsrc.h>
//TODO? (Add plug-in first): #include <gstreamermm/gnomevfssink.h>
//TODO? (Add plug-in first): #include <gstreamermm/gnomevfssrc.h>
#include <gstreamermm/oggdemux.h>
#include <gstreamermm/oggmux.h>
#include <gstreamermm/subtitleoverlay.h>
#include <gstreamermm/typefindelement.h>
#include <gstreamermm/videooverlay.h>
#endif // _GSTREAMERMM_H
|