gstreamer 1.1.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +33 -0
- data/Rakefile +213 -0
- data/ext/gstreamer/depend +5 -0
- data/ext/gstreamer/extconf.rb +69 -0
- data/ext/gstreamer/misc.c +63 -0
- data/ext/gstreamer/rbgst-bin.c +458 -0
- data/ext/gstreamer/rbgst-buffer.c +365 -0
- data/ext/gstreamer/rbgst-bus.c +92 -0
- data/ext/gstreamer/rbgst-caps.c +448 -0
- data/ext/gstreamer/rbgst-child-proxy.c +34 -0
- data/ext/gstreamer/rbgst-clock.c +110 -0
- data/ext/gstreamer/rbgst-element-factory.c +249 -0
- data/ext/gstreamer/rbgst-element.c +1088 -0
- data/ext/gstreamer/rbgst-event.c +351 -0
- data/ext/gstreamer/rbgst-ghost-pad.c +45 -0
- data/ext/gstreamer/rbgst-index-factory.c +69 -0
- data/ext/gstreamer/rbgst-install-plugins-context.c +86 -0
- data/ext/gstreamer/rbgst-install-plugins-return.c +45 -0
- data/ext/gstreamer/rbgst-install-plugins.c +125 -0
- data/ext/gstreamer/rbgst-message.c +787 -0
- data/ext/gstreamer/rbgst-mini-object.c +220 -0
- data/ext/gstreamer/rbgst-object.c +83 -0
- data/ext/gstreamer/rbgst-pad-template.c +125 -0
- data/ext/gstreamer/rbgst-pad.c +338 -0
- data/ext/gstreamer/rbgst-pipeline.c +91 -0
- data/ext/gstreamer/rbgst-plugin-feature.c +133 -0
- data/ext/gstreamer/rbgst-plugin.c +162 -0
- data/ext/gstreamer/rbgst-private.c +88 -0
- data/ext/gstreamer/rbgst-private.h +97 -0
- data/ext/gstreamer/rbgst-query.c +291 -0
- data/ext/gstreamer/rbgst-seek.c +39 -0
- data/ext/gstreamer/rbgst-static-caps.c +51 -0
- data/ext/gstreamer/rbgst-static-pad-template.c +65 -0
- data/ext/gstreamer/rbgst-structure.c +302 -0
- data/ext/gstreamer/rbgst-system-clock.c +48 -0
- data/ext/gstreamer/rbgst-type-find-factory.c +125 -0
- data/ext/gstreamer/rbgst-value.c +529 -0
- data/ext/gstreamer/rbgst-x-overlay.c +133 -0
- data/ext/gstreamer/rbgst.c +237 -0
- data/ext/gstreamer/rbgst.h +197 -0
- data/ext/gstreamer/rbgstclockentry.c +271 -0
- data/ext/gstreamer/rbgstformat.c +162 -0
- data/ext/gstreamer/rbgstindex.c +317 -0
- data/ext/gstreamer/rbgstindexentry.c +99 -0
- data/ext/gstreamer/rbgstparse.c +69 -0
- data/ext/gstreamer/rbgstquerytype.c +162 -0
- data/ext/gstreamer/rbgstregistry.c +288 -0
- data/ext/gstreamer/rbgsttag.c +113 -0
- data/ext/gstreamer/rbgsttagsetter.c +53 -0
- data/ext/gstreamer/rbgstxml.c +192 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gstreamer.so +0 -0
- data/lib/1.9/gstreamer.so +0 -0
- data/lib/gst.rb +33 -0
- data/sample/audio-player.rb +54 -0
- data/sample/gst-inspect.rb +417 -0
- data/sample/install-plugins.rb +40 -0
- data/sample/media-type.rb +55 -0
- data/sample/media-type2.rb +268 -0
- data/sample/ogg-audio-player.rb +54 -0
- data/sample/type-find.rb +46 -0
- data/sample/video-player.rb +57 -0
- data/sample/xml-player.rb +60 -0
- data/test/gst-test-utils.rb +18 -0
- data/test/run-test.rb +25 -0
- data/test/test_bin.rb +167 -0
- data/test/test_buffer.rb +177 -0
- data/test/test_caps.rb +24 -0
- data/test/test_element.rb +85 -0
- data/test/test_element_factory.rb +28 -0
- data/test/test_event.rb +10 -0
- data/test/test_index_factory.rb +7 -0
- data/test/test_install-plugins.rb +18 -0
- data/test/test_message.rb +191 -0
- data/test/test_mini_object.rb +38 -0
- data/test/test_object.rb +10 -0
- data/test/test_pad.rb +68 -0
- data/test/test_plugin.rb +6 -0
- data/test/test_plugin_feature.rb +20 -0
- data/test/test_seek.rb +17 -0
- data/test/test_static_caps.rb +18 -0
- data/test/test_static_pad_template.rb +16 -0
- data/test/test_structure.rb +159 -0
- data/test/test_thread_handling.rb +58 -0
- data/test/test_type_find_factory.rb +8 -0
- data/test/test_value.rb +69 -0
- data/vendor/local/bin/cjpeg.exe +0 -0
- data/vendor/local/bin/djpeg.exe +0 -0
- data/vendor/local/bin/gst-discoverer-0.10.exe +0 -0
- data/vendor/local/bin/gst-feedback-0.10 +115 -0
- data/vendor/local/bin/gst-feedback.exe +0 -0
- data/vendor/local/bin/gst-inspect-0.10.exe +0 -0
- data/vendor/local/bin/gst-inspect.exe +0 -0
- data/vendor/local/bin/gst-launch-0.10.exe +0 -0
- data/vendor/local/bin/gst-launch.exe +0 -0
- data/vendor/local/bin/gst-typefind-0.10.exe +0 -0
- data/vendor/local/bin/gst-typefind.exe +0 -0
- data/vendor/local/bin/gst-visualise-0.10 +77 -0
- data/vendor/local/bin/gst-xmlinspect-0.10.exe +0 -0
- data/vendor/local/bin/gst-xmlinspect.exe +0 -0
- data/vendor/local/bin/gst-xmllaunch-0.10.exe +0 -0
- data/vendor/local/bin/gst-xmllaunch.exe +0 -0
- data/vendor/local/bin/jpegtran.exe +0 -0
- data/vendor/local/bin/libgstapp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstaudio-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstbase-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstbasevideo-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstcdda-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstcheck-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstcontroller-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstdataprotocol-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstfft-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstinterfaces-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstnet-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstnetbuffer-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstpbutils-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstphotography-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstreamer-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstriff-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstrtp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstrtsp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstsdp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstsignalprocessor-0.10-0.dll +0 -0
- data/vendor/local/bin/libgsttag-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstvideo-0.10-0.dll +0 -0
- data/vendor/local/bin/libjpeg-8.dll +0 -0
- data/vendor/local/bin/libogg-0.dll +0 -0
- data/vendor/local/bin/libsoup-2.4-1.dll +0 -0
- data/vendor/local/bin/libspeex-1.dll +0 -0
- data/vendor/local/bin/libspeexdsp-1.dll +0 -0
- data/vendor/local/bin/libtheora-0.dll +0 -0
- data/vendor/local/bin/libtheoradec-1.dll +0 -0
- data/vendor/local/bin/libtheoraenc-1.dll +0 -0
- data/vendor/local/bin/libvorbis-0.dll +0 -0
- data/vendor/local/bin/libvorbisenc-2.dll +0 -0
- data/vendor/local/bin/libvorbisfile-3.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/rdjpgcom.exe +0 -0
- data/vendor/local/bin/speexdec.exe +0 -0
- data/vendor/local/bin/speexenc.exe +0 -0
- data/vendor/local/bin/wrjpgcom.exe +0 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/include/gstreamer-0.10/gst/app/gstappbuffer.h +64 -0
- data/vendor/local/include/gstreamer-0.10/gst/app/gstappsink.h +141 -0
- data/vendor/local/include/gstreamer-0.10/gst/app/gstappsrc.h +153 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/audio-enumtypes.h +29 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/audio.h +185 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudioclock.h +108 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiofilter.h +96 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosink.h +102 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosrc.h +99 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosink.h +177 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosrc.h +146 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstringbuffer.h +408 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/mixerutils.h +50 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/multichannel.h +115 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstadapter.h +106 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbaseparse.h +314 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesink.h +247 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesrc.h +261 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbasetransform.h +277 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbitreader.h +314 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbytereader.h +527 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbytewriter.h +361 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstcollectpads.h +223 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstdataqueue.h +184 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstpushsrc.h +68 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gsttypefindhelper.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/cdda/gstcddabasesrc.h +157 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/gstbufferstraw.h +35 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/gstcheck.h +427 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/gstconsistencychecker.h +48 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/internal-check.h +418 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontroller.h +155 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontrolsource.h +163 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstinterpolationcontrolsource.h +109 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstlfocontrolsource.h +102 -0
- data/vendor/local/include/gstreamer-0.10/gst/dataprotocol/dataprotocol.h +196 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstfft.h +49 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf32.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf64.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts16.h +74 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts32.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/floatcast/floatcast.h +102 -0
- data/vendor/local/include/gstreamer-0.10/gst/glib-compat.h +37 -0
- data/vendor/local/include/gstreamer-0.10/gst/gst.h +106 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstatomicqueue.h +55 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbin.h +190 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbuffer.h +510 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbufferlist.h +243 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbus.h +192 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstcaps.h +296 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstchildproxy.h +91 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstclock.h +570 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstcompat.h +43 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstconfig.h +235 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstdatetime.h +66 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstdebugutils.h +109 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstelement.h +827 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstelementfactory.h +314 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstenumtypes.h +211 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsterror.h +255 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstevent.h +522 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstfilter.h +44 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstformat.h +113 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstghostpad.h +111 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstindex.h +426 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstindexfactory.h +76 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstinfo.h +1549 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstinterface.h +81 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstiterator.h +267 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstmacros.h +54 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstmarshal.h +164 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstmessage.h +534 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstminiobject.h +223 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstobject.h +354 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpad.h +1032 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpadtemplate.h +196 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstparamspecs.h +128 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstparse.h +119 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpipeline.h +115 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstplugin.h +411 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpluginfeature.h +171 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpoll.h +97 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpreset.h +99 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstquery.h +342 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstregistry.h +237 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstsegment.h +109 -0
- data/vendor/local/include/gstreamer-0.10/gst/gststructure.h +254 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstsystemclock.h +89 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttaglist.h +1034 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttagsetter.h +100 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttask.h +205 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttaskpool.h +103 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttrace.h +251 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttypefind.h +122 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttypefindfactory.h +81 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsturi.h +156 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstutils.h +1198 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstvalue.h +594 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstversion.h +90 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstxml.h +113 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalance.h +112 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalancechannel.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/interfaces-enumtypes.h +49 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixer.h +231 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixeroptions.h +91 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixertrack.h +134 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/navigation.h +257 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography-enumtypes.h +37 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography.h +387 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/propertyprobe.h +115 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/streamvolume.h +87 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/tuner.h +128 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunerchannel.h +113 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunernorm.h +67 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/videoorientation.h +94 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/xoverlay.h +121 -0
- data/vendor/local/include/gstreamer-0.10/gst/math-compat.h +84 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnet.h +30 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnetclientclock.h +105 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimepacket.h +78 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimeprovider.h +110 -0
- data/vendor/local/include/gstreamer-0.10/gst/netbuffer/gstnetbuffer.h +129 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/codec-utils.h +63 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/descriptions.h +58 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-profile.h +187 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-target.h +147 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstdiscoverer.h +266 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstpluginsbaseversion.h +86 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/install-plugins.h +144 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/missing-plugins.h +77 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils-enumtypes.h +23 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils.h +42 -0
- data/vendor/local/include/gstreamer-0.10/gst/riff/riff-ids.h +517 -0
- data/vendor/local/include/gstreamer-0.10/gst/riff/riff-media.h +65 -0
- data/vendor/local/include/gstreamer-0.10/gst/riff/riff-read.h +87 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpaudiopayload.h +98 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpdepayload.h +141 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertppayload.h +162 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtcpbuffer.h +286 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtpbuffer.h +166 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtppayloads.h +193 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsp-enumtypes.h +35 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspbase64.h +37 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspconnection.h +209 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspdefs.h +397 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspextension.h +97 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspmessage.h +187 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsprange.h +121 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsptransport.h +174 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspurl.h +103 -0
- data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdp.h +58 -0
- data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdpmessage.h +423 -0
- data/vendor/local/include/gstreamer-0.10/gst/signalprocessor/gstsignalprocessor.h +142 -0
- data/vendor/local/include/gstreamer-0.10/gst/tag/gsttagdemux.h +144 -0
- data/vendor/local/include/gstreamer-0.10/gst/tag/tag.h +549 -0
- data/vendor/local/include/gstreamer-0.10/gst/tag/xmpwriter.h +68 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideocodec.h +195 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideodecoder.h +182 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideoencoder.h +128 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstvideofilter.h +58 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstvideosink.h +132 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/video-enumtypes.h +19 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/video.h +501 -0
- data/vendor/local/include/jconfig.h +46 -0
- data/vendor/local/include/jerror.h +304 -0
- data/vendor/local/include/jmorecfg.h +371 -0
- data/vendor/local/include/jpeglib.h +1158 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-address.h +102 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-basic.h +56 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-digest.h +59 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain.h +99 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth.h +90 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar-text.h +44 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar.h +68 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie.h +81 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-date.h +64 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-enum-types.h +63 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-form.h +53 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-headers.h +59 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-logger.h +80 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-message-body.h +81 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-message-headers.h +133 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-message.h +163 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-method.h +77 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-misc.h +52 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-multipart.h +51 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-portability.h +28 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-resolver.h +57 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h +57 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-server.h +113 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session-async.h +44 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session-feature.h +51 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session-sync.h +44 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session.h +109 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-socket.h +115 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-status.h +102 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-types.h +32 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-uri.h +90 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-value-utils.h +84 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-xmlrpc.h +83 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup.h +45 -0
- data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +304 -0
- data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
- data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
- data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
- data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
- data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
- data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
- data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
- data/vendor/local/include/libxml2/libxml/dict.h +69 -0
- data/vendor/local/include/libxml2/libxml/encoding.h +226 -0
- data/vendor/local/include/libxml2/libxml/entities.h +150 -0
- data/vendor/local/include/libxml2/libxml/globals.h +502 -0
- data/vendor/local/include/libxml2/libxml/hash.h +233 -0
- data/vendor/local/include/libxml2/libxml/list.h +137 -0
- data/vendor/local/include/libxml2/libxml/nanoftp.h +143 -0
- data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
- data/vendor/local/include/libxml2/libxml/parser.h +1235 -0
- data/vendor/local/include/libxml2/libxml/parserInternals.h +611 -0
- data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
- data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
- data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
- data/vendor/local/include/libxml2/libxml/threads.h +84 -0
- data/vendor/local/include/libxml2/libxml/tree.h +1252 -0
- data/vendor/local/include/libxml2/libxml/uri.h +94 -0
- data/vendor/local/include/libxml2/libxml/valid.h +458 -0
- data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
- data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
- data/vendor/local/include/libxml2/libxml/xmlIO.h +360 -0
- data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
- data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
- data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
- data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
- data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
- data/vendor/local/include/libxml2/libxml/xmlreader.h +424 -0
- data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
- data/vendor/local/include/libxml2/libxml/xmlsave.h +87 -0
- data/vendor/local/include/libxml2/libxml/xmlschemas.h +218 -0
- data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
- data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
- data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
- data/vendor/local/include/libxml2/libxml/xmlversion.h +458 -0
- data/vendor/local/include/libxml2/libxml/xmlwriter.h +485 -0
- data/vendor/local/include/libxml2/libxml/xpath.h +546 -0
- data/vendor/local/include/libxml2/libxml/xpathInternals.h +630 -0
- data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
- data/vendor/local/include/ogg/config_types.h +25 -0
- data/vendor/local/include/ogg/ogg.h +210 -0
- data/vendor/local/include/ogg/os_types.h +147 -0
- data/vendor/local/include/speex/speex.h +424 -0
- data/vendor/local/include/speex/speex_bits.h +174 -0
- data/vendor/local/include/speex/speex_buffer.h +68 -0
- data/vendor/local/include/speex/speex_callbacks.h +134 -0
- data/vendor/local/include/speex/speex_config_types.h +11 -0
- data/vendor/local/include/speex/speex_echo.h +170 -0
- data/vendor/local/include/speex/speex_header.h +94 -0
- data/vendor/local/include/speex/speex_jitter.h +197 -0
- data/vendor/local/include/speex/speex_preprocess.h +219 -0
- data/vendor/local/include/speex/speex_resampler.h +340 -0
- data/vendor/local/include/speex/speex_stereo.h +91 -0
- data/vendor/local/include/speex/speex_types.h +126 -0
- data/vendor/local/include/theora/codec.h +591 -0
- data/vendor/local/include/theora/theora.h +784 -0
- data/vendor/local/include/theora/theoradec.h +325 -0
- data/vendor/local/include/theora/theoraenc.h +486 -0
- data/vendor/local/include/vorbis/codec.h +243 -0
- data/vendor/local/include/vorbis/vorbisenc.h +436 -0
- data/vendor/local/include/vorbis/vorbisfile.h +206 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadder.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadder.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadder.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaiff.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalaw.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalpha.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstannodex.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapetag.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstasfmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstauparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautodetect.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstavi.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstavi.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstavi.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstbayer.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcairo.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcog.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcog.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcog.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcutter.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebug.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdtmf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsteffectv.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstencodebin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstequalizer.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfestival.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflv.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflv.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflv.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflxdec.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfragmented.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfreeze.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgio.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgio.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgio.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsth264parse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsticydemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3demux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3tag.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterlace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterleave.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstisomp4.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstivfparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpeg.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlevel.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstliveadder.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmatroska.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmulaw.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultifile.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultipart.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmve.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmve.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmve.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmxf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnsf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstogg.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstogg.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstogg.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpango.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpango.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpango.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstplaybin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpng.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpng.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpng.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpnm.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpostproc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrawparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreal.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreal.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreal.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtsp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdi.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsiren.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsmpte.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspectrum.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeed.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeex.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgststereo.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgststereo.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgststereo.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubenc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttheora.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttta.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttta.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttta.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstudp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstudp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstudp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideobox.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideorate.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvmnc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvolume.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvorbis.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavenc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4menc.la +41 -0
- data/vendor/local/lib/libgstapp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstapp-0.10.la +41 -0
- data/vendor/local/lib/libgstaudio-0.10.a +0 -0
- data/vendor/local/lib/libgstaudio-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstaudio-0.10.la +41 -0
- data/vendor/local/lib/libgstbase-0.10.a +0 -0
- data/vendor/local/lib/libgstbase-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstbase-0.10.la +41 -0
- data/vendor/local/lib/libgstbasevideo-0.10.a +0 -0
- data/vendor/local/lib/libgstbasevideo-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstbasevideo-0.10.la +41 -0
- data/vendor/local/lib/libgstcdda-0.10.a +0 -0
- data/vendor/local/lib/libgstcdda-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstcdda-0.10.la +41 -0
- data/vendor/local/lib/libgstcheck-0.10.a +0 -0
- data/vendor/local/lib/libgstcheck-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstcheck-0.10.la +41 -0
- data/vendor/local/lib/libgstcontroller-0.10.a +0 -0
- data/vendor/local/lib/libgstcontroller-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstcontroller-0.10.la +41 -0
- data/vendor/local/lib/libgstdataprotocol-0.10.a +0 -0
- data/vendor/local/lib/libgstdataprotocol-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstdataprotocol-0.10.la +41 -0
- data/vendor/local/lib/libgstfft-0.10.a +0 -0
- data/vendor/local/lib/libgstfft-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstfft-0.10.la +41 -0
- data/vendor/local/lib/libgstinterfaces-0.10.a +0 -0
- data/vendor/local/lib/libgstinterfaces-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstinterfaces-0.10.la +41 -0
- data/vendor/local/lib/libgstnet-0.10.a +0 -0
- data/vendor/local/lib/libgstnet-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstnet-0.10.la +41 -0
- data/vendor/local/lib/libgstnetbuffer-0.10.a +0 -0
- data/vendor/local/lib/libgstnetbuffer-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstnetbuffer-0.10.la +41 -0
- data/vendor/local/lib/libgstpbutils-0.10.a +0 -0
- data/vendor/local/lib/libgstpbutils-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstpbutils-0.10.la +41 -0
- data/vendor/local/lib/libgstphotography-0.10.a +0 -0
- data/vendor/local/lib/libgstphotography-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstphotography-0.10.la +41 -0
- data/vendor/local/lib/libgstreamer-0.10.a +0 -0
- data/vendor/local/lib/libgstreamer-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstreamer-0.10.la +41 -0
- data/vendor/local/lib/libgstriff-0.10.a +0 -0
- data/vendor/local/lib/libgstriff-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstriff-0.10.la +41 -0
- data/vendor/local/lib/libgstrtp-0.10.a +0 -0
- data/vendor/local/lib/libgstrtp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstrtp-0.10.la +41 -0
- data/vendor/local/lib/libgstrtsp-0.10.a +0 -0
- data/vendor/local/lib/libgstrtsp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstrtsp-0.10.la +41 -0
- data/vendor/local/lib/libgstsdp-0.10.a +0 -0
- data/vendor/local/lib/libgstsdp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstsdp-0.10.la +41 -0
- data/vendor/local/lib/libgstsignalprocessor-0.10.a +0 -0
- data/vendor/local/lib/libgstsignalprocessor-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstsignalprocessor-0.10.la +41 -0
- data/vendor/local/lib/libgsttag-0.10.a +0 -0
- data/vendor/local/lib/libgsttag-0.10.dll.a +0 -0
- data/vendor/local/lib/libgsttag-0.10.la +41 -0
- data/vendor/local/lib/libgstvideo-0.10.a +0 -0
- data/vendor/local/lib/libgstvideo-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstvideo-0.10.la +41 -0
- data/vendor/local/lib/libjpeg.dll.a +0 -0
- data/vendor/local/lib/libogg.a +0 -0
- data/vendor/local/lib/libogg.dll.a +0 -0
- data/vendor/local/lib/libogg.la +41 -0
- data/vendor/local/lib/libsoup-2.4.dll.a +0 -0
- data/vendor/local/lib/libspeex.a +0 -0
- data/vendor/local/lib/libspeex.dll.a +0 -0
- data/vendor/local/lib/libspeex.la +35 -0
- data/vendor/local/lib/libspeexdsp.a +0 -0
- data/vendor/local/lib/libspeexdsp.dll.a +0 -0
- data/vendor/local/lib/libspeexdsp.la +35 -0
- data/vendor/local/lib/libtheora.a +0 -0
- data/vendor/local/lib/libtheora.dll.a +0 -0
- data/vendor/local/lib/libtheora.la +41 -0
- data/vendor/local/lib/libtheoradec.a +0 -0
- data/vendor/local/lib/libtheoradec.dll.a +0 -0
- data/vendor/local/lib/libtheoradec.la +41 -0
- data/vendor/local/lib/libtheoraenc.a +0 -0
- data/vendor/local/lib/libtheoraenc.dll.a +0 -0
- data/vendor/local/lib/libtheoraenc.la +41 -0
- data/vendor/local/lib/libvorbis.a +0 -0
- data/vendor/local/lib/libvorbis.dll.a +0 -0
- data/vendor/local/lib/libvorbis.la +41 -0
- data/vendor/local/lib/libvorbisenc.a +0 -0
- data/vendor/local/lib/libvorbisenc.dll.a +0 -0
- data/vendor/local/lib/libvorbisenc.la +41 -0
- data/vendor/local/lib/libvorbisfile.a +0 -0
- data/vendor/local/lib/libvorbisfile.dll.a +0 -0
- data/vendor/local/lib/libvorbisfile.la +41 -0
- data/vendor/local/lib/libxml2.def +1657 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.lib +0 -0
- data/vendor/local/lib/pkgconfig/gstreamer-0.10.pc +17 -0
- data/vendor/local/lib/pkgconfig/gstreamer-app-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-audio-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-base-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-cdda-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-check-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-controller-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-dataprotocol-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-fft-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-floatcast-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-interfaces-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-net-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-netbuffer-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-pbutils-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-plugins-bad-0.10.pc +12 -0
- data/vendor/local/lib/pkgconfig/gstreamer-plugins-base-0.10.pc +14 -0
- data/vendor/local/lib/pkgconfig/gstreamer-riff-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-rtp-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-rtsp-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-sdp-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-tag-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-video-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/libsoup-2.4.pc +12 -0
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/ogg.pc +14 -0
- data/vendor/local/lib/pkgconfig/speex.pc +15 -0
- data/vendor/local/lib/pkgconfig/speexdsp.pc +15 -0
- data/vendor/local/lib/pkgconfig/theora.pc +14 -0
- data/vendor/local/lib/pkgconfig/theoradec.pc +14 -0
- data/vendor/local/lib/pkgconfig/theoraenc.pc +14 -0
- data/vendor/local/lib/pkgconfig/vorbis.pc +14 -0
- data/vendor/local/lib/pkgconfig/vorbisenc.pc +14 -0
- data/vendor/local/lib/pkgconfig/vorbisfile.pc +14 -0
- data/vendor/local/libexec/gstreamer-0.10/gst-plugin-scanner.exe +0 -0
- data/vendor/local/manifest/jpeg-dev_8-1_win32.mft +18 -0
- data/vendor/local/manifest/jpeg_8-1_win32.mft +2 -0
- data/vendor/local/manifest/libsoup-dev_2.26.3-1_win32.mft +41 -0
- data/vendor/local/manifest/libsoup_2.26.3-1_win32.mft +2 -0
- data/vendor/local/manifest/libxml2-dev_2.7.7-1_win32.mft +267 -0
- data/vendor/local/manifest/libxml2_2.7.7-1_win32.mft +2 -0
- data/vendor/local/share/aclocal/gst-element-check-0.10.m4 +23 -0
- data/vendor/local/share/aclocal/libxml.m4 +188 -0
- data/vendor/local/share/aclocal/ogg.m4 +116 -0
- data/vendor/local/share/aclocal/speex.m4 +104 -0
- data/vendor/local/share/aclocal/vorbis.m4 +136 -0
- data/vendor/local/share/doc/libogg-1.3.0/framing.html +429 -0
- data/vendor/local/share/doc/libogg-1.3.0/index.html +105 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg-multiplex.html +446 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/bitpacking.html +103 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/datastructures.html +59 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/decoding.html +104 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/encoding.html +76 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/general.html +109 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/index.html +39 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet.html +75 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet_clear.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page.html +75 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_bos.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_checksum_set.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_continued.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_eos.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_granulepos.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_packets.html +75 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_pageno.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_serialno.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_version.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_clear.html +61 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_destroy.html +71 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_eos.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_flush.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_init.html +66 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetin.html +72 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetout.html +85 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetpeek.html +85 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pagein.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout.html +84 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout_fill.html +89 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset.html +61 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset_serialno.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_state.html +121 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_buffer.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_clear.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_destroy.html +68 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_init.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageout.html +77 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageseek.html +68 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_reset.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_state.html +77 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_wrote.html +73 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv1.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bits.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_buffer.html +66 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bytes.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_get_buffer.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look.html +66 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look1.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read1.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_readinit.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_reset.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_write.html +68 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writealign.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeclear.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writecopy.html +69 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeinit.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writetrunc.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/overview.html +44 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/reference.html +98 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/style.css +7 -0
- data/vendor/local/share/doc/libogg-1.3.0/oggstream.html +594 -0
- data/vendor/local/share/doc/libogg-1.3.0/rfc3533.txt +843 -0
- data/vendor/local/share/doc/libogg-1.3.0/rfc5334.txt +787 -0
- data/vendor/local/share/doc/libogg-1.3.0/skeleton.html +222 -0
- data/vendor/local/share/doc/libogg-1.3.0/stream.png +0 -0
- data/vendor/local/share/doc/libogg-1.3.0/vorbisword2.png +0 -0
- data/vendor/local/share/doc/libogg-1.3.0/white-ogg.png +0 -0
- data/vendor/local/share/doc/libogg-1.3.0/white-xifish.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/color.html +602 -0
- data/vendor/local/share/doc/libtheora-1.1.1/doxygen-build.stamp +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.txt +1400 -0
- data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.xml +1146 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/annotated.html +82 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/bc_s.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/classes.html +79 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/closed.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h.html +469 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h_source.html +233 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.css +949 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/files.html +75 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/functions.html +385 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/functions_vars.html +385 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals.html +502 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_defs.html +247 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_enum.html +90 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_eval.html +129 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_func.html +247 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_type.html +102 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_vars.html +84 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__basefuncs.html +568 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__decfuncs.html +402 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__encfuncs.html +352 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__oldfuncs.html +1662 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/index.html +76 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/modules.html +69 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/nav_f.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/nav_h.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/open.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__comment.html +158 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__huff__code.html +122 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__img__plane.html +155 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__info.html +397 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__info.html +171 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__ranges.html +139 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__stripe__callback.html +121 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__comment.html +157 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__info.html +527 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__state.html +142 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structyuv__buffer.html +243 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_a.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.gif +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_h.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_l.gif +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_r.gif +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_s.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tabs.css +59 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h.html +258 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h_source.html +283 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h.html +405 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h_source.html +146 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h.html +716 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h_source.html +155 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/Makefile +39 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/annotated.tex +14 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/codec_8h.tex +273 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/doxygen.sty +482 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/files.tex +7 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__basefuncs.tex +336 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__decfuncs.tex +223 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__encfuncs.tex +195 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__oldfuncs.tex +1046 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/index.tex +12 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/modules.tex +7 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/refman.tex +76 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__comment.tex +67 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__huff__code.tex +45 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__img__plane.tex +63 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__info.tex +189 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__info.tex +95 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__ranges.tex +54 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__stripe__callback.tex +45 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__comment.tex +67 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__info.tex +233 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__state.tex +45 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structyuv__buffer.tex +114 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/theora_8h.tex +191 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/theoradec_8h.tex +251 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/theoraenc_8h.tex +512 -0
- data/vendor/local/share/doc/libtheora-1.1.1/vp3-format.txt +1305 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/doxygen-build.stamp +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/eightphase.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/evenlsp.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/fish_xiph_org.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/floor1_inverse_dB_table.html +154 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/floorval.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/fourphase.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/framing.html +431 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/helper.html +239 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/index.html +114 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/index.html +44 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/overview.html +136 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/reference.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/return.html +79 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/style.css +7 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_blockout.html +79 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_buffer.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_headerout.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_init.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_wrote.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_addblock.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_flushpacket.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block.html +60 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_clear.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_init.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add.html +70 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add_tag.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_clear.html +69 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_init.html +72 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query.html +72 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query_count.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_commentheader_out.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_clear.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_state.html +57 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_granule_time.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_blocksize.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_clear.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_init.html +62 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_packet_blocksize.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis.html +70 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_blockin.html +69 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate.html +68 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate_p.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_headerin.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_idheader.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_init.html +69 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_lapout.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_pcmout.html +75 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_read.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_restart.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_trackonly.html +71 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_version_string.html +56 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/lspmap.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/oddlsp.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/oggstream.html +234 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/programming.html +554 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.txt +1459 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.xml +1176 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/squarepolar.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/stereo.html +419 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/stream.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/v-comment.html +285 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-clip.txt +139 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-errors.txt +103 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-fidelity.html +180 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis.html +234 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/changes.html +104 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/examples.html +133 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/index.html +40 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage2_arg.html +92 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage_arg.html +92 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/overview.html +382 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/reference.html +54 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/style.css +7 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_ctl.html +183 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init.html +88 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init_vbr.html +81 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_init.html +88 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_managed.html +102 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_vbr.html +90 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/OggVorbis_File.html +137 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/callbacks.html +121 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chaining_example_c.html +90 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chainingexample.html +175 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/crosslap.html +121 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/datastructures.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/decoding.html +92 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/example.html +208 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/exampleindex.html +39 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/fileinfo.html +95 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/index.html +49 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/initialization.html +118 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate.html +72 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate_instant.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_callbacks.html +117 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_clear.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_comment.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_crosslap.html +100 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_fopen.html +124 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_info.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open.html +183 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open_callbacks.html +147 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_lap.html +103 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page.html +84 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page_lap.html +112 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_tell.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_total.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek_lap.html +110 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_tell.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_total.html +68 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read.html +148 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_filter.html +114 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_float.html +105 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_seekable.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_serialnumber.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_streams.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test.html +101 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_callbacks.html +111 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_open.html +82 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek.html +82 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_lap.html +105 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page_lap.html +112 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_tell.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_total.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/overview.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/reference.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekexample.html +152 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking.html +107 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_example_c.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_test_c.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekingexample.html +203 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/style.css +7 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/threads.html +50 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/vorbisfile_example_c.html +106 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisword2.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/wait.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/white-xifish.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/Copyright +27 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/testHTML.c +880 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/testSAX.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/testXPath.c +227 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/xmllint.c +3722 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/DOM.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/FAQ.html +282 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/encoding.html +206 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xml +751 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xsl +174 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/book1.html +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/index.html +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/left.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-DOCBparser.html +51 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLparser.html +182 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLtree.html +73 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX.html +125 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX2.html +128 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-c14n.html +38 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-catalog.html +142 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-chvalid.html +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-debugXML.html +120 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-dict.html +49 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-encoding.html +118 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-entities.html +79 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-globals.html +152 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-hash.html +116 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-lib.html +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-list.html +120 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanoftp.html +92 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanohttp.html +65 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parser.html +555 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parserInternals.html +319 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-pattern.html +76 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-relaxng.html +162 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schemasInternals.html +373 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schematron.html +81 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-threads.html +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-tree.html +958 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-uri.html +73 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-valid.html +289 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xinclude.html +59 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xlink.html +82 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlIO.html +206 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlautomata.html +85 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlerror.html +862 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlexports.html +20 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmemory.html +107 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmodule.html +38 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlreader.html +327 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlregexp.html +143 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlsave.html +59 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemas.html +173 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemastypes.html +123 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlstring.html +108 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlunicode.html +512 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlversion.html +60 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlwriter.html +258 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpath.html +307 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpathInternals.html +394 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpointer.html +83 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/right.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io1.c +166 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io2.c +58 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io2.res +2 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/libxml.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse1.c +56 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse2.c +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse3.c +60 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse4.c +143 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.c +107 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.res +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader2.c +122 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.c +120 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.res +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.c +122 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.res +3 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/redhat.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/structure.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/test1.xml +1 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/test2.xml +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/test3.xml +39 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/testWriter.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.c +94 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.res +4 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.c +118 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.res +18 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tst.xml +7 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apa.html +8 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apb.html +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apc.html +82 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apd.html +76 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ape.html +78 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apf.html +67 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apg.html +75 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/aph.html +76 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/api.html +4 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s02.html +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s03.html +47 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s04.html +54 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s05.html +55 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s06.html +35 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s07.html +30 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s08.html +38 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s09.html +63 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddattribute.c +64 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddkeyword.c +75 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeconvert.c +73 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includegetattribute.c +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includekeyword.c +79 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includexpath.c +74 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ix01.html +1 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/xmltutorial.pdf +1336 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/w3c.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/writer.xml +2 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xml.html +5344 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.c +250 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.c +190 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.res +30 -0
- data/vendor/local/share/doc/speex/manual.pdf +0 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/glib-2.0/schemas/org.freedesktop.gstreamer-0.10.default-elements.gschema.xml +94 -0
- data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer10Bands.prs +174 -0
- data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer3Bands.prs +14 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/annotation-glossary.html +77 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-deprecated.html +132 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-full.html +5106 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/compiling.html +64 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp +1398 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp2 +1723 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsink.html +568 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsrc.html +664 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-encoding-profile.html +1606 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudio.html +400 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudioclock.html +317 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiofilter.html +165 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiomixerutils.html +144 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosink.html +202 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosrc.html +203 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosink.html +447 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosrc.html +402 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpaudiopayload.html +377 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpdepayload.html +260 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertppayload.html +469 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcddabasesrc.html +283 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalance.html +346 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalancechannel.html +156 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstdiscoverer.html +1457 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfft.html +130 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf32.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf64.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts16.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts32.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfloatcast.html +105 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixer.html +956 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixeroptions.html +108 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixertrack.html +259 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmultichannel.html +398 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnavigation.html +1166 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnetbuffer.html +498 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutils.html +225 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilscodecutils.html +469 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsdescriptions.html +297 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsinstallplugins.html +821 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsmissingplugins.html +510 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpropertyprobe.html +449 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstriff.html +2092 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstringbuffer.html +1480 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtcpbuffer.html +1985 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtpbuffer.html +1959 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtppayloads.html +391 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspbase64.html +121 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspconnection.html +1421 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspdefs.html +879 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspextension.html +104 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspmessage.html +988 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsprange.html +269 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsptransport.html +499 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspurl.html +315 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstsdpmessage.html +2802 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gststreamvolume.html +308 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttag.html +829 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagdemux.html +248 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagid3.html +252 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttaglanguagecodes.html +243 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagvorbis.html +272 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagxmp.html +119 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttuner.html +723 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunerchannel.html +264 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunernorm.html +99 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideo.html +1942 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideofilter.html +95 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideoorientation.html +406 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideosink.html +253 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstxoverlay.html +864 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-app.html +48 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-audio.html +68 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-base-utils.html +60 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-cdda.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-ffft.html +57 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-floatcast.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-interfaces.html +82 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-libs-hierarchy.html +76 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-netbuffer.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-plugins-base.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-riff.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtp.html +55 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtsp.html +61 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-sdp.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-tag.html +59 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-video.html +46 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.html +284 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.sgml +1973 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/GstPlayBaseBin.html +219 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch01.html +185 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch02.html +125 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch03.html +33 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp +684 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp2 +782 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html +215 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html +151 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html +216 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html +213 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html +463 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html +405 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html +338 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html +280 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html +233 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html +321 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html +257 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html +270 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html +303 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html +642 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html +375 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html +296 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html +171 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html +204 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html +233 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html +228 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html +216 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html +215 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html +256 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html +269 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html +976 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html +177 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html +255 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html +463 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html +1204 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-adder.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-alsa.html +84 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-app.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioconvert.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiorate.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioresample.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiotestsrc.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-cdparanoia.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-decodebin.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-encoding.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ffmpegcolorspace.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gdp.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gio.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gnomevfs.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-libvisual.html +104 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ogg.html +100 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-pango.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-playback.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-subparse.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-tcp.html +92 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-theora.html +84 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-typefindfunctions.html +71 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-uridecodebin.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-video4linux.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videorate.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videoscale.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videotestsrc.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-volume.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-vorbis.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ximagesink.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-xvimagesink.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html +233 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html +186 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html +187 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html +180 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html +187 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html +651 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html +243 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html +194 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html +416 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html +222 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html +253 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html +608 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html +320 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html +489 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html +663 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html +236 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html +176 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html +257 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html +199 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html +194 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html +332 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html +460 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.html +288 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.sgml +1059 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBin.html +1180 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBus.html +1127 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstChildProxy.html +575 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstClock.html +1846 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElement.html +3919 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElementFactory.html +1180 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstGhostPad.html +337 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstImplementsInterface.html +179 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndex.html +1449 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndexFactory.html +205 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstObject.html +1498 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPad.html +5192 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPadTemplate.html +624 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPipeline.html +626 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPlugin.html +1285 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPluginFeature.html +529 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPreset.html +437 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstRegistry.html +1021 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstSystemClock.html +161 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTagSetter.html +504 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTask.html +766 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTaskPool.html +291 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTypeFindFactory.html +290 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstXML.html +453 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/annotation-glossary.html +101 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-deprecated.html +188 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-full.html +7056 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-building.html +109 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-running.html +205 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp +1814 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp2 +2190 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-Gst.html +538 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstAtomicQueue.html +231 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBuffer.html +1458 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBufferList.html +1043 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstCaps.html +1646 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstDateTime.html +584 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstEvent.html +2195 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFilter.html +174 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFormat.html +349 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstGError.html +645 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstInfo.html +2466 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstIterator.html +1019 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMessage.html +3301 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMiniObject.html +662 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParamSpec.html +252 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParse.html +539 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstPoll.html +719 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstQuery.html +1963 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstSegment.html +816 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstStructure.html +2196 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTagList.html +3477 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTrace.html +591 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTypeFind.html +403 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUriHandler.html +635 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUtils.html +2334 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstValue.html +2442 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstVersion.html +140 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-gstconfig.html +175 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-hierarchy.html +60 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-support.html +42 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer.html +57 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.html +224 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.sgml +2441 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/libgstreamer.html +201 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstAdapter.html +745 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSink.html +1298 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSrc.html +844 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseTransform.html +875 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstCollectPads.html +1002 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstControlSource.html +407 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstController.html +936 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstInterpolationControlSource.html +363 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstLFOControlSource.html +222 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetClientClock.html +174 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetTimeProvider.html +172 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstPushSrc.html +108 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/annotation-glossary.html +89 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-deprecated.html +75 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-full.html +2227 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gdp-header.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-base.html +74 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-check.html +45 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-control.html +51 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-dataprotocol.html +33 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-hierarchy.html +49 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp +589 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp2 +615 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBaseParse.html +1004 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBitReader.html +1008 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBufferStraw.html +169 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteReader.html +3668 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteWriter.html +2233 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstCheck.html +585 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstControllerGObject.html +464 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstDataQueue.html +544 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstNetTimePacket.html +249 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstStreamConsistency.html +130 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstTypeFindHelper.html +364 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-gstdataprotocol.html +818 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs.html +132 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-net.html +47 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.html +129 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.sgml +707 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch01.html +83 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch02.html +38 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp +214 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp2 +244 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-capsfilter.html +184 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesink.html +358 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesrc.html +525 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsink.html +166 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsrc.html +210 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesink.html +202 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesrc.html +230 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-funnel.html +156 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-identity.html +310 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-input-selector.html +327 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-multiqueue.html +397 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-output-selector.html +183 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreelements.html +140 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreindexers.html +70 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue.html +425 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue2.html +308 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-tee.html +273 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-typefind.html +243 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-valve.html +179 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.html +95 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.sgml +338 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
- data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
- data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +371 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +119 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +208 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +177 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +762 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +673 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1542 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +337 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +950 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +560 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +132 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +299 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +277 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +474 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +529 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3529 -0
- data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
- data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
- data/vendor/local/share/license/gst-ffmpeg/AUTHORS +1 -0
- data/vendor/local/share/license/gst-ffmpeg/COPYING +339 -0
- data/vendor/local/share/license/gst-ffmpeg/COPYING.LIB +481 -0
- data/vendor/local/share/license/gst-plugins-bad/AUTHORS +21 -0
- data/vendor/local/share/license/gst-plugins-bad/COPYING +340 -0
- data/vendor/local/share/license/gst-plugins-bad/COPYING.LIB +481 -0
- data/vendor/local/share/license/gst-plugins-base/AUTHORS +23 -0
- data/vendor/local/share/license/gst-plugins-base/COPYING +340 -0
- data/vendor/local/share/license/gst-plugins-base/COPYING.LIB +481 -0
- data/vendor/local/share/license/gst-plugins-good/AUTHORS +21 -0
- data/vendor/local/share/license/gst-plugins-good/COPYING +504 -0
- data/vendor/local/share/license/gstreamer/AUTHORS +32 -0
- data/vendor/local/share/license/gstreamer/COPYING +481 -0
- data/vendor/local/share/license/libav/COPYING.GPLv2 +339 -0
- data/vendor/local/share/license/libav/COPYING.GPLv3 +674 -0
- data/vendor/local/share/license/libav/COPYING.LGPLv2.1 +504 -0
- data/vendor/local/share/license/libav/COPYING.LGPLv3 +165 -0
- data/vendor/local/share/license/libav/CREDITS +55 -0
- data/vendor/local/share/license/libav/LICENSE +46 -0
- data/vendor/local/share/license/libogg/AUTHORS +7 -0
- data/vendor/local/share/license/libogg/COPYING +28 -0
- data/vendor/local/share/license/libtheora/AUTHORS +49 -0
- data/vendor/local/share/license/libtheora/COPYING +28 -0
- data/vendor/local/share/license/libvorbis/AUTHORS +3 -0
- data/vendor/local/share/license/libvorbis/COPYING +28 -0
- data/vendor/local/share/license/speex/AUTHORS +18 -0
- data/vendor/local/share/license/speex/COPYING +35 -0
- data/vendor/local/share/man/man1/cjpeg.1 +325 -0
- data/vendor/local/share/man/man1/djpeg.1 +252 -0
- data/vendor/local/share/man/man1/gst-feedback-0.10.1 +38 -0
- data/vendor/local/share/man/man1/gst-inspect-0.10.1 +58 -0
- data/vendor/local/share/man/man1/gst-launch-0.10.1 +475 -0
- data/vendor/local/share/man/man1/gst-typefind-0.10.1 +40 -0
- data/vendor/local/share/man/man1/gst-visualise-0.10.1 +32 -0
- data/vendor/local/share/man/man1/gst-xmlinspect-0.10.1 +51 -0
- data/vendor/local/share/man/man1/gst-xmllaunch-0.10.1 +69 -0
- data/vendor/local/share/man/man1/jpegtran.1 +285 -0
- data/vendor/local/share/man/man1/rdjpgcom.1 +63 -0
- data/vendor/local/share/man/man1/speexdec.1 +78 -0
- data/vendor/local/share/man/man1/speexenc.1 +105 -0
- data/vendor/local/share/man/man1/wrjpgcom.1 +103 -0
- data/vendor/local/share/man/man1/xml2-config.1 +31 -0
- data/vendor/local/share/man/man1/xmlcatalog.1 +229 -0
- data/vendor/local/share/man/man1/xmllint.1 +427 -0
- data/vendor/local/share/man/man3/libxml.3 +71 -0
- data/vendor/local/src/tml/packaging/jpeg_8-1_win32.log +248 -0
- data/vendor/local/src/tml/packaging/jpeg_8-1_win32.sh +44 -0
- data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.log +1518 -0
- data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.sh +60 -0
- data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.log +1244 -0
- data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.sh +66 -0
- metadata +2025 -0
@@ -0,0 +1,109 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Building GStreamer and GStreamer Applications</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
+
<link rel="home" href="index.html" title="GStreamer 0.10 Core Reference Manual">
|
8
|
+
<link rel="up" href="gstreamer.html" title="GStreamer Overview">
|
9
|
+
<link rel="prev" href="gstreamer.html" title="GStreamer Overview">
|
10
|
+
<link rel="next" href="gst-running.html" title="Running GStreamer Applications">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
16
|
+
<td><a accesskey="p" href="gstreamer.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
17
|
+
<td><a accesskey="u" href="gstreamer.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
18
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
19
|
+
<th width="100%" align="center">GStreamer 0.10 Core Reference Manual</th>
|
20
|
+
<td><a accesskey="n" href="gst-running.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="refentry">
|
23
|
+
<a name="gst-building"></a><div class="titlepage"></div>
|
24
|
+
<div class="refnamediv"><table width="100%"><tr>
|
25
|
+
<td valign="top">
|
26
|
+
<h2><span class="refentrytitle">Building GStreamer and GStreamer Applications</span></h2>
|
27
|
+
<p>Building GStreamer and GStreamer Applications —
|
28
|
+
How to build the GStreamer framework and applications using it.
|
29
|
+
</p>
|
30
|
+
</td>
|
31
|
+
<td valign="top" align="right"></td>
|
32
|
+
</tr></table></div>
|
33
|
+
<div class="refsect1">
|
34
|
+
<a name="idp8271984"></a><h2>Building GStreamer on UNIX</h2>
|
35
|
+
<p>
|
36
|
+
On UNIX, GStreamer uses the standard GNU build system,
|
37
|
+
using <span class="application">autoconf</span> for package
|
38
|
+
configuration and resolving portability issues,
|
39
|
+
<span class="application">automake</span> for building makefiles
|
40
|
+
that comply with the GNU Coding Standards, and
|
41
|
+
<span class="application">libtool</span> for building shared
|
42
|
+
libraries on multiple platforms. The normal sequence for
|
43
|
+
compiling and installing the GStreamer library is thus:
|
44
|
+
|
45
|
+
</p>
|
46
|
+
<div class="literallayout"><p><br>
|
47
|
+
<strong class="userinput"><code>./configure</code></strong><br>
|
48
|
+
<strong class="userinput"><code>make</code></strong><br>
|
49
|
+
<strong class="userinput"><code>make install</code></strong><br>
|
50
|
+
</p></div>
|
51
|
+
<p>
|
52
|
+
</p>
|
53
|
+
<p>
|
54
|
+
The standard options provided by <span class="application">GNU
|
55
|
+
autoconf</span> may be passed to the
|
56
|
+
<span class="command"><strong>configure</strong></span> script. Please see the
|
57
|
+
<span class="application">autoconf</span> documentation or run
|
58
|
+
<span class="command"><strong>./configure --help</strong></span> for information about
|
59
|
+
the standard options.
|
60
|
+
</p>
|
61
|
+
<p>
|
62
|
+
In addition there are several options to activate or deactivate features.
|
63
|
+
E.g. passing <code class="option">--disable-gst-debug</code> to <span class="command"><strong>configure</strong></span>
|
64
|
+
will turn the debugging subsystem into a non-functional stub and remove all
|
65
|
+
macro based invocations from within the library (and anything compiled
|
66
|
+
against the library afterwards.)
|
67
|
+
</p>
|
68
|
+
<p>
|
69
|
+
If library size matters and one builds in a controlled environment, it is
|
70
|
+
also possible to totally remove subsystem code. This is intentionally not
|
71
|
+
offered as a configure option as it causes an ABI break. Code built against
|
72
|
+
a version of GStreamer without these modifications needs to be recompiled.
|
73
|
+
|
74
|
+
</p>
|
75
|
+
<div class="literallayout"><p><br>
|
76
|
+
<strong class="userinput"><code>make CFLAGS="-DGST_REMOVE_DEPRECATED -DGST_REMOVE_DISABLED"</code></strong><br>
|
77
|
+
</p></div>
|
78
|
+
<p>
|
79
|
+
|
80
|
+
</p>
|
81
|
+
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
|
82
|
+
<li class="listitem"><p>
|
83
|
+
<span class="symbol">GST_REMOVE_DEPRECATED</span> - Omit deprecated functions
|
84
|
+
from the library.
|
85
|
+
</p></li>
|
86
|
+
<li class="listitem"><p>
|
87
|
+
<span class="symbol">GST_REMOVE_DISABLED</span> - Omit stubs for disabled
|
88
|
+
subsystems from the library.
|
89
|
+
</p></li>
|
90
|
+
</ul></div>
|
91
|
+
<p>
|
92
|
+
</p>
|
93
|
+
</div>
|
94
|
+
<div class="refsect1">
|
95
|
+
<a name="idp9222880"></a><h2>Building GStreamer Applications</h2>
|
96
|
+
<p>
|
97
|
+
Applications and libraries can use <span class="command"><strong>pkg-config</strong></span> to get all the
|
98
|
+
needed compiler and linker flags to build against GStreamer. Please note that
|
99
|
+
GStreamer is split into several libraries itself.
|
100
|
+
<span class="command"><strong>pkg-config --list-all | grep gstreamer</strong></span> will list the
|
101
|
+
available libraries.
|
102
|
+
</p>
|
103
|
+
</div>
|
104
|
+
</div>
|
105
|
+
<div class="footer">
|
106
|
+
<hr>
|
107
|
+
Generated by GTK-Doc V1.17</div>
|
108
|
+
</body>
|
109
|
+
</html>
|
@@ -0,0 +1,205 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Running GStreamer Applications</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
+
<link rel="home" href="index.html" title="GStreamer 0.10 Core Reference Manual">
|
8
|
+
<link rel="up" href="gstreamer.html" title="GStreamer Overview">
|
9
|
+
<link rel="prev" href="gst-building.html" title="Building GStreamer and GStreamer Applications">
|
10
|
+
<link rel="next" href="libgstreamer.html" title="GStreamer Core Library">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
16
|
+
<td><a accesskey="p" href="gst-building.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
17
|
+
<td><a accesskey="u" href="gstreamer.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
18
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
19
|
+
<th width="100%" align="center">GStreamer 0.10 Core Reference Manual</th>
|
20
|
+
<td><a accesskey="n" href="libgstreamer.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="refentry">
|
23
|
+
<a name="gst-running"></a><div class="titlepage"></div>
|
24
|
+
<div class="refnamediv"><table width="100%"><tr>
|
25
|
+
<td valign="top">
|
26
|
+
<h2><span class="refentrytitle">Running GStreamer Applications</span></h2>
|
27
|
+
<p>Running GStreamer Applications —
|
28
|
+
How to run and debug your GStreamer application
|
29
|
+
</p>
|
30
|
+
</td>
|
31
|
+
<td valign="top" align="right"></td>
|
32
|
+
</tr></table></div>
|
33
|
+
<div class="refsect1">
|
34
|
+
<a name="idp5847152"></a><h2>Running and debugging GStreamer Applications</h2>
|
35
|
+
<div class="refsect2">
|
36
|
+
<a name="idp5796480"></a><h3>Environment variables</h3>
|
37
|
+
<p>
|
38
|
+
GStreamer inspects a few of environment variables in addition to standard
|
39
|
+
variables like <code class="envar">LANG</code>, <code class="envar">PATH</code> or <code class="envar">HOME</code>.
|
40
|
+
</p>
|
41
|
+
<p><a name="GST_PLUGIN_SYSTEM_PATH"></a><b><code class="envar">GST_PLUGIN_SYSTEM_PATH</code>. </b>
|
42
|
+
|
43
|
+
This environment variable can be set to a colon-separated list of paths.
|
44
|
+
If this variable is not set, GStreamer will fill in this list for you
|
45
|
+
with
|
46
|
+
</p>
|
47
|
+
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
|
48
|
+
<li class="listitem"><p>
|
49
|
+
plug-ins in the user's home directory. These are stored in a directory called
|
50
|
+
<code class="filename">plugins</code> inside the
|
51
|
+
<code class="filename">.gstreamer-0.10</code> directory in the user's
|
52
|
+
home directory.
|
53
|
+
</p></li>
|
54
|
+
<li class="listitem"><p>
|
55
|
+
plug-ins installed system-wide. On this system, they are stored in
|
56
|
+
<code class="filename">/usr/local/lib/gstreamer-0.10</code>.
|
57
|
+
</p></li>
|
58
|
+
</ul></div>
|
59
|
+
<p>
|
60
|
+
|
61
|
+
GStreamer will scan these paths for GStreamer plug-ins. These plug-ins will
|
62
|
+
be loaded after the plug-ins in the GST_PLUGIN_PATH variable below.
|
63
|
+
|
64
|
+
The paths are scanned in the given order. This allows a user to override
|
65
|
+
system-installed plug-ins with his own versions.
|
66
|
+
|
67
|
+
Setting this variable to an empty string will cause GStreamer not to scan any
|
68
|
+
system paths at all for plug-ins. This can be useful if you're running
|
69
|
+
uninstalled (for development purposes) or while running testsuites.
|
70
|
+
</p>
|
71
|
+
<p><a name="GST_PLUGIN_PATH"></a><b><code class="envar">GST_PLUGIN_PATH</code>. </b>
|
72
|
+
This environment variable can be set to a colon-separated list of paths.
|
73
|
+
GStreamer will scan these paths for GStreamer plug-ins. These plug-ins will
|
74
|
+
be loaded in addition to, and before, the plug-ins in the system paths.
|
75
|
+
</p>
|
76
|
+
<p><a name="GST_DEBUG"></a><b><code class="envar">GST_DEBUG</code>. </b>
|
77
|
+
If GStreamer has been configured with <code class="option">--enable-gst-debug=yes</code>,
|
78
|
+
this variable can be set to a list of debug options, which cause GStreamer
|
79
|
+
to print out different types of debugging information to stderr.
|
80
|
+
|
81
|
+
The variable takes a comma-separated list of "category_name:level" pairs
|
82
|
+
to set specific levels for the individual categories.
|
83
|
+
The level value ranges from 0 (nothing) to 5 (LOG).
|
84
|
+
</p>
|
85
|
+
<div class="variablelist"><table border="0">
|
86
|
+
<col align="left" valign="top">
|
87
|
+
<tbody>
|
88
|
+
<tr>
|
89
|
+
<td><p><span class="term">1 - <code class="option">ERROR</code></span></p></td>
|
90
|
+
<td><p>
|
91
|
+
Logs all fatal errors. These are errors that do not allow the core or elements
|
92
|
+
to perform the requested action. The application can still recover if
|
93
|
+
programmed to handle the conditions that triggered the error.
|
94
|
+
</p></td>
|
95
|
+
</tr>
|
96
|
+
<tr>
|
97
|
+
<td><p><span class="term">2 - <code class="option">WARNING</code></span></p></td>
|
98
|
+
<td><p>
|
99
|
+
Logs all warnings. Typically these are non-fatal, but user-visible problems
|
100
|
+
are expected to happen.
|
101
|
+
</p></td>
|
102
|
+
</tr>
|
103
|
+
<tr>
|
104
|
+
<td><p><span class="term">3 - <code class="option">INFO</code></span></p></td>
|
105
|
+
<td><p>
|
106
|
+
Logs all informational messages. These are typically used for events in
|
107
|
+
the system that only happen once, or are important and rare enough to be
|
108
|
+
logged at this level.
|
109
|
+
</p></td>
|
110
|
+
</tr>
|
111
|
+
<tr>
|
112
|
+
<td><p><span class="term">4 - <code class="option">DEBUG</code></span></p></td>
|
113
|
+
<td><p>
|
114
|
+
Logs all debug messages. These are general debug messages for events
|
115
|
+
that happen only a limited number of times during an object's lifetime;
|
116
|
+
these include setup, teardown, change of parameters, ...
|
117
|
+
</p></td>
|
118
|
+
</tr>
|
119
|
+
<tr>
|
120
|
+
<td><p><span class="term">5 - <code class="option">LOG</code></span></p></td>
|
121
|
+
<td><p>
|
122
|
+
Logs all log messages. These are messages for events
|
123
|
+
that happen repeatedly during an object's lifetime;
|
124
|
+
these include streaming and steady-state conditions.
|
125
|
+
</p></td>
|
126
|
+
</tr>
|
127
|
+
</tbody>
|
128
|
+
</table></div>
|
129
|
+
<p>
|
130
|
+
|
131
|
+
The category_name can contain "<code class="option">*"</code> as a wildcard.
|
132
|
+
|
133
|
+
For example, setting <code class="envar">GST_DEBUG</code> to
|
134
|
+
<code class="option">GST_AUTOPLUG:5,GST_ELEMENT_*:3</code>, will cause the
|
135
|
+
<code class="option">GST_AUTOPLUG</code> category to be logged at full
|
136
|
+
<code class="option">LOG</code> level, while all categories starting with
|
137
|
+
<code class="option">GST_ELEMENT_</code> will be logged at <code class="option">INFO</code> level.
|
138
|
+
|
139
|
+
To get all possible debug output, set
|
140
|
+
<code class="envar">GST_DEBUG</code>
|
141
|
+
to <code class="option">*:5</code>
|
142
|
+
</p>
|
143
|
+
<p><a name="GST_DEBUG_NO_COLOR"></a><b><code class="envar">GST_DEBUG_NO_COLOR</code>. </b>
|
144
|
+
Set this environment variable to any value ("1" typically) to switch off
|
145
|
+
colouring in GST_DEBUG output. This has the same effect as specifying the
|
146
|
+
<code class="option">--gst-debug-no-color</code> command line option to well-behaved
|
147
|
+
GStreamer applications (ie. those that pass command-line options correctly to
|
148
|
+
GStreamer).
|
149
|
+
This is particularly useful to reduce the size of debug output and also allows
|
150
|
+
for the output to be compressed much better than with colours turned on.
|
151
|
+
</p>
|
152
|
+
<p><a name="GST_DEBUG_OPTIONS"></a><b><code class="envar">GST_DEBUG_OPTIONS</code>. </b>
|
153
|
+
This environment variable can be used to tweak the behaviour of the debugging
|
154
|
+
system. Currently the only options supported are "pretty-tags" and "full-tags".
|
155
|
+
In "pretty-tags" mode (the default), taglists in the debug log will be
|
156
|
+
serialized so that only the first few and last few bytes of a buffer-type tag
|
157
|
+
will be serialized into the log, to avoid dumping hundreds of lines of useless
|
158
|
+
output into the log in case of large image tags and the like.
|
159
|
+
</p>
|
160
|
+
<p><a name="GST_DEBUG_DUMP_DOT_DIR"></a><b><code class="envar">GST_DEBUG_DUMP_DOT_DIR</code>. </b>
|
161
|
+
Set this environment variable to a path to turn on all
|
162
|
+
#GST_DEBUG_BIN_TO_DOT_FILE or #GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS calls
|
163
|
+
and have the dot files in that location.
|
164
|
+
</p>
|
165
|
+
<p><a name="GST_REGISTRY_FORK"></a><b><code class="envar">GST_REGISTRY_FORK</code>. </b>
|
166
|
+
Set this environment variable to "no" to prevent GStreamer from forking on
|
167
|
+
startup in order to update the plugin registry. This is useful for debugging
|
168
|
+
purposes, but should not be used under normal circumstances, since it means
|
169
|
+
that plugins may be loaded into memory even if they are not needed by the
|
170
|
+
application.
|
171
|
+
</p>
|
172
|
+
<p><a name="GST_REGISTRY_UPDATE"></a><b><code class="envar">GST_REGISTRY_UPDATE</code>. </b>
|
173
|
+
Set this environment variable to "no" to prevent GStreamer from updating the
|
174
|
+
plugin registry. This is useful for embedded device which is not updating the
|
175
|
+
plugins frequently, it will save time when doing gst_init().
|
176
|
+
</p>
|
177
|
+
<p><a name="ORC_CODE"></a><b><code class="envar">ORC_CODE</code>. </b>
|
178
|
+
Useful Orc environment variable. Set ORC_CODE=debug to enable debuggers
|
179
|
+
such as gdb to create useful backtraces from Orc-generated code. Set
|
180
|
+
ORC_CODE=backup or ORC_CODE=emulate if you suspect Orc's SIMD code
|
181
|
+
generator is producing incorrect code (Quite a few important
|
182
|
+
GStreamer plugins like videotestsrc, audioconvert or audioresample use Orc).
|
183
|
+
One can also combine flags like ORC_CODE=backup,debug.
|
184
|
+
</p>
|
185
|
+
<p><a name="G_DEBUG"></a><b><code class="envar">G_DEBUG</code>. </b>
|
186
|
+
Useful GLib environment variable. Set G_DEBUG=fatal_warnings to make
|
187
|
+
GStreamer programs abort when a critical warning such as an assertion failure
|
188
|
+
occurs. This is useful if you want to find out which part of the code caused
|
189
|
+
that warning to be triggered and under what circumstances. Simply set G_DEBUG
|
190
|
+
as mentioned above and run the program in gdb (or let it core dump). Then get
|
191
|
+
a stack trace in the usual way.
|
192
|
+
</p>
|
193
|
+
<p><a name="G_SLICE"></a><b><code class="envar">G_SLICE</code>. </b>
|
194
|
+
Useful GLib environment variable. Set G_SLICE=always-malloc when running
|
195
|
+
GStreamer programs in valgrind, or debugging memory leaks with other tools.
|
196
|
+
See the GLib API reference for more details.
|
197
|
+
</p>
|
198
|
+
</div>
|
199
|
+
</div>
|
200
|
+
</div>
|
201
|
+
<div class="footer">
|
202
|
+
<hr>
|
203
|
+
Generated by GTK-Doc V1.17</div>
|
204
|
+
</body>
|
205
|
+
</html>
|
@@ -0,0 +1,1814 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
|
3
|
+
<book xmlns="http://www.devhelp.net/book" title="GStreamer 0.10 Core Reference Manual" link="index.html" author="" name="gstreamer">
|
4
|
+
<chapters>
|
5
|
+
<sub name="GStreamer Overview" link="gstreamer.html">
|
6
|
+
<sub name="Building GStreamer and GStreamer Applications" link="gst-building.html"/>
|
7
|
+
<sub name="Running GStreamer Applications" link="gst-running.html"/>
|
8
|
+
</sub>
|
9
|
+
<sub name="GStreamer Core Library" link="libgstreamer.html">
|
10
|
+
<sub name="Gst" link="gstreamer-Gst.html"/>
|
11
|
+
<sub name="GstAtomicQueue" link="gstreamer-GstAtomicQueue.html"/>
|
12
|
+
<sub name="GstBin" link="GstBin.html"/>
|
13
|
+
<sub name="GstBuffer" link="gstreamer-GstBuffer.html"/>
|
14
|
+
<sub name="GstBufferList" link="gstreamer-GstBufferList.html"/>
|
15
|
+
<sub name="GstBus" link="GstBus.html"/>
|
16
|
+
<sub name="GstCaps" link="gstreamer-GstCaps.html"/>
|
17
|
+
<sub name="GstChildProxy" link="GstChildProxy.html"/>
|
18
|
+
<sub name="GstClock" link="GstClock.html"/>
|
19
|
+
<sub name="gstconfig" link="gstreamer-gstconfig.html"/>
|
20
|
+
<sub name="GstDateTime" link="gstreamer-GstDateTime.html"/>
|
21
|
+
<sub name="GstElement" link="GstElement.html"/>
|
22
|
+
<sub name="GstElementFactory" link="GstElementFactory.html"/>
|
23
|
+
<sub name="GstGError" link="gstreamer-GstGError.html"/>
|
24
|
+
<sub name="GstEvent" link="gstreamer-GstEvent.html"/>
|
25
|
+
<sub name="GstFilter" link="gstreamer-GstFilter.html"/>
|
26
|
+
<sub name="GstFormat" link="gstreamer-GstFormat.html"/>
|
27
|
+
<sub name="GstGhostPad" link="GstGhostPad.html"/>
|
28
|
+
<sub name="GstImplementsInterface" link="GstImplementsInterface.html"/>
|
29
|
+
<sub name="GstIndex" link="GstIndex.html"/>
|
30
|
+
<sub name="GstIndexFactory" link="GstIndexFactory.html"/>
|
31
|
+
<sub name="GstIterator" link="gstreamer-GstIterator.html"/>
|
32
|
+
<sub name="GstMessage" link="gstreamer-GstMessage.html"/>
|
33
|
+
<sub name="GstMiniObject" link="gstreamer-GstMiniObject.html"/>
|
34
|
+
<sub name="GstObject" link="GstObject.html"/>
|
35
|
+
<sub name="GstPad" link="GstPad.html"/>
|
36
|
+
<sub name="GstPadTemplate" link="GstPadTemplate.html"/>
|
37
|
+
<sub name="GstParamSpec" link="gstreamer-GstParamSpec.html"/>
|
38
|
+
<sub name="GstParse" link="gstreamer-GstParse.html"/>
|
39
|
+
<sub name="GstPipeline" link="GstPipeline.html"/>
|
40
|
+
<sub name="GstPlugin" link="GstPlugin.html"/>
|
41
|
+
<sub name="GstPluginFeature" link="GstPluginFeature.html"/>
|
42
|
+
<sub name="GstPoll" link="gstreamer-GstPoll.html"/>
|
43
|
+
<sub name="GstPreset" link="GstPreset.html"/>
|
44
|
+
<sub name="GstQuery" link="gstreamer-GstQuery.html"/>
|
45
|
+
<sub name="GstRegistry" link="GstRegistry.html"/>
|
46
|
+
<sub name="GstSegment" link="gstreamer-GstSegment.html"/>
|
47
|
+
<sub name="GstStructure" link="gstreamer-GstStructure.html"/>
|
48
|
+
<sub name="GstSystemClock" link="GstSystemClock.html"/>
|
49
|
+
<sub name="GstTagList" link="gstreamer-GstTagList.html"/>
|
50
|
+
<sub name="GstTagSetter" link="GstTagSetter.html"/>
|
51
|
+
<sub name="GstTask" link="GstTask.html"/>
|
52
|
+
<sub name="GstTaskPool" link="GstTaskPool.html"/>
|
53
|
+
<sub name="GstTypeFind" link="gstreamer-GstTypeFind.html"/>
|
54
|
+
<sub name="GstTypeFindFactory" link="GstTypeFindFactory.html"/>
|
55
|
+
<sub name="GstUriHandler" link="gstreamer-GstUriHandler.html"/>
|
56
|
+
<sub name="GstUtils" link="gstreamer-GstUtils.html"/>
|
57
|
+
<sub name="GstValue" link="gstreamer-GstValue.html"/>
|
58
|
+
<sub name="GstVersion" link="gstreamer-GstVersion.html"/>
|
59
|
+
<sub name="GstXML" link="GstXML.html"/>
|
60
|
+
</sub>
|
61
|
+
<sub name="GStreamer Core Support" link="gstreamer-support.html">
|
62
|
+
<sub name="GstInfo" link="gstreamer-GstInfo.html"/>
|
63
|
+
<sub name="GstTrace" link="gstreamer-GstTrace.html"/>
|
64
|
+
</sub>
|
65
|
+
<sub name="Object Hierarchy" link="gstreamer-hierarchy.html"/>
|
66
|
+
<sub name="API Index" link="api-index-full.html"/>
|
67
|
+
<sub name="Index of deprecated API" link="api-index-deprecated.html"/>
|
68
|
+
<sub name="Annotation Glossary" link="annotation-glossary.html"/>
|
69
|
+
</chapters>
|
70
|
+
<functions>
|
71
|
+
<function name="Environment variables" link="gst-running.html#idp5796480"/>
|
72
|
+
<function name="gst_init ()" link="gstreamer-Gst.html#gst-init"/>
|
73
|
+
<function name="gst_init_check ()" link="gstreamer-Gst.html#gst-init-check"/>
|
74
|
+
<function name="gst_init_get_option_group ()" link="gstreamer-Gst.html#gst-init-get-option-group"/>
|
75
|
+
<function name="gst_is_initialized ()" link="gstreamer-Gst.html#gst-is-initialized"/>
|
76
|
+
<function name="gst_deinit ()" link="gstreamer-Gst.html#gst-deinit"/>
|
77
|
+
<function name="gst_version ()" link="gstreamer-Gst.html#gst-version"/>
|
78
|
+
<function name="gst_version_string ()" link="gstreamer-Gst.html#gst-version-string"/>
|
79
|
+
<function name="gst_segtrap_is_enabled ()" link="gstreamer-Gst.html#gst-segtrap-is-enabled"/>
|
80
|
+
<function name="gst_segtrap_set_enabled ()" link="gstreamer-Gst.html#gst-segtrap-set-enabled"/>
|
81
|
+
<function name="gst_registry_fork_is_enabled ()" link="gstreamer-Gst.html#gst-registry-fork-is-enabled"/>
|
82
|
+
<function name="gst_registry_fork_set_enabled ()" link="gstreamer-Gst.html#gst-registry-fork-set-enabled"/>
|
83
|
+
<function name="gst_update_registry ()" link="gstreamer-Gst.html#gst-update-registry"/>
|
84
|
+
<function name="GstAtomicQueue" link="gstreamer-GstAtomicQueue.html#GstAtomicQueue"/>
|
85
|
+
<function name="gst_atomic_queue_new ()" link="gstreamer-GstAtomicQueue.html#gst-atomic-queue-new"/>
|
86
|
+
<function name="gst_atomic_queue_ref ()" link="gstreamer-GstAtomicQueue.html#gst-atomic-queue-ref"/>
|
87
|
+
<function name="gst_atomic_queue_unref ()" link="gstreamer-GstAtomicQueue.html#gst-atomic-queue-unref"/>
|
88
|
+
<function name="gst_atomic_queue_push ()" link="gstreamer-GstAtomicQueue.html#gst-atomic-queue-push"/>
|
89
|
+
<function name="gst_atomic_queue_peek ()" link="gstreamer-GstAtomicQueue.html#gst-atomic-queue-peek"/>
|
90
|
+
<function name="gst_atomic_queue_pop ()" link="gstreamer-GstAtomicQueue.html#gst-atomic-queue-pop"/>
|
91
|
+
<function name="gst_atomic_queue_length ()" link="gstreamer-GstAtomicQueue.html#gst-atomic-queue-length"/>
|
92
|
+
<function name="Notes" link="GstBin.html#idp7250576"/>
|
93
|
+
<function name="struct GstBin" link="GstBin.html#GstBin-struct"/>
|
94
|
+
<function name="struct GstBinClass" link="GstBin.html#GstBinClass"/>
|
95
|
+
<function name="gst_bin_new ()" link="GstBin.html#gst-bin-new"/>
|
96
|
+
<function name="gst_bin_add ()" link="GstBin.html#gst-bin-add"/>
|
97
|
+
<function name="gst_bin_remove ()" link="GstBin.html#gst-bin-remove"/>
|
98
|
+
<function name="gst_bin_get_by_name ()" link="GstBin.html#gst-bin-get-by-name"/>
|
99
|
+
<function name="gst_bin_get_by_name_recurse_up ()" link="GstBin.html#gst-bin-get-by-name-recurse-up"/>
|
100
|
+
<function name="gst_bin_get_by_interface ()" link="GstBin.html#gst-bin-get-by-interface"/>
|
101
|
+
<function name="gst_bin_iterate_elements ()" link="GstBin.html#gst-bin-iterate-elements"/>
|
102
|
+
<function name="gst_bin_iterate_recurse ()" link="GstBin.html#gst-bin-iterate-recurse"/>
|
103
|
+
<function name="gst_bin_iterate_sinks ()" link="GstBin.html#gst-bin-iterate-sinks"/>
|
104
|
+
<function name="gst_bin_iterate_sorted ()" link="GstBin.html#gst-bin-iterate-sorted"/>
|
105
|
+
<function name="gst_bin_iterate_sources ()" link="GstBin.html#gst-bin-iterate-sources"/>
|
106
|
+
<function name="gst_bin_iterate_all_by_interface ()" link="GstBin.html#gst-bin-iterate-all-by-interface"/>
|
107
|
+
<function name="gst_bin_recalculate_latency ()" link="GstBin.html#gst-bin-recalculate-latency"/>
|
108
|
+
<function name="gst_bin_add_many ()" link="GstBin.html#gst-bin-add-many"/>
|
109
|
+
<function name="gst_bin_remove_many ()" link="GstBin.html#gst-bin-remove-many"/>
|
110
|
+
<function name="gst_bin_find_unlinked_pad ()" link="GstBin.html#gst-bin-find-unlinked-pad"/>
|
111
|
+
<function name="gst_bin_find_unconnected_pad ()" link="GstBin.html#gst-bin-find-unconnected-pad"/>
|
112
|
+
<function name="enum GstBinFlags" link="GstBin.html#GstBinFlags"/>
|
113
|
+
<function name="GST_BIN_CHILDREN()" link="GstBin.html#GST-BIN-CHILDREN:CAPS"/>
|
114
|
+
<function name="GST_BIN_CHILDREN_COOKIE()" link="GstBin.html#GST-BIN-CHILDREN-COOKIE:CAPS"/>
|
115
|
+
<function name="GST_BIN_NUMCHILDREN()" link="GstBin.html#GST-BIN-NUMCHILDREN:CAPS"/>
|
116
|
+
<function name="The "async-handling" property" link="GstBin.html#GstBin--async-handling"/>
|
117
|
+
<function name="The "message-forward" property" link="GstBin.html#GstBin--message-forward"/>
|
118
|
+
<function name="The "do-latency" signal" link="GstBin.html#GstBin-do-latency"/>
|
119
|
+
<function name="The "element-added" signal" link="GstBin.html#GstBin-element-added"/>
|
120
|
+
<function name="The "element-removed" signal" link="GstBin.html#GstBin-element-removed"/>
|
121
|
+
<function name="struct GstBuffer" link="gstreamer-GstBuffer.html#GstBuffer"/>
|
122
|
+
<function name="enum GstBufferFlag" link="gstreamer-GstBuffer.html#GstBufferFlag"/>
|
123
|
+
<function name="enum GstBufferCopyFlags" link="gstreamer-GstBuffer.html#GstBufferCopyFlags"/>
|
124
|
+
<function name="GST_BUFFER_FLAGS()" link="gstreamer-GstBuffer.html#GST-BUFFER-FLAGS:CAPS"/>
|
125
|
+
<function name="GST_BUFFER_FLAG_IS_SET()" link="gstreamer-GstBuffer.html#GST-BUFFER-FLAG-IS-SET:CAPS"/>
|
126
|
+
<function name="GST_BUFFER_FLAG_SET()" link="gstreamer-GstBuffer.html#GST-BUFFER-FLAG-SET:CAPS"/>
|
127
|
+
<function name="GST_BUFFER_FLAG_UNSET()" link="gstreamer-GstBuffer.html#GST-BUFFER-FLAG-UNSET:CAPS"/>
|
128
|
+
<function name="GST_BUFFER_DATA()" link="gstreamer-GstBuffer.html#GST-BUFFER-DATA:CAPS"/>
|
129
|
+
<function name="GST_BUFFER_MALLOCDATA()" link="gstreamer-GstBuffer.html#GST-BUFFER-MALLOCDATA:CAPS"/>
|
130
|
+
<function name="GST_BUFFER_FREE_FUNC()" link="gstreamer-GstBuffer.html#GST-BUFFER-FREE-FUNC:CAPS"/>
|
131
|
+
<function name="GST_BUFFER_SIZE()" link="gstreamer-GstBuffer.html#GST-BUFFER-SIZE:CAPS"/>
|
132
|
+
<function name="GST_BUFFER_TIMESTAMP()" link="gstreamer-GstBuffer.html#GST-BUFFER-TIMESTAMP:CAPS"/>
|
133
|
+
<function name="GST_BUFFER_DURATION()" link="gstreamer-GstBuffer.html#GST-BUFFER-DURATION:CAPS"/>
|
134
|
+
<function name="GST_BUFFER_CAPS()" link="gstreamer-GstBuffer.html#GST-BUFFER-CAPS"/>
|
135
|
+
<function name="GST_BUFFER_OFFSET()" link="gstreamer-GstBuffer.html#GST-BUFFER-OFFSET:CAPS"/>
|
136
|
+
<function name="GST_BUFFER_OFFSET_END()" link="gstreamer-GstBuffer.html#GST-BUFFER-OFFSET-END:CAPS"/>
|
137
|
+
<function name="GST_BUFFER_OFFSET_NONE" link="gstreamer-GstBuffer.html#GST-BUFFER-OFFSET-NONE:CAPS"/>
|
138
|
+
<function name="GST_BUFFER_DURATION_IS_VALID()" link="gstreamer-GstBuffer.html#GST-BUFFER-DURATION-IS-VALID:CAPS"/>
|
139
|
+
<function name="GST_BUFFER_TIMESTAMP_IS_VALID()" link="gstreamer-GstBuffer.html#GST-BUFFER-TIMESTAMP-IS-VALID:CAPS"/>
|
140
|
+
<function name="GST_BUFFER_OFFSET_IS_VALID()" link="gstreamer-GstBuffer.html#GST-BUFFER-OFFSET-IS-VALID:CAPS"/>
|
141
|
+
<function name="GST_BUFFER_OFFSET_END_IS_VALID()" link="gstreamer-GstBuffer.html#GST-BUFFER-OFFSET-END-IS-VALID:CAPS"/>
|
142
|
+
<function name="GST_BUFFER_IS_DISCONT()" link="gstreamer-GstBuffer.html#GST-BUFFER-IS-DISCONT:CAPS"/>
|
143
|
+
<function name="GST_BUFFER_TRACE_NAME" link="gstreamer-GstBuffer.html#GST-BUFFER-TRACE-NAME:CAPS"/>
|
144
|
+
<function name="gst_buffer_new ()" link="gstreamer-GstBuffer.html#gst-buffer-new"/>
|
145
|
+
<function name="gst_buffer_new_and_alloc ()" link="gstreamer-GstBuffer.html#gst-buffer-new-and-alloc"/>
|
146
|
+
<function name="gst_buffer_try_new_and_alloc ()" link="gstreamer-GstBuffer.html#gst-buffer-try-new-and-alloc"/>
|
147
|
+
<function name="gst_buffer_ref ()" link="gstreamer-GstBuffer.html#gst-buffer-ref"/>
|
148
|
+
<function name="gst_buffer_unref ()" link="gstreamer-GstBuffer.html#gst-buffer-unref"/>
|
149
|
+
<function name="gst_buffer_set_data()" link="gstreamer-GstBuffer.html#gst-buffer-set-data"/>
|
150
|
+
<function name="gst_buffer_copy ()" link="gstreamer-GstBuffer.html#gst-buffer-copy"/>
|
151
|
+
<function name="GST_BUFFER_COPY_ALL" link="gstreamer-GstBuffer.html#GST-BUFFER-COPY-ALL:CAPS"/>
|
152
|
+
<function name="gst_buffer_copy_metadata ()" link="gstreamer-GstBuffer.html#gst-buffer-copy-metadata"/>
|
153
|
+
<function name="gst_buffer_is_writable()" link="gstreamer-GstBuffer.html#gst-buffer-is-writable"/>
|
154
|
+
<function name="gst_buffer_make_writable()" link="gstreamer-GstBuffer.html#gst-buffer-make-writable"/>
|
155
|
+
<function name="gst_buffer_is_metadata_writable ()" link="gstreamer-GstBuffer.html#gst-buffer-is-metadata-writable"/>
|
156
|
+
<function name="gst_buffer_make_metadata_writable ()" link="gstreamer-GstBuffer.html#gst-buffer-make-metadata-writable"/>
|
157
|
+
<function name="gst_buffer_replace()" link="gstreamer-GstBuffer.html#gst-buffer-replace"/>
|
158
|
+
<function name="gst_buffer_get_caps ()" link="gstreamer-GstBuffer.html#gst-buffer-get-caps"/>
|
159
|
+
<function name="gst_buffer_set_caps ()" link="gstreamer-GstBuffer.html#gst-buffer-set-caps"/>
|
160
|
+
<function name="gst_buffer_create_sub ()" link="gstreamer-GstBuffer.html#gst-buffer-create-sub"/>
|
161
|
+
<function name="gst_buffer_is_span_fast ()" link="gstreamer-GstBuffer.html#gst-buffer-is-span-fast"/>
|
162
|
+
<function name="gst_buffer_span ()" link="gstreamer-GstBuffer.html#gst-buffer-span"/>
|
163
|
+
<function name="gst_buffer_stamp ()" link="gstreamer-GstBuffer.html#gst-buffer-stamp"/>
|
164
|
+
<function name="gst_buffer_join ()" link="gstreamer-GstBuffer.html#gst-buffer-join"/>
|
165
|
+
<function name="gst_buffer_merge ()" link="gstreamer-GstBuffer.html#gst-buffer-merge"/>
|
166
|
+
<function name="GstBufferList" link="gstreamer-GstBufferList.html#GstBufferList"/>
|
167
|
+
<function name="GstBufferListIterator" link="gstreamer-GstBufferList.html#GstBufferListIterator"/>
|
168
|
+
<function name="GstBufferListDoFunction ()" link="gstreamer-GstBufferList.html#GstBufferListDoFunction"/>
|
169
|
+
<function name="gst_buffer_list_new ()" link="gstreamer-GstBufferList.html#gst-buffer-list-new"/>
|
170
|
+
<function name="gst_buffer_list_ref ()" link="gstreamer-GstBufferList.html#gst-buffer-list-ref"/>
|
171
|
+
<function name="gst_buffer_list_unref ()" link="gstreamer-GstBufferList.html#gst-buffer-list-unref"/>
|
172
|
+
<function name="gst_buffer_list_copy ()" link="gstreamer-GstBufferList.html#gst-buffer-list-copy"/>
|
173
|
+
<function name="gst_buffer_list_is_writable()" link="gstreamer-GstBufferList.html#gst-buffer-list-is-writable"/>
|
174
|
+
<function name="gst_buffer_list_make_writable()" link="gstreamer-GstBufferList.html#gst-buffer-list-make-writable"/>
|
175
|
+
<function name="gst_buffer_list_n_groups ()" link="gstreamer-GstBufferList.html#gst-buffer-list-n-groups"/>
|
176
|
+
<function name="enum GstBufferListItem" link="gstreamer-GstBufferList.html#GstBufferListItem"/>
|
177
|
+
<function name="GstBufferListFunc ()" link="gstreamer-GstBufferList.html#GstBufferListFunc"/>
|
178
|
+
<function name="gst_buffer_list_foreach ()" link="gstreamer-GstBufferList.html#gst-buffer-list-foreach"/>
|
179
|
+
<function name="gst_buffer_list_get ()" link="gstreamer-GstBufferList.html#gst-buffer-list-get"/>
|
180
|
+
<function name="gst_buffer_list_iterate ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterate"/>
|
181
|
+
<function name="gst_buffer_list_iterator_free ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-free"/>
|
182
|
+
<function name="gst_buffer_list_iterator_n_buffers ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-n-buffers"/>
|
183
|
+
<function name="gst_buffer_list_iterator_add ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-add"/>
|
184
|
+
<function name="gst_buffer_list_iterator_add_group ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-add-group"/>
|
185
|
+
<function name="gst_buffer_list_iterator_add_list ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-add-list"/>
|
186
|
+
<function name="gst_buffer_list_iterator_next ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-next"/>
|
187
|
+
<function name="gst_buffer_list_iterator_next_group ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-next-group"/>
|
188
|
+
<function name="gst_buffer_list_iterator_remove ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-remove"/>
|
189
|
+
<function name="gst_buffer_list_iterator_steal ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-steal"/>
|
190
|
+
<function name="gst_buffer_list_iterator_take ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-take"/>
|
191
|
+
<function name="gst_buffer_list_iterator_do ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-do"/>
|
192
|
+
<function name="gst_buffer_list_iterator_merge_group ()" link="gstreamer-GstBufferList.html#gst-buffer-list-iterator-merge-group"/>
|
193
|
+
<function name="struct GstBus" link="GstBus.html#GstBus-struct"/>
|
194
|
+
<function name="enum GstBusFlags" link="GstBus.html#GstBusFlags"/>
|
195
|
+
<function name="enum GstBusSyncReply" link="GstBus.html#GstBusSyncReply"/>
|
196
|
+
<function name="GstBusFunc ()" link="GstBus.html#GstBusFunc"/>
|
197
|
+
<function name="GstBusSyncHandler ()" link="GstBus.html#GstBusSyncHandler"/>
|
198
|
+
<function name="gst_bus_new ()" link="GstBus.html#gst-bus-new"/>
|
199
|
+
<function name="gst_bus_post ()" link="GstBus.html#gst-bus-post"/>
|
200
|
+
<function name="gst_bus_have_pending ()" link="GstBus.html#gst-bus-have-pending"/>
|
201
|
+
<function name="gst_bus_peek ()" link="GstBus.html#gst-bus-peek"/>
|
202
|
+
<function name="gst_bus_pop ()" link="GstBus.html#gst-bus-pop"/>
|
203
|
+
<function name="gst_bus_pop_filtered ()" link="GstBus.html#gst-bus-pop-filtered"/>
|
204
|
+
<function name="gst_bus_timed_pop ()" link="GstBus.html#gst-bus-timed-pop"/>
|
205
|
+
<function name="gst_bus_timed_pop_filtered ()" link="GstBus.html#gst-bus-timed-pop-filtered"/>
|
206
|
+
<function name="gst_bus_set_flushing ()" link="GstBus.html#gst-bus-set-flushing"/>
|
207
|
+
<function name="gst_bus_set_sync_handler ()" link="GstBus.html#gst-bus-set-sync-handler"/>
|
208
|
+
<function name="gst_bus_sync_signal_handler ()" link="GstBus.html#gst-bus-sync-signal-handler"/>
|
209
|
+
<function name="gst_bus_create_watch ()" link="GstBus.html#gst-bus-create-watch"/>
|
210
|
+
<function name="gst_bus_add_watch_full ()" link="GstBus.html#gst-bus-add-watch-full"/>
|
211
|
+
<function name="gst_bus_add_watch ()" link="GstBus.html#gst-bus-add-watch"/>
|
212
|
+
<function name="gst_bus_disable_sync_message_emission ()" link="GstBus.html#gst-bus-disable-sync-message-emission"/>
|
213
|
+
<function name="gst_bus_enable_sync_message_emission ()" link="GstBus.html#gst-bus-enable-sync-message-emission"/>
|
214
|
+
<function name="gst_bus_async_signal_func ()" link="GstBus.html#gst-bus-async-signal-func"/>
|
215
|
+
<function name="gst_bus_add_signal_watch ()" link="GstBus.html#gst-bus-add-signal-watch"/>
|
216
|
+
<function name="gst_bus_add_signal_watch_full ()" link="GstBus.html#gst-bus-add-signal-watch-full"/>
|
217
|
+
<function name="gst_bus_remove_signal_watch ()" link="GstBus.html#gst-bus-remove-signal-watch"/>
|
218
|
+
<function name="gst_bus_poll ()" link="GstBus.html#gst-bus-poll"/>
|
219
|
+
<function name="The "message" signal" link="GstBus.html#GstBus-message"/>
|
220
|
+
<function name="The "sync-message" signal" link="GstBus.html#GstBus-sync-message"/>
|
221
|
+
<function name="struct GstCaps" link="gstreamer-GstCaps.html#GstCaps"/>
|
222
|
+
<function name="struct GstStaticCaps" link="gstreamer-GstCaps.html#GstStaticCaps"/>
|
223
|
+
<function name="enum GstCapsIntersectMode" link="gstreamer-GstCaps.html#GstCapsIntersectMode"/>
|
224
|
+
<function name="enum GstCapsFlags" link="gstreamer-GstCaps.html#GstCapsFlags"/>
|
225
|
+
<function name="GST_CAPS_ANY" link="gstreamer-GstCaps.html#GST-CAPS-ANY:CAPS"/>
|
226
|
+
<function name="GST_CAPS_NONE" link="gstreamer-GstCaps.html#GST-CAPS-NONE:CAPS"/>
|
227
|
+
<function name="GST_CAPS_REFCOUNT()" link="gstreamer-GstCaps.html#GST-CAPS-REFCOUNT:CAPS"/>
|
228
|
+
<function name="GST_CAPS_REFCOUNT_VALUE()" link="gstreamer-GstCaps.html#GST-CAPS-REFCOUNT-VALUE:CAPS"/>
|
229
|
+
<function name="GST_STATIC_CAPS_ANY" link="gstreamer-GstCaps.html#GST-STATIC-CAPS-ANY:CAPS"/>
|
230
|
+
<function name="GST_STATIC_CAPS_NONE" link="gstreamer-GstCaps.html#GST-STATIC-CAPS-NONE:CAPS"/>
|
231
|
+
<function name="GST_CAPS_IS_SIMPLE()" link="gstreamer-GstCaps.html#GST-CAPS-IS-SIMPLE:CAPS"/>
|
232
|
+
<function name="GST_DEBUG_CAPS()" link="gstreamer-GstCaps.html#GST-DEBUG-CAPS"/>
|
233
|
+
<function name="GST_STATIC_CAPS()" link="gstreamer-GstCaps.html#GST-STATIC-CAPS"/>
|
234
|
+
<function name="gst_caps_new_empty ()" link="gstreamer-GstCaps.html#gst-caps-new-empty"/>
|
235
|
+
<function name="gst_caps_new_any ()" link="gstreamer-GstCaps.html#gst-caps-new-any"/>
|
236
|
+
<function name="gst_caps_new_simple ()" link="gstreamer-GstCaps.html#gst-caps-new-simple"/>
|
237
|
+
<function name="gst_caps_new_full ()" link="gstreamer-GstCaps.html#gst-caps-new-full"/>
|
238
|
+
<function name="gst_caps_new_full_valist ()" link="gstreamer-GstCaps.html#gst-caps-new-full-valist"/>
|
239
|
+
<function name="gst_caps_copy ()" link="gstreamer-GstCaps.html#gst-caps-copy"/>
|
240
|
+
<function name="gst_caps_copy_nth ()" link="gstreamer-GstCaps.html#gst-caps-copy-nth"/>
|
241
|
+
<function name="gst_static_caps_get ()" link="gstreamer-GstCaps.html#gst-static-caps-get"/>
|
242
|
+
<function name="gst_caps_append ()" link="gstreamer-GstCaps.html#gst-caps-append"/>
|
243
|
+
<function name="gst_caps_merge ()" link="gstreamer-GstCaps.html#gst-caps-merge"/>
|
244
|
+
<function name="gst_caps_append_structure ()" link="gstreamer-GstCaps.html#gst-caps-append-structure"/>
|
245
|
+
<function name="gst_caps_remove_structure ()" link="gstreamer-GstCaps.html#gst-caps-remove-structure"/>
|
246
|
+
<function name="gst_caps_steal_structure ()" link="gstreamer-GstCaps.html#gst-caps-steal-structure"/>
|
247
|
+
<function name="gst_caps_merge_structure ()" link="gstreamer-GstCaps.html#gst-caps-merge-structure"/>
|
248
|
+
<function name="gst_caps_get_size ()" link="gstreamer-GstCaps.html#gst-caps-get-size"/>
|
249
|
+
<function name="gst_caps_get_structure ()" link="gstreamer-GstCaps.html#gst-caps-get-structure"/>
|
250
|
+
<function name="gst_caps_set_value ()" link="gstreamer-GstCaps.html#gst-caps-set-value"/>
|
251
|
+
<function name="gst_caps_set_simple ()" link="gstreamer-GstCaps.html#gst-caps-set-simple"/>
|
252
|
+
<function name="gst_caps_set_simple_valist ()" link="gstreamer-GstCaps.html#gst-caps-set-simple-valist"/>
|
253
|
+
<function name="gst_caps_is_any ()" link="gstreamer-GstCaps.html#gst-caps-is-any"/>
|
254
|
+
<function name="gst_caps_is_empty ()" link="gstreamer-GstCaps.html#gst-caps-is-empty"/>
|
255
|
+
<function name="gst_caps_is_fixed ()" link="gstreamer-GstCaps.html#gst-caps-is-fixed"/>
|
256
|
+
<function name="gst_caps_is_equal ()" link="gstreamer-GstCaps.html#gst-caps-is-equal"/>
|
257
|
+
<function name="gst_caps_is_equal_fixed ()" link="gstreamer-GstCaps.html#gst-caps-is-equal-fixed"/>
|
258
|
+
<function name="gst_caps_is_always_compatible ()" link="gstreamer-GstCaps.html#gst-caps-is-always-compatible"/>
|
259
|
+
<function name="gst_caps_is_subset ()" link="gstreamer-GstCaps.html#gst-caps-is-subset"/>
|
260
|
+
<function name="gst_caps_can_intersect ()" link="gstreamer-GstCaps.html#gst-caps-can-intersect"/>
|
261
|
+
<function name="gst_caps_intersect ()" link="gstreamer-GstCaps.html#gst-caps-intersect"/>
|
262
|
+
<function name="gst_caps_intersect_full ()" link="gstreamer-GstCaps.html#gst-caps-intersect-full"/>
|
263
|
+
<function name="gst_caps_union ()" link="gstreamer-GstCaps.html#gst-caps-union"/>
|
264
|
+
<function name="gst_caps_normalize ()" link="gstreamer-GstCaps.html#gst-caps-normalize"/>
|
265
|
+
<function name="gst_caps_do_simplify ()" link="gstreamer-GstCaps.html#gst-caps-do-simplify"/>
|
266
|
+
<function name="gst_caps_save_thyself ()" link="gstreamer-GstCaps.html#gst-caps-save-thyself"/>
|
267
|
+
<function name="gst_caps_load_thyself ()" link="gstreamer-GstCaps.html#gst-caps-load-thyself"/>
|
268
|
+
<function name="gst_caps_replace ()" link="gstreamer-GstCaps.html#gst-caps-replace"/>
|
269
|
+
<function name="gst_caps_to_string ()" link="gstreamer-GstCaps.html#gst-caps-to-string"/>
|
270
|
+
<function name="gst_caps_from_string ()" link="gstreamer-GstCaps.html#gst-caps-from-string"/>
|
271
|
+
<function name="gst_caps_subtract ()" link="gstreamer-GstCaps.html#gst-caps-subtract"/>
|
272
|
+
<function name="gst_caps_make_writable ()" link="gstreamer-GstCaps.html#gst-caps-make-writable"/>
|
273
|
+
<function name="gst_caps_ref ()" link="gstreamer-GstCaps.html#gst-caps-ref"/>
|
274
|
+
<function name="gst_caps_truncate ()" link="gstreamer-GstCaps.html#gst-caps-truncate"/>
|
275
|
+
<function name="gst_caps_unref ()" link="gstreamer-GstCaps.html#gst-caps-unref"/>
|
276
|
+
<function name="GstChildProxy" link="GstChildProxy.html#GstChildProxy-struct"/>
|
277
|
+
<function name="struct GstChildProxyInterface" link="GstChildProxy.html#GstChildProxyInterface"/>
|
278
|
+
<function name="gst_child_proxy_get_children_count ()" link="GstChildProxy.html#gst-child-proxy-get-children-count"/>
|
279
|
+
<function name="gst_child_proxy_get_child_by_name ()" link="GstChildProxy.html#gst-child-proxy-get-child-by-name"/>
|
280
|
+
<function name="gst_child_proxy_get_child_by_index ()" link="GstChildProxy.html#gst-child-proxy-get-child-by-index"/>
|
281
|
+
<function name="gst_child_proxy_lookup ()" link="GstChildProxy.html#gst-child-proxy-lookup"/>
|
282
|
+
<function name="gst_child_proxy_get_property ()" link="GstChildProxy.html#gst-child-proxy-get-property"/>
|
283
|
+
<function name="gst_child_proxy_get_valist ()" link="GstChildProxy.html#gst-child-proxy-get-valist"/>
|
284
|
+
<function name="gst_child_proxy_get ()" link="GstChildProxy.html#gst-child-proxy-get"/>
|
285
|
+
<function name="gst_child_proxy_set_property ()" link="GstChildProxy.html#gst-child-proxy-set-property"/>
|
286
|
+
<function name="gst_child_proxy_set_valist ()" link="GstChildProxy.html#gst-child-proxy-set-valist"/>
|
287
|
+
<function name="gst_child_proxy_set ()" link="GstChildProxy.html#gst-child-proxy-set"/>
|
288
|
+
<function name="gst_child_proxy_child_added ()" link="GstChildProxy.html#gst-child-proxy-child-added"/>
|
289
|
+
<function name="gst_child_proxy_child_removed ()" link="GstChildProxy.html#gst-child-proxy-child-removed"/>
|
290
|
+
<function name="The "child-added" signal" link="GstChildProxy.html#GstChildProxy-child-added"/>
|
291
|
+
<function name="The "child-removed" signal" link="GstChildProxy.html#GstChildProxy-child-removed"/>
|
292
|
+
<function name="struct GstClock" link="GstClock.html#GstClock-struct"/>
|
293
|
+
<function name="struct GstClockClass" link="GstClock.html#GstClockClass"/>
|
294
|
+
<function name="GstClockTime" link="GstClock.html#GstClockTime"/>
|
295
|
+
<function name="GstClockTimeDiff" link="GstClock.html#GstClockTimeDiff"/>
|
296
|
+
<function name="GstClockID" link="GstClock.html#GstClockID"/>
|
297
|
+
<function name="GST_CLOCK_TIME_NONE" link="GstClock.html#GST-CLOCK-TIME-NONE:CAPS"/>
|
298
|
+
<function name="GST_CLOCK_TIME_IS_VALID()" link="GstClock.html#GST-CLOCK-TIME-IS-VALID:CAPS"/>
|
299
|
+
<function name="GST_SECOND" link="GstClock.html#GST-SECOND:CAPS"/>
|
300
|
+
<function name="GST_MSECOND" link="GstClock.html#GST-MSECOND:CAPS"/>
|
301
|
+
<function name="GST_USECOND" link="GstClock.html#GST-USECOND:CAPS"/>
|
302
|
+
<function name="GST_NSECOND" link="GstClock.html#GST-NSECOND:CAPS"/>
|
303
|
+
<function name="GST_TIME_AS_SECONDS()" link="GstClock.html#GST-TIME-AS-SECONDS:CAPS"/>
|
304
|
+
<function name="GST_TIME_AS_MSECONDS()" link="GstClock.html#GST-TIME-AS-MSECONDS:CAPS"/>
|
305
|
+
<function name="GST_TIME_AS_USECONDS()" link="GstClock.html#GST-TIME-AS-USECONDS:CAPS"/>
|
306
|
+
<function name="GST_TIME_AS_NSECONDS()" link="GstClock.html#GST-TIME-AS-NSECONDS:CAPS"/>
|
307
|
+
<function name="GST_CLOCK_DIFF()" link="GstClock.html#GST-CLOCK-DIFF:CAPS"/>
|
308
|
+
<function name="GST_TIMEVAL_TO_TIME()" link="GstClock.html#GST-TIMEVAL-TO-TIME:CAPS"/>
|
309
|
+
<function name="GST_TIME_TO_TIMEVAL()" link="GstClock.html#GST-TIME-TO-TIMEVAL:CAPS"/>
|
310
|
+
<function name="GST_TIMESPEC_TO_TIME()" link="GstClock.html#GST-TIMESPEC-TO-TIME:CAPS"/>
|
311
|
+
<function name="GST_TIME_TO_TIMESPEC()" link="GstClock.html#GST-TIME-TO-TIMESPEC:CAPS"/>
|
312
|
+
<function name="GST_CLOCK_ENTRY_TRACE_NAME" link="GstClock.html#GST-CLOCK-ENTRY-TRACE-NAME:CAPS"/>
|
313
|
+
<function name="struct GstClockEntry" link="GstClock.html#GstClockEntry"/>
|
314
|
+
<function name="GstClockCallback ()" link="GstClock.html#GstClockCallback"/>
|
315
|
+
<function name="enum GstClockEntryType" link="GstClock.html#GstClockEntryType"/>
|
316
|
+
<function name="GST_CLOCK_ENTRY()" link="GstClock.html#GST-CLOCK-ENTRY:CAPS"/>
|
317
|
+
<function name="GST_CLOCK_ENTRY_CLOCK()" link="GstClock.html#GST-CLOCK-ENTRY-CLOCK:CAPS"/>
|
318
|
+
<function name="GST_CLOCK_ENTRY_TYPE()" link="GstClock.html#GST-CLOCK-ENTRY-TYPE:CAPS"/>
|
319
|
+
<function name="GST_CLOCK_ENTRY_TIME()" link="GstClock.html#GST-CLOCK-ENTRY-TIME:CAPS"/>
|
320
|
+
<function name="GST_CLOCK_ENTRY_INTERVAL()" link="GstClock.html#GST-CLOCK-ENTRY-INTERVAL:CAPS"/>
|
321
|
+
<function name="GST_CLOCK_ENTRY_STATUS()" link="GstClock.html#GST-CLOCK-ENTRY-STATUS:CAPS"/>
|
322
|
+
<function name="enum GstClockReturn" link="GstClock.html#GstClockReturn"/>
|
323
|
+
<function name="enum GstClockFlags" link="GstClock.html#GstClockFlags"/>
|
324
|
+
<function name="GST_CLOCK_FLAGS()" link="GstClock.html#GST-CLOCK-FLAGS:CAPS"/>
|
325
|
+
<function name="GST_CLOCK_BROADCAST()" link="GstClock.html#GST-CLOCK-BROADCAST:CAPS"/>
|
326
|
+
<function name="GST_CLOCK_COND()" link="GstClock.html#GST-CLOCK-COND:CAPS"/>
|
327
|
+
<function name="GST_CLOCK_TIMED_WAIT()" link="GstClock.html#GST-CLOCK-TIMED-WAIT:CAPS"/>
|
328
|
+
<function name="GST_CLOCK_WAIT()" link="GstClock.html#GST-CLOCK-WAIT:CAPS"/>
|
329
|
+
<function name="gst_clock_add_observation ()" link="GstClock.html#gst-clock-add-observation"/>
|
330
|
+
<function name="gst_clock_set_master ()" link="GstClock.html#gst-clock-set-master"/>
|
331
|
+
<function name="gst_clock_get_master ()" link="GstClock.html#gst-clock-get-master"/>
|
332
|
+
<function name="gst_clock_set_resolution ()" link="GstClock.html#gst-clock-set-resolution"/>
|
333
|
+
<function name="gst_clock_get_resolution ()" link="GstClock.html#gst-clock-get-resolution"/>
|
334
|
+
<function name="gst_clock_get_time ()" link="GstClock.html#gst-clock-get-time"/>
|
335
|
+
<function name="gst_clock_new_single_shot_id ()" link="GstClock.html#gst-clock-new-single-shot-id"/>
|
336
|
+
<function name="gst_clock_new_periodic_id ()" link="GstClock.html#gst-clock-new-periodic-id"/>
|
337
|
+
<function name="gst_clock_single_shot_id_reinit ()" link="GstClock.html#gst-clock-single-shot-id-reinit"/>
|
338
|
+
<function name="gst_clock_periodic_id_reinit ()" link="GstClock.html#gst-clock-periodic-id-reinit"/>
|
339
|
+
<function name="gst_clock_get_internal_time ()" link="GstClock.html#gst-clock-get-internal-time"/>
|
340
|
+
<function name="gst_clock_adjust_unlocked ()" link="GstClock.html#gst-clock-adjust-unlocked"/>
|
341
|
+
<function name="gst_clock_unadjust_unlocked ()" link="GstClock.html#gst-clock-unadjust-unlocked"/>
|
342
|
+
<function name="gst_clock_get_calibration ()" link="GstClock.html#gst-clock-get-calibration"/>
|
343
|
+
<function name="gst_clock_set_calibration ()" link="GstClock.html#gst-clock-set-calibration"/>
|
344
|
+
<function name="gst_clock_id_get_time ()" link="GstClock.html#gst-clock-id-get-time"/>
|
345
|
+
<function name="gst_clock_id_wait ()" link="GstClock.html#gst-clock-id-wait"/>
|
346
|
+
<function name="gst_clock_id_wait_async ()" link="GstClock.html#gst-clock-id-wait-async"/>
|
347
|
+
<function name="gst_clock_id_wait_async_full ()" link="GstClock.html#gst-clock-id-wait-async-full"/>
|
348
|
+
<function name="gst_clock_id_unschedule ()" link="GstClock.html#gst-clock-id-unschedule"/>
|
349
|
+
<function name="gst_clock_id_compare_func ()" link="GstClock.html#gst-clock-id-compare-func"/>
|
350
|
+
<function name="gst_clock_id_ref ()" link="GstClock.html#gst-clock-id-ref"/>
|
351
|
+
<function name="gst_clock_id_unref ()" link="GstClock.html#gst-clock-id-unref"/>
|
352
|
+
<function name="The "stats" property" link="GstClock.html#GstClock--stats"/>
|
353
|
+
<function name="The "timeout" property" link="GstClock.html#GstClock--timeout"/>
|
354
|
+
<function name="The "window-size" property" link="GstClock.html#GstClock--window-size"/>
|
355
|
+
<function name="The "window-threshold" property" link="GstClock.html#GstClock--window-threshold"/>
|
356
|
+
<function name="GST_DISABLE_GST_DEBUG" link="gstreamer-gstconfig.html#GST-DISABLE-GST-DEBUG:CAPS"/>
|
357
|
+
<function name="GST_DISABLE_LOADSAVE" link="gstreamer-gstconfig.html#GST-DISABLE-LOADSAVE:CAPS"/>
|
358
|
+
<function name="GST_DISABLE_PARSE" link="gstreamer-gstconfig.html#GST-DISABLE-PARSE:CAPS"/>
|
359
|
+
<function name="GST_DISABLE_TRACE" link="gstreamer-gstconfig.html#GST-DISABLE-TRACE:CAPS"/>
|
360
|
+
<function name="GST_DISABLE_ALLOC_TRACE" link="gstreamer-gstconfig.html#GST-DISABLE-ALLOC-TRACE:CAPS"/>
|
361
|
+
<function name="GST_DISABLE_REGISTRY" link="gstreamer-gstconfig.html#GST-DISABLE-REGISTRY:CAPS"/>
|
362
|
+
<function name="GST_DISABLE_PLUGIN" link="gstreamer-gstconfig.html#GST-DISABLE-PLUGIN:CAPS"/>
|
363
|
+
<function name="GST_DISABLE_XML" link="gstreamer-gstconfig.html#GST-DISABLE-XML:CAPS"/>
|
364
|
+
<function name="GstDateTime" link="gstreamer-GstDateTime.html#GstDateTime"/>
|
365
|
+
<function name="GST_TYPE_DATE_TIME" link="gstreamer-GstDateTime.html#GST-TYPE-DATE-TIME:CAPS"/>
|
366
|
+
<function name="gst_date_time_get_day ()" link="gstreamer-GstDateTime.html#gst-date-time-get-day"/>
|
367
|
+
<function name="gst_date_time_get_month ()" link="gstreamer-GstDateTime.html#gst-date-time-get-month"/>
|
368
|
+
<function name="gst_date_time_get_hour ()" link="gstreamer-GstDateTime.html#gst-date-time-get-hour"/>
|
369
|
+
<function name="gst_date_time_get_microsecond ()" link="gstreamer-GstDateTime.html#gst-date-time-get-microsecond"/>
|
370
|
+
<function name="gst_date_time_get_minute ()" link="gstreamer-GstDateTime.html#gst-date-time-get-minute"/>
|
371
|
+
<function name="gst_date_time_get_time_zone_offset ()" link="gstreamer-GstDateTime.html#gst-date-time-get-time-zone-offset"/>
|
372
|
+
<function name="gst_date_time_get_second ()" link="gstreamer-GstDateTime.html#gst-date-time-get-second"/>
|
373
|
+
<function name="gst_date_time_get_year ()" link="gstreamer-GstDateTime.html#gst-date-time-get-year"/>
|
374
|
+
<function name="gst_date_time_new ()" link="gstreamer-GstDateTime.html#gst-date-time-new"/>
|
375
|
+
<function name="gst_date_time_new_from_unix_epoch_local_time ()" link="gstreamer-GstDateTime.html#gst-date-time-new-from-unix-epoch-local-time"/>
|
376
|
+
<function name="gst_date_time_new_from_unix_epoch_utc ()" link="gstreamer-GstDateTime.html#gst-date-time-new-from-unix-epoch-utc"/>
|
377
|
+
<function name="gst_date_time_new_local_time ()" link="gstreamer-GstDateTime.html#gst-date-time-new-local-time"/>
|
378
|
+
<function name="gst_date_time_new_now_local_time ()" link="gstreamer-GstDateTime.html#gst-date-time-new-now-local-time"/>
|
379
|
+
<function name="gst_date_time_new_now_utc ()" link="gstreamer-GstDateTime.html#gst-date-time-new-now-utc"/>
|
380
|
+
<function name="gst_date_time_ref ()" link="gstreamer-GstDateTime.html#gst-date-time-ref"/>
|
381
|
+
<function name="gst_date_time_unref ()" link="gstreamer-GstDateTime.html#gst-date-time-unref"/>
|
382
|
+
<function name="struct GstElement" link="GstElement.html#GstElement-struct"/>
|
383
|
+
<function name="struct GstElementClass" link="GstElement.html#GstElementClass"/>
|
384
|
+
<function name="enum GstElementFlags" link="GstElement.html#GstElementFlags"/>
|
385
|
+
<function name="enum GstState" link="GstElement.html#GstState"/>
|
386
|
+
<function name="enum GstStateChange" link="GstElement.html#GstStateChange"/>
|
387
|
+
<function name="enum GstStateChangeReturn" link="GstElement.html#GstStateChangeReturn"/>
|
388
|
+
<function name="GST_STATE()" link="GstElement.html#GST-STATE:CAPS"/>
|
389
|
+
<function name="GST_STATE_GET_NEXT()" link="GstElement.html#GST-STATE-GET-NEXT:CAPS"/>
|
390
|
+
<function name="GST_STATE_NEXT()" link="GstElement.html#GST-STATE-NEXT:CAPS"/>
|
391
|
+
<function name="GST_STATE_PENDING()" link="GstElement.html#GST-STATE-PENDING:CAPS"/>
|
392
|
+
<function name="GST_STATE_RETURN()" link="GstElement.html#GST-STATE-RETURN:CAPS"/>
|
393
|
+
<function name="GST_STATE_TARGET()" link="GstElement.html#GST-STATE-TARGET:CAPS"/>
|
394
|
+
<function name="GST_STATE_TRANSITION()" link="GstElement.html#GST-STATE-TRANSITION:CAPS"/>
|
395
|
+
<function name="GST_STATE_TRANSITION_CURRENT()" link="GstElement.html#GST-STATE-TRANSITION-CURRENT:CAPS"/>
|
396
|
+
<function name="GST_STATE_TRANSITION_NEXT()" link="GstElement.html#GST-STATE-TRANSITION-NEXT:CAPS"/>
|
397
|
+
<function name="GST_STATE_GET_LOCK()" link="GstElement.html#GST-STATE-GET-LOCK:CAPS"/>
|
398
|
+
<function name="GST_STATE_GET_COND()" link="GstElement.html#GST-STATE-GET-COND:CAPS"/>
|
399
|
+
<function name="GST_ELEMENT_NAME()" link="GstElement.html#GST-ELEMENT-NAME:CAPS"/>
|
400
|
+
<function name="GST_ELEMENT_PARENT()" link="GstElement.html#GST-ELEMENT-PARENT:CAPS"/>
|
401
|
+
<function name="GST_ELEMENT_BUS()" link="GstElement.html#GST-ELEMENT-BUS:CAPS"/>
|
402
|
+
<function name="GST_ELEMENT_CLOCK()" link="GstElement.html#GST-ELEMENT-CLOCK:CAPS"/>
|
403
|
+
<function name="GST_ELEMENT_PADS()" link="GstElement.html#GST-ELEMENT-PADS:CAPS"/>
|
404
|
+
<function name="GST_ELEMENT_START_TIME()" link="GstElement.html#GST-ELEMENT-START-TIME:CAPS"/>
|
405
|
+
<function name="GST_ELEMENT_ERROR()" link="GstElement.html#GST-ELEMENT-ERROR:CAPS"/>
|
406
|
+
<function name="GST_ELEMENT_WARNING()" link="GstElement.html#GST-ELEMENT-WARNING:CAPS"/>
|
407
|
+
<function name="GST_ELEMENT_INFO()" link="GstElement.html#GST-ELEMENT-INFO:CAPS"/>
|
408
|
+
<function name="GST_ELEMENT_IS_LOCKED_STATE()" link="GstElement.html#GST-ELEMENT-IS-LOCKED-STATE:CAPS"/>
|
409
|
+
<function name="gst_element_class_add_pad_template ()" link="GstElement.html#gst-element-class-add-pad-template"/>
|
410
|
+
<function name="gst_element_class_get_pad_template ()" link="GstElement.html#gst-element-class-get-pad-template"/>
|
411
|
+
<function name="gst_element_class_get_pad_template_list ()" link="GstElement.html#gst-element-class-get-pad-template-list"/>
|
412
|
+
<function name="gst_element_class_install_std_props ()" link="GstElement.html#gst-element-class-install-std-props"/>
|
413
|
+
<function name="gst_element_class_set_details ()" link="GstElement.html#gst-element-class-set-details"/>
|
414
|
+
<function name="gst_element_class_set_details_simple ()" link="GstElement.html#gst-element-class-set-details-simple"/>
|
415
|
+
<function name="gst_element_class_set_documentation_uri ()" link="GstElement.html#gst-element-class-set-documentation-uri"/>
|
416
|
+
<function name="gst_element_class_set_icon_name ()" link="GstElement.html#gst-element-class-set-icon-name"/>
|
417
|
+
<function name="gst_element_add_pad ()" link="GstElement.html#gst-element-add-pad"/>
|
418
|
+
<function name="gst_element_get_pad ()" link="GstElement.html#gst-element-get-pad"/>
|
419
|
+
<function name="gst_element_create_all_pads ()" link="GstElement.html#gst-element-create-all-pads"/>
|
420
|
+
<function name="gst_element_get_compatible_pad ()" link="GstElement.html#gst-element-get-compatible-pad"/>
|
421
|
+
<function name="gst_element_get_compatible_pad_template ()" link="GstElement.html#gst-element-get-compatible-pad-template"/>
|
422
|
+
<function name="gst_element_get_request_pad ()" link="GstElement.html#gst-element-get-request-pad"/>
|
423
|
+
<function name="gst_element_get_static_pad ()" link="GstElement.html#gst-element-get-static-pad"/>
|
424
|
+
<function name="gst_element_request_pad ()" link="GstElement.html#gst-element-request-pad"/>
|
425
|
+
<function name="gst_element_no_more_pads ()" link="GstElement.html#gst-element-no-more-pads"/>
|
426
|
+
<function name="gst_element_release_request_pad ()" link="GstElement.html#gst-element-release-request-pad"/>
|
427
|
+
<function name="gst_element_remove_pad ()" link="GstElement.html#gst-element-remove-pad"/>
|
428
|
+
<function name="gst_element_iterate_pads ()" link="GstElement.html#gst-element-iterate-pads"/>
|
429
|
+
<function name="gst_element_iterate_sink_pads ()" link="GstElement.html#gst-element-iterate-sink-pads"/>
|
430
|
+
<function name="gst_element_iterate_src_pads ()" link="GstElement.html#gst-element-iterate-src-pads"/>
|
431
|
+
<function name="gst_element_link ()" link="GstElement.html#gst-element-link"/>
|
432
|
+
<function name="gst_element_unlink ()" link="GstElement.html#gst-element-unlink"/>
|
433
|
+
<function name="gst_element_link_many ()" link="GstElement.html#gst-element-link-many"/>
|
434
|
+
<function name="gst_element_unlink_many ()" link="GstElement.html#gst-element-unlink-many"/>
|
435
|
+
<function name="gst_element_link_pads ()" link="GstElement.html#gst-element-link-pads"/>
|
436
|
+
<function name="gst_element_link_pads_full ()" link="GstElement.html#gst-element-link-pads-full"/>
|
437
|
+
<function name="gst_element_unlink_pads ()" link="GstElement.html#gst-element-unlink-pads"/>
|
438
|
+
<function name="gst_element_link_pads_filtered ()" link="GstElement.html#gst-element-link-pads-filtered"/>
|
439
|
+
<function name="gst_element_link_filtered ()" link="GstElement.html#gst-element-link-filtered"/>
|
440
|
+
<function name="gst_element_set_base_time ()" link="GstElement.html#gst-element-set-base-time"/>
|
441
|
+
<function name="gst_element_get_base_time ()" link="GstElement.html#gst-element-get-base-time"/>
|
442
|
+
<function name="gst_element_set_start_time ()" link="GstElement.html#gst-element-set-start-time"/>
|
443
|
+
<function name="gst_element_get_start_time ()" link="GstElement.html#gst-element-get-start-time"/>
|
444
|
+
<function name="gst_element_set_bus ()" link="GstElement.html#gst-element-set-bus"/>
|
445
|
+
<function name="gst_element_get_bus ()" link="GstElement.html#gst-element-get-bus"/>
|
446
|
+
<function name="gst_element_get_factory ()" link="GstElement.html#gst-element-get-factory"/>
|
447
|
+
<function name="gst_element_set_index ()" link="GstElement.html#gst-element-set-index"/>
|
448
|
+
<function name="gst_element_get_index ()" link="GstElement.html#gst-element-get-index"/>
|
449
|
+
<function name="gst_element_is_indexable ()" link="GstElement.html#gst-element-is-indexable"/>
|
450
|
+
<function name="gst_element_set_name()" link="GstElement.html#gst-element-set-name"/>
|
451
|
+
<function name="gst_element_get_name()" link="GstElement.html#gst-element-get-name"/>
|
452
|
+
<function name="gst_element_set_parent()" link="GstElement.html#gst-element-set-parent"/>
|
453
|
+
<function name="gst_element_get_parent()" link="GstElement.html#gst-element-get-parent"/>
|
454
|
+
<function name="gst_element_requires_clock ()" link="GstElement.html#gst-element-requires-clock"/>
|
455
|
+
<function name="gst_element_set_clock ()" link="GstElement.html#gst-element-set-clock"/>
|
456
|
+
<function name="gst_element_get_clock ()" link="GstElement.html#gst-element-get-clock"/>
|
457
|
+
<function name="gst_element_provides_clock ()" link="GstElement.html#gst-element-provides-clock"/>
|
458
|
+
<function name="gst_element_provide_clock ()" link="GstElement.html#gst-element-provide-clock"/>
|
459
|
+
<function name="gst_element_set_state ()" link="GstElement.html#gst-element-set-state"/>
|
460
|
+
<function name="gst_element_get_state ()" link="GstElement.html#gst-element-get-state"/>
|
461
|
+
<function name="gst_element_set_locked_state ()" link="GstElement.html#gst-element-set-locked-state"/>
|
462
|
+
<function name="gst_element_is_locked_state ()" link="GstElement.html#gst-element-is-locked-state"/>
|
463
|
+
<function name="gst_element_abort_state ()" link="GstElement.html#gst-element-abort-state"/>
|
464
|
+
<function name="gst_element_continue_state ()" link="GstElement.html#gst-element-continue-state"/>
|
465
|
+
<function name="gst_element_lost_state ()" link="GstElement.html#gst-element-lost-state"/>
|
466
|
+
<function name="gst_element_lost_state_full ()" link="GstElement.html#gst-element-lost-state-full"/>
|
467
|
+
<function name="gst_element_state_get_name ()" link="GstElement.html#gst-element-state-get-name"/>
|
468
|
+
<function name="gst_element_state_change_return_get_name ()" link="GstElement.html#gst-element-state-change-return-get-name"/>
|
469
|
+
<function name="gst_element_sync_state_with_parent ()" link="GstElement.html#gst-element-sync-state-with-parent"/>
|
470
|
+
<function name="gst_element_change_state ()" link="GstElement.html#gst-element-change-state"/>
|
471
|
+
<function name="gst_element_found_tags ()" link="GstElement.html#gst-element-found-tags"/>
|
472
|
+
<function name="gst_element_found_tags_for_pad ()" link="GstElement.html#gst-element-found-tags-for-pad"/>
|
473
|
+
<function name="gst_element_message_full ()" link="GstElement.html#gst-element-message-full"/>
|
474
|
+
<function name="gst_element_post_message ()" link="GstElement.html#gst-element-post-message"/>
|
475
|
+
<function name="gst_element_get_query_types ()" link="GstElement.html#gst-element-get-query-types"/>
|
476
|
+
<function name="gst_element_query ()" link="GstElement.html#gst-element-query"/>
|
477
|
+
<function name="gst_element_query_convert ()" link="GstElement.html#gst-element-query-convert"/>
|
478
|
+
<function name="gst_element_query_position ()" link="GstElement.html#gst-element-query-position"/>
|
479
|
+
<function name="gst_element_query_duration ()" link="GstElement.html#gst-element-query-duration"/>
|
480
|
+
<function name="gst_element_send_event ()" link="GstElement.html#gst-element-send-event"/>
|
481
|
+
<function name="gst_element_seek_simple ()" link="GstElement.html#gst-element-seek-simple"/>
|
482
|
+
<function name="gst_element_seek ()" link="GstElement.html#gst-element-seek"/>
|
483
|
+
<function name="The "no-more-pads" signal" link="GstElement.html#GstElement-no-more-pads"/>
|
484
|
+
<function name="The "pad-added" signal" link="GstElement.html#GstElement-pad-added"/>
|
485
|
+
<function name="The "pad-removed" signal" link="GstElement.html#GstElement-pad-removed"/>
|
486
|
+
<function name="struct GstElementFactory" link="GstElementFactory.html#GstElementFactory-struct"/>
|
487
|
+
<function name="struct GstElementDetails" link="GstElementFactory.html#GstElementDetails"/>
|
488
|
+
<function name="GST_ELEMENT_DETAILS()" link="GstElementFactory.html#GST-ELEMENT-DETAILS:CAPS"/>
|
489
|
+
<function name="GST_IS_ELEMENT_DETAILS()" link="GstElementFactory.html#GST-IS-ELEMENT-DETAILS:CAPS"/>
|
490
|
+
<function name="gst_element_register ()" link="GstElementFactory.html#gst-element-register"/>
|
491
|
+
<function name="gst_element_factory_find ()" link="GstElementFactory.html#gst-element-factory-find"/>
|
492
|
+
<function name="gst_element_factory_get_element_type ()" link="GstElementFactory.html#gst-element-factory-get-element-type"/>
|
493
|
+
<function name="gst_element_factory_get_longname ()" link="GstElementFactory.html#gst-element-factory-get-longname"/>
|
494
|
+
<function name="gst_element_factory_get_klass ()" link="GstElementFactory.html#gst-element-factory-get-klass"/>
|
495
|
+
<function name="gst_element_factory_get_description ()" link="GstElementFactory.html#gst-element-factory-get-description"/>
|
496
|
+
<function name="gst_element_factory_get_author ()" link="GstElementFactory.html#gst-element-factory-get-author"/>
|
497
|
+
<function name="gst_element_factory_get_documentation_uri ()" link="GstElementFactory.html#gst-element-factory-get-documentation-uri"/>
|
498
|
+
<function name="gst_element_factory_get_icon_name ()" link="GstElementFactory.html#gst-element-factory-get-icon-name"/>
|
499
|
+
<function name="gst_element_factory_get_num_pad_templates ()" link="GstElementFactory.html#gst-element-factory-get-num-pad-templates"/>
|
500
|
+
<function name="gst_element_factory_get_uri_type ()" link="GstElementFactory.html#gst-element-factory-get-uri-type"/>
|
501
|
+
<function name="gst_element_factory_get_uri_protocols ()" link="GstElementFactory.html#gst-element-factory-get-uri-protocols"/>
|
502
|
+
<function name="gst_element_factory_has_interface ()" link="GstElementFactory.html#gst-element-factory-has-interface"/>
|
503
|
+
<function name="gst_element_factory_create ()" link="GstElementFactory.html#gst-element-factory-create"/>
|
504
|
+
<function name="gst_element_factory_make ()" link="GstElementFactory.html#gst-element-factory-make"/>
|
505
|
+
<function name="gst_element_factory_can_sink_caps ()" link="GstElementFactory.html#gst-element-factory-can-sink-caps"/>
|
506
|
+
<function name="gst_element_factory_can_src_caps ()" link="GstElementFactory.html#gst-element-factory-can-src-caps"/>
|
507
|
+
<function name="gst_element_factory_can_sink_all_caps ()" link="GstElementFactory.html#gst-element-factory-can-sink-all-caps"/>
|
508
|
+
<function name="gst_element_factory_can_src_all_caps ()" link="GstElementFactory.html#gst-element-factory-can-src-all-caps"/>
|
509
|
+
<function name="gst_element_factory_can_sink_any_caps ()" link="GstElementFactory.html#gst-element-factory-can-sink-any-caps"/>
|
510
|
+
<function name="gst_element_factory_can_src_any_caps ()" link="GstElementFactory.html#gst-element-factory-can-src-any-caps"/>
|
511
|
+
<function name="gst_element_factory_get_static_pad_templates ()" link="GstElementFactory.html#gst-element-factory-get-static-pad-templates"/>
|
512
|
+
<function name="GstElementFactoryListType" link="GstElementFactory.html#GstElementFactoryListType"/>
|
513
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_ANY" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-ANY:CAPS"/>
|
514
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_AUDIOVIDEO_SINKS" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-AUDIOVIDEO-SINKS:CAPS"/>
|
515
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_AUDIO_ENCODER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-AUDIO-ENCODER:CAPS"/>
|
516
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_DECODABLE" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-DECODABLE:CAPS"/>
|
517
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_DECODER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-DECODER:CAPS"/>
|
518
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_DEMUXER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-DEMUXER:CAPS"/>
|
519
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_DEPAYLOADER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-DEPAYLOADER:CAPS"/>
|
520
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_ENCODER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-ENCODER:CAPS"/>
|
521
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_FORMATTER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-FORMATTER:CAPS"/>
|
522
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_MAX_ELEMENTS" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-MAX-ELEMENTS:CAPS"/>
|
523
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-MEDIA-AUDIO:CAPS"/>
|
524
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_MEDIA_IMAGE" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-MEDIA-IMAGE:CAPS"/>
|
525
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_MEDIA_METADATA" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-MEDIA-METADATA:CAPS"/>
|
526
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_MEDIA_SUBTITLE" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-MEDIA-SUBTITLE:CAPS"/>
|
527
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-MEDIA-VIDEO:CAPS"/>
|
528
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_MEDIA_ANY" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-MEDIA-ANY:CAPS"/>
|
529
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_MUXER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-MUXER:CAPS"/>
|
530
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_PARSER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-PARSER:CAPS"/>
|
531
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_PAYLOADER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-PAYLOADER:CAPS"/>
|
532
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_SINK" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-SINK:CAPS"/>
|
533
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_SRC" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-SRC:CAPS"/>
|
534
|
+
<function name="GST_ELEMENT_FACTORY_TYPE_VIDEO_ENCODER" link="GstElementFactory.html#GST-ELEMENT-FACTORY-TYPE-VIDEO-ENCODER:CAPS"/>
|
535
|
+
<function name="gst_element_factory_list_filter ()" link="GstElementFactory.html#gst-element-factory-list-filter"/>
|
536
|
+
<function name="gst_element_factory_list_get_elements ()" link="GstElementFactory.html#gst-element-factory-list-get-elements"/>
|
537
|
+
<function name="gst_element_factory_list_is_type ()" link="GstElementFactory.html#gst-element-factory-list-is-type"/>
|
538
|
+
<function name="enum GstCoreError" link="gstreamer-GstGError.html#GstCoreError"/>
|
539
|
+
<function name="enum GstLibraryError" link="gstreamer-GstGError.html#GstLibraryError"/>
|
540
|
+
<function name="enum GstResourceError" link="gstreamer-GstGError.html#GstResourceError"/>
|
541
|
+
<function name="enum GstStreamError" link="gstreamer-GstGError.html#GstStreamError"/>
|
542
|
+
<function name="GST_CORE_ERROR" link="gstreamer-GstGError.html#GST-CORE-ERROR:CAPS"/>
|
543
|
+
<function name="GST_LIBRARY_ERROR" link="gstreamer-GstGError.html#GST-LIBRARY-ERROR:CAPS"/>
|
544
|
+
<function name="GST_RESOURCE_ERROR" link="gstreamer-GstGError.html#GST-RESOURCE-ERROR:CAPS"/>
|
545
|
+
<function name="GST_STREAM_ERROR" link="gstreamer-GstGError.html#GST-STREAM-ERROR:CAPS"/>
|
546
|
+
<function name="GST_ERROR_SYSTEM" link="gstreamer-GstGError.html#GST-ERROR-SYSTEM:CAPS"/>
|
547
|
+
<function name="gst_error_get_message ()" link="gstreamer-GstGError.html#gst-error-get-message"/>
|
548
|
+
<function name="struct GstEvent" link="gstreamer-GstEvent.html#GstEvent"/>
|
549
|
+
<function name="enum GstEventTypeFlags" link="gstreamer-GstEvent.html#GstEventTypeFlags"/>
|
550
|
+
<function name="GST_EVENT_TYPE_BOTH" link="gstreamer-GstEvent.html#GST-EVENT-TYPE-BOTH:CAPS"/>
|
551
|
+
<function name="GST_EVENT_MAKE_TYPE()" link="gstreamer-GstEvent.html#GST-EVENT-MAKE-TYPE:CAPS"/>
|
552
|
+
<function name="enum GstEventType" link="gstreamer-GstEvent.html#GstEventType"/>
|
553
|
+
<function name="GST_EVENT_TRACE_NAME" link="gstreamer-GstEvent.html#GST-EVENT-TRACE-NAME:CAPS"/>
|
554
|
+
<function name="GST_EVENT_TYPE()" link="gstreamer-GstEvent.html#GST-EVENT-TYPE:CAPS"/>
|
555
|
+
<function name="GST_EVENT_TYPE_NAME()" link="gstreamer-GstEvent.html#GST-EVENT-TYPE-NAME:CAPS"/>
|
556
|
+
<function name="GST_EVENT_TIMESTAMP()" link="gstreamer-GstEvent.html#GST-EVENT-TIMESTAMP:CAPS"/>
|
557
|
+
<function name="GST_EVENT_SRC()" link="gstreamer-GstEvent.html#GST-EVENT-SRC:CAPS"/>
|
558
|
+
<function name="GST_EVENT_IS_UPSTREAM()" link="gstreamer-GstEvent.html#GST-EVENT-IS-UPSTREAM:CAPS"/>
|
559
|
+
<function name="GST_EVENT_IS_DOWNSTREAM()" link="gstreamer-GstEvent.html#GST-EVENT-IS-DOWNSTREAM:CAPS"/>
|
560
|
+
<function name="GST_EVENT_IS_SERIALIZED()" link="gstreamer-GstEvent.html#GST-EVENT-IS-SERIALIZED:CAPS"/>
|
561
|
+
<function name="gst_event_type_get_flags ()" link="gstreamer-GstEvent.html#gst-event-type-get-flags"/>
|
562
|
+
<function name="gst_event_type_get_name ()" link="gstreamer-GstEvent.html#gst-event-type-get-name"/>
|
563
|
+
<function name="gst_event_type_to_quark ()" link="gstreamer-GstEvent.html#gst-event-type-to-quark"/>
|
564
|
+
<function name="gst_event_ref ()" link="gstreamer-GstEvent.html#gst-event-ref"/>
|
565
|
+
<function name="gst_event_unref ()" link="gstreamer-GstEvent.html#gst-event-unref"/>
|
566
|
+
<function name="gst_event_replace()" link="gstreamer-GstEvent.html#gst-event-replace"/>
|
567
|
+
<function name="gst_event_copy ()" link="gstreamer-GstEvent.html#gst-event-copy"/>
|
568
|
+
<function name="gst_event_new_custom ()" link="gstreamer-GstEvent.html#gst-event-new-custom"/>
|
569
|
+
<function name="gst_event_get_structure ()" link="gstreamer-GstEvent.html#gst-event-get-structure"/>
|
570
|
+
<function name="gst_event_has_name ()" link="gstreamer-GstEvent.html#gst-event-has-name"/>
|
571
|
+
<function name="gst_event_get_seqnum ()" link="gstreamer-GstEvent.html#gst-event-get-seqnum"/>
|
572
|
+
<function name="gst_event_set_seqnum ()" link="gstreamer-GstEvent.html#gst-event-set-seqnum"/>
|
573
|
+
<function name="gst_event_new_flush_start ()" link="gstreamer-GstEvent.html#gst-event-new-flush-start"/>
|
574
|
+
<function name="gst_event_new_flush_stop ()" link="gstreamer-GstEvent.html#gst-event-new-flush-stop"/>
|
575
|
+
<function name="gst_event_new_eos ()" link="gstreamer-GstEvent.html#gst-event-new-eos"/>
|
576
|
+
<function name="gst_event_new_new_segment ()" link="gstreamer-GstEvent.html#gst-event-new-new-segment"/>
|
577
|
+
<function name="gst_event_new_new_segment_full ()" link="gstreamer-GstEvent.html#gst-event-new-new-segment-full"/>
|
578
|
+
<function name="gst_event_parse_new_segment ()" link="gstreamer-GstEvent.html#gst-event-parse-new-segment"/>
|
579
|
+
<function name="gst_event_parse_new_segment_full ()" link="gstreamer-GstEvent.html#gst-event-parse-new-segment-full"/>
|
580
|
+
<function name="gst_event_new_tag ()" link="gstreamer-GstEvent.html#gst-event-new-tag"/>
|
581
|
+
<function name="gst_event_parse_tag ()" link="gstreamer-GstEvent.html#gst-event-parse-tag"/>
|
582
|
+
<function name="gst_event_new_buffer_size ()" link="gstreamer-GstEvent.html#gst-event-new-buffer-size"/>
|
583
|
+
<function name="gst_event_parse_buffer_size ()" link="gstreamer-GstEvent.html#gst-event-parse-buffer-size"/>
|
584
|
+
<function name="enum GstQOSType" link="gstreamer-GstEvent.html#GstQOSType"/>
|
585
|
+
<function name="gst_event_new_qos ()" link="gstreamer-GstEvent.html#gst-event-new-qos"/>
|
586
|
+
<function name="gst_event_new_qos_full ()" link="gstreamer-GstEvent.html#gst-event-new-qos-full"/>
|
587
|
+
<function name="gst_event_parse_qos ()" link="gstreamer-GstEvent.html#gst-event-parse-qos"/>
|
588
|
+
<function name="gst_event_parse_qos_full ()" link="gstreamer-GstEvent.html#gst-event-parse-qos-full"/>
|
589
|
+
<function name="enum GstSeekType" link="gstreamer-GstEvent.html#GstSeekType"/>
|
590
|
+
<function name="enum GstSeekFlags" link="gstreamer-GstEvent.html#GstSeekFlags"/>
|
591
|
+
<function name="gst_event_new_seek ()" link="gstreamer-GstEvent.html#gst-event-new-seek"/>
|
592
|
+
<function name="gst_event_parse_seek ()" link="gstreamer-GstEvent.html#gst-event-parse-seek"/>
|
593
|
+
<function name="gst_event_new_navigation ()" link="gstreamer-GstEvent.html#gst-event-new-navigation"/>
|
594
|
+
<function name="gst_event_new_latency ()" link="gstreamer-GstEvent.html#gst-event-new-latency"/>
|
595
|
+
<function name="gst_event_parse_latency ()" link="gstreamer-GstEvent.html#gst-event-parse-latency"/>
|
596
|
+
<function name="gst_event_new_step ()" link="gstreamer-GstEvent.html#gst-event-new-step"/>
|
597
|
+
<function name="gst_event_parse_step ()" link="gstreamer-GstEvent.html#gst-event-parse-step"/>
|
598
|
+
<function name="gst_event_new_sink_message ()" link="gstreamer-GstEvent.html#gst-event-new-sink-message"/>
|
599
|
+
<function name="gst_event_parse_sink_message ()" link="gstreamer-GstEvent.html#gst-event-parse-sink-message"/>
|
600
|
+
<function name="GstFilterFunc ()" link="gstreamer-GstFilter.html#GstFilterFunc"/>
|
601
|
+
<function name="gst_filter_run ()" link="gstreamer-GstFilter.html#gst-filter-run"/>
|
602
|
+
<function name="enum GstFormat" link="gstreamer-GstFormat.html#GstFormat"/>
|
603
|
+
<function name="GST_FORMAT_PERCENT_MAX" link="gstreamer-GstFormat.html#GST-FORMAT-PERCENT-MAX:CAPS"/>
|
604
|
+
<function name="GST_FORMAT_PERCENT_SCALE" link="gstreamer-GstFormat.html#GST-FORMAT-PERCENT-SCALE:CAPS"/>
|
605
|
+
<function name="struct GstFormatDefinition" link="gstreamer-GstFormat.html#GstFormatDefinition"/>
|
606
|
+
<function name="gst_format_get_name ()" link="gstreamer-GstFormat.html#gst-format-get-name"/>
|
607
|
+
<function name="gst_format_to_quark ()" link="gstreamer-GstFormat.html#gst-format-to-quark"/>
|
608
|
+
<function name="gst_format_register ()" link="gstreamer-GstFormat.html#gst-format-register"/>
|
609
|
+
<function name="gst_format_get_by_nick ()" link="gstreamer-GstFormat.html#gst-format-get-by-nick"/>
|
610
|
+
<function name="gst_formats_contains ()" link="gstreamer-GstFormat.html#gst-formats-contains"/>
|
611
|
+
<function name="gst_format_get_details ()" link="gstreamer-GstFormat.html#gst-format-get-details"/>
|
612
|
+
<function name="gst_format_iterate_definitions ()" link="gstreamer-GstFormat.html#gst-format-iterate-definitions"/>
|
613
|
+
<function name="struct GstGhostPad" link="GstGhostPad.html#GstGhostPad-struct"/>
|
614
|
+
<function name="gst_ghost_pad_new ()" link="GstGhostPad.html#gst-ghost-pad-new"/>
|
615
|
+
<function name="gst_ghost_pad_new_no_target ()" link="GstGhostPad.html#gst-ghost-pad-new-no-target"/>
|
616
|
+
<function name="gst_ghost_pad_new_from_template ()" link="GstGhostPad.html#gst-ghost-pad-new-from-template"/>
|
617
|
+
<function name="gst_ghost_pad_new_no_target_from_template ()" link="GstGhostPad.html#gst-ghost-pad-new-no-target-from-template"/>
|
618
|
+
<function name="gst_ghost_pad_set_target ()" link="GstGhostPad.html#gst-ghost-pad-set-target"/>
|
619
|
+
<function name="gst_ghost_pad_get_target ()" link="GstGhostPad.html#gst-ghost-pad-get-target"/>
|
620
|
+
<function name="gst_ghost_pad_construct ()" link="GstGhostPad.html#gst-ghost-pad-construct"/>
|
621
|
+
<function name="GstImplementsInterface" link="GstImplementsInterface.html#GstImplementsInterface-struct"/>
|
622
|
+
<function name="gst_element_implements_interface ()" link="GstImplementsInterface.html#gst-element-implements-interface"/>
|
623
|
+
<function name="gst_implements_interface_cast ()" link="GstImplementsInterface.html#gst-implements-interface-cast"/>
|
624
|
+
<function name="gst_implements_interface_check ()" link="GstImplementsInterface.html#gst-implements-interface-check"/>
|
625
|
+
<function name="struct GstIndex" link="GstIndex.html#GstIndex-struct"/>
|
626
|
+
<function name="struct GstIndexEntry" link="GstIndex.html#GstIndexEntry"/>
|
627
|
+
<function name="struct GstIndexGroup" link="GstIndex.html#GstIndexGroup"/>
|
628
|
+
<function name="enum GstIndexCertainty" link="GstIndex.html#GstIndexCertainty"/>
|
629
|
+
<function name="enum GstIndexEntryType" link="GstIndex.html#GstIndexEntryType"/>
|
630
|
+
<function name="enum GstIndexLookupMethod" link="GstIndex.html#GstIndexLookupMethod"/>
|
631
|
+
<function name="GST_INDEX_NASSOCS()" link="GstIndex.html#GST-INDEX-NASSOCS:CAPS"/>
|
632
|
+
<function name="GST_INDEX_ASSOC_FLAGS()" link="GstIndex.html#GST-INDEX-ASSOC-FLAGS:CAPS"/>
|
633
|
+
<function name="GST_INDEX_ASSOC_FORMAT()" link="GstIndex.html#GST-INDEX-ASSOC-FORMAT:CAPS"/>
|
634
|
+
<function name="GST_INDEX_ASSOC_VALUE()" link="GstIndex.html#GST-INDEX-ASSOC-VALUE:CAPS"/>
|
635
|
+
<function name="struct GstIndexAssociation" link="GstIndex.html#GstIndexAssociation"/>
|
636
|
+
<function name="enum GstAssocFlags" link="GstIndex.html#GstAssocFlags"/>
|
637
|
+
<function name="GST_INDEX_FORMAT_FORMAT()" link="GstIndex.html#GST-INDEX-FORMAT-FORMAT:CAPS"/>
|
638
|
+
<function name="GST_INDEX_FORMAT_KEY()" link="GstIndex.html#GST-INDEX-FORMAT-KEY:CAPS"/>
|
639
|
+
<function name="GST_INDEX_ID_INVALID" link="GstIndex.html#GST-INDEX-ID-INVALID:CAPS"/>
|
640
|
+
<function name="GST_INDEX_ID_DESCRIPTION()" link="GstIndex.html#GST-INDEX-ID-DESCRIPTION:CAPS"/>
|
641
|
+
<function name="GstIndexFilter ()" link="GstIndex.html#GstIndexFilter"/>
|
642
|
+
<function name="enum GstIndexResolverMethod" link="GstIndex.html#GstIndexResolverMethod"/>
|
643
|
+
<function name="GstIndexResolver ()" link="GstIndex.html#GstIndexResolver"/>
|
644
|
+
<function name="enum GstIndexFlags" link="GstIndex.html#GstIndexFlags"/>
|
645
|
+
<function name="GST_INDEX_IS_READABLE()" link="GstIndex.html#GST-INDEX-IS-READABLE:CAPS"/>
|
646
|
+
<function name="GST_INDEX_IS_WRITABLE()" link="GstIndex.html#GST-INDEX-IS-WRITABLE:CAPS"/>
|
647
|
+
<function name="gst_index_new ()" link="GstIndex.html#gst-index-new"/>
|
648
|
+
<function name="gst_index_commit ()" link="GstIndex.html#gst-index-commit"/>
|
649
|
+
<function name="gst_index_get_group ()" link="GstIndex.html#gst-index-get-group"/>
|
650
|
+
<function name="gst_index_new_group ()" link="GstIndex.html#gst-index-new-group"/>
|
651
|
+
<function name="gst_index_set_group ()" link="GstIndex.html#gst-index-set-group"/>
|
652
|
+
<function name="gst_index_set_certainty ()" link="GstIndex.html#gst-index-set-certainty"/>
|
653
|
+
<function name="gst_index_get_certainty ()" link="GstIndex.html#gst-index-get-certainty"/>
|
654
|
+
<function name="gst_index_set_filter ()" link="GstIndex.html#gst-index-set-filter"/>
|
655
|
+
<function name="gst_index_set_filter_full ()" link="GstIndex.html#gst-index-set-filter-full"/>
|
656
|
+
<function name="gst_index_set_resolver ()" link="GstIndex.html#gst-index-set-resolver"/>
|
657
|
+
<function name="gst_index_set_resolver_full ()" link="GstIndex.html#gst-index-set-resolver-full"/>
|
658
|
+
<function name="gst_index_get_writer_id ()" link="GstIndex.html#gst-index-get-writer-id"/>
|
659
|
+
<function name="gst_index_add_format ()" link="GstIndex.html#gst-index-add-format"/>
|
660
|
+
<function name="gst_index_add_association ()" link="GstIndex.html#gst-index-add-association"/>
|
661
|
+
<function name="gst_index_add_associationv ()" link="GstIndex.html#gst-index-add-associationv"/>
|
662
|
+
<function name="gst_index_add_object ()" link="GstIndex.html#gst-index-add-object"/>
|
663
|
+
<function name="gst_index_add_id ()" link="GstIndex.html#gst-index-add-id"/>
|
664
|
+
<function name="gst_index_get_assoc_entry ()" link="GstIndex.html#gst-index-get-assoc-entry"/>
|
665
|
+
<function name="gst_index_get_assoc_entry_full ()" link="GstIndex.html#gst-index-get-assoc-entry-full"/>
|
666
|
+
<function name="gst_index_entry_copy ()" link="GstIndex.html#gst-index-entry-copy"/>
|
667
|
+
<function name="gst_index_entry_free ()" link="GstIndex.html#gst-index-entry-free"/>
|
668
|
+
<function name="gst_index_entry_assoc_map ()" link="GstIndex.html#gst-index-entry-assoc-map"/>
|
669
|
+
<function name="The "resolver" property" link="GstIndex.html#GstIndex--resolver"/>
|
670
|
+
<function name="The "entry-added" signal" link="GstIndex.html#GstIndex-entry-added"/>
|
671
|
+
<function name="struct GstIndexFactory" link="GstIndexFactory.html#GstIndexFactory-struct"/>
|
672
|
+
<function name="gst_index_factory_new ()" link="GstIndexFactory.html#gst-index-factory-new"/>
|
673
|
+
<function name="gst_index_factory_destroy ()" link="GstIndexFactory.html#gst-index-factory-destroy"/>
|
674
|
+
<function name="gst_index_factory_find ()" link="GstIndexFactory.html#gst-index-factory-find"/>
|
675
|
+
<function name="gst_index_factory_create ()" link="GstIndexFactory.html#gst-index-factory-create"/>
|
676
|
+
<function name="gst_index_factory_make ()" link="GstIndexFactory.html#gst-index-factory-make"/>
|
677
|
+
<function name="struct GstIterator" link="gstreamer-GstIterator.html#GstIterator"/>
|
678
|
+
<function name="enum GstIteratorItem" link="gstreamer-GstIterator.html#GstIteratorItem"/>
|
679
|
+
<function name="enum GstIteratorResult" link="gstreamer-GstIterator.html#GstIteratorResult"/>
|
680
|
+
<function name="GstIteratorDisposeFunction ()" link="gstreamer-GstIterator.html#GstIteratorDisposeFunction"/>
|
681
|
+
<function name="GstIteratorNextFunction ()" link="gstreamer-GstIterator.html#GstIteratorNextFunction"/>
|
682
|
+
<function name="GstIteratorItemFunction ()" link="gstreamer-GstIterator.html#GstIteratorItemFunction"/>
|
683
|
+
<function name="GstIteratorResyncFunction ()" link="gstreamer-GstIterator.html#GstIteratorResyncFunction"/>
|
684
|
+
<function name="GstIteratorFreeFunction ()" link="gstreamer-GstIterator.html#GstIteratorFreeFunction"/>
|
685
|
+
<function name="GstIteratorFoldFunction ()" link="gstreamer-GstIterator.html#GstIteratorFoldFunction"/>
|
686
|
+
<function name="GstCopyFunction ()" link="gstreamer-GstIterator.html#GstCopyFunction"/>
|
687
|
+
<function name="GST_ITERATOR()" link="gstreamer-GstIterator.html#GST-ITERATOR:CAPS"/>
|
688
|
+
<function name="GST_ITERATOR_LOCK()" link="gstreamer-GstIterator.html#GST-ITERATOR-LOCK:CAPS"/>
|
689
|
+
<function name="GST_ITERATOR_COOKIE()" link="gstreamer-GstIterator.html#GST-ITERATOR-COOKIE:CAPS"/>
|
690
|
+
<function name="GST_ITERATOR_ORIG_COOKIE()" link="gstreamer-GstIterator.html#GST-ITERATOR-ORIG-COOKIE:CAPS"/>
|
691
|
+
<function name="gst_iterator_new ()" link="gstreamer-GstIterator.html#gst-iterator-new"/>
|
692
|
+
<function name="gst_iterator_new_list ()" link="gstreamer-GstIterator.html#gst-iterator-new-list"/>
|
693
|
+
<function name="gst_iterator_new_single ()" link="gstreamer-GstIterator.html#gst-iterator-new-single"/>
|
694
|
+
<function name="gst_iterator_next ()" link="gstreamer-GstIterator.html#gst-iterator-next"/>
|
695
|
+
<function name="gst_iterator_resync ()" link="gstreamer-GstIterator.html#gst-iterator-resync"/>
|
696
|
+
<function name="gst_iterator_free ()" link="gstreamer-GstIterator.html#gst-iterator-free"/>
|
697
|
+
<function name="gst_iterator_push ()" link="gstreamer-GstIterator.html#gst-iterator-push"/>
|
698
|
+
<function name="gst_iterator_filter ()" link="gstreamer-GstIterator.html#gst-iterator-filter"/>
|
699
|
+
<function name="gst_iterator_fold ()" link="gstreamer-GstIterator.html#gst-iterator-fold"/>
|
700
|
+
<function name="gst_iterator_foreach ()" link="gstreamer-GstIterator.html#gst-iterator-foreach"/>
|
701
|
+
<function name="gst_iterator_find_custom ()" link="gstreamer-GstIterator.html#gst-iterator-find-custom"/>
|
702
|
+
<function name="struct GstMessage" link="gstreamer-GstMessage.html#GstMessage"/>
|
703
|
+
<function name="enum GstMessageType" link="gstreamer-GstMessage.html#GstMessageType"/>
|
704
|
+
<function name="GST_MESSAGE_SRC()" link="gstreamer-GstMessage.html#GST-MESSAGE-SRC:CAPS"/>
|
705
|
+
<function name="GST_MESSAGE_SRC_NAME()" link="gstreamer-GstMessage.html#GST-MESSAGE-SRC-NAME:CAPS"/>
|
706
|
+
<function name="GST_MESSAGE_TIMESTAMP()" link="gstreamer-GstMessage.html#GST-MESSAGE-TIMESTAMP:CAPS"/>
|
707
|
+
<function name="GST_MESSAGE_TYPE()" link="gstreamer-GstMessage.html#GST-MESSAGE-TYPE:CAPS"/>
|
708
|
+
<function name="GST_MESSAGE_TYPE_NAME()" link="gstreamer-GstMessage.html#GST-MESSAGE-TYPE-NAME:CAPS"/>
|
709
|
+
<function name="GST_MESSAGE_TRACE_NAME" link="gstreamer-GstMessage.html#GST-MESSAGE-TRACE-NAME:CAPS"/>
|
710
|
+
<function name="gst_message_type_to_quark ()" link="gstreamer-GstMessage.html#gst-message-type-to-quark"/>
|
711
|
+
<function name="gst_message_type_get_name ()" link="gstreamer-GstMessage.html#gst-message-type-get-name"/>
|
712
|
+
<function name="gst_message_ref ()" link="gstreamer-GstMessage.html#gst-message-ref"/>
|
713
|
+
<function name="gst_message_unref ()" link="gstreamer-GstMessage.html#gst-message-unref"/>
|
714
|
+
<function name="gst_message_copy ()" link="gstreamer-GstMessage.html#gst-message-copy"/>
|
715
|
+
<function name="gst_message_get_structure ()" link="gstreamer-GstMessage.html#gst-message-get-structure"/>
|
716
|
+
<function name="gst_message_make_writable()" link="gstreamer-GstMessage.html#gst-message-make-writable"/>
|
717
|
+
<function name="gst_message_get_seqnum ()" link="gstreamer-GstMessage.html#gst-message-get-seqnum"/>
|
718
|
+
<function name="gst_message_set_seqnum ()" link="gstreamer-GstMessage.html#gst-message-set-seqnum"/>
|
719
|
+
<function name="gst_message_new_eos ()" link="gstreamer-GstMessage.html#gst-message-new-eos"/>
|
720
|
+
<function name="gst_message_new_error ()" link="gstreamer-GstMessage.html#gst-message-new-error"/>
|
721
|
+
<function name="gst_message_parse_error ()" link="gstreamer-GstMessage.html#gst-message-parse-error"/>
|
722
|
+
<function name="gst_message_new_warning ()" link="gstreamer-GstMessage.html#gst-message-new-warning"/>
|
723
|
+
<function name="gst_message_parse_warning ()" link="gstreamer-GstMessage.html#gst-message-parse-warning"/>
|
724
|
+
<function name="gst_message_new_info ()" link="gstreamer-GstMessage.html#gst-message-new-info"/>
|
725
|
+
<function name="gst_message_parse_info ()" link="gstreamer-GstMessage.html#gst-message-parse-info"/>
|
726
|
+
<function name="gst_message_new_tag ()" link="gstreamer-GstMessage.html#gst-message-new-tag"/>
|
727
|
+
<function name="gst_message_new_tag_full ()" link="gstreamer-GstMessage.html#gst-message-new-tag-full"/>
|
728
|
+
<function name="gst_message_parse_tag ()" link="gstreamer-GstMessage.html#gst-message-parse-tag"/>
|
729
|
+
<function name="gst_message_parse_tag_full ()" link="gstreamer-GstMessage.html#gst-message-parse-tag-full"/>
|
730
|
+
<function name="gst_message_new_buffering ()" link="gstreamer-GstMessage.html#gst-message-new-buffering"/>
|
731
|
+
<function name="gst_message_parse_buffering ()" link="gstreamer-GstMessage.html#gst-message-parse-buffering"/>
|
732
|
+
<function name="gst_message_set_buffering_stats ()" link="gstreamer-GstMessage.html#gst-message-set-buffering-stats"/>
|
733
|
+
<function name="gst_message_parse_buffering_stats ()" link="gstreamer-GstMessage.html#gst-message-parse-buffering-stats"/>
|
734
|
+
<function name="gst_message_new_state_changed ()" link="gstreamer-GstMessage.html#gst-message-new-state-changed"/>
|
735
|
+
<function name="gst_message_parse_state_changed ()" link="gstreamer-GstMessage.html#gst-message-parse-state-changed"/>
|
736
|
+
<function name="gst_message_new_state_dirty ()" link="gstreamer-GstMessage.html#gst-message-new-state-dirty"/>
|
737
|
+
<function name="gst_message_new_step_done ()" link="gstreamer-GstMessage.html#gst-message-new-step-done"/>
|
738
|
+
<function name="gst_message_parse_step_done ()" link="gstreamer-GstMessage.html#gst-message-parse-step-done"/>
|
739
|
+
<function name="gst_message_new_clock_provide ()" link="gstreamer-GstMessage.html#gst-message-new-clock-provide"/>
|
740
|
+
<function name="gst_message_parse_clock_provide ()" link="gstreamer-GstMessage.html#gst-message-parse-clock-provide"/>
|
741
|
+
<function name="gst_message_new_clock_lost ()" link="gstreamer-GstMessage.html#gst-message-new-clock-lost"/>
|
742
|
+
<function name="gst_message_parse_clock_lost ()" link="gstreamer-GstMessage.html#gst-message-parse-clock-lost"/>
|
743
|
+
<function name="gst_message_new_new_clock ()" link="gstreamer-GstMessage.html#gst-message-new-new-clock"/>
|
744
|
+
<function name="gst_message_parse_new_clock ()" link="gstreamer-GstMessage.html#gst-message-parse-new-clock"/>
|
745
|
+
<function name="gst_message_new_application ()" link="gstreamer-GstMessage.html#gst-message-new-application"/>
|
746
|
+
<function name="gst_message_new_element ()" link="gstreamer-GstMessage.html#gst-message-new-element"/>
|
747
|
+
<function name="gst_message_new_custom ()" link="gstreamer-GstMessage.html#gst-message-new-custom"/>
|
748
|
+
<function name="gst_message_new_segment_start ()" link="gstreamer-GstMessage.html#gst-message-new-segment-start"/>
|
749
|
+
<function name="gst_message_parse_segment_start ()" link="gstreamer-GstMessage.html#gst-message-parse-segment-start"/>
|
750
|
+
<function name="gst_message_new_segment_done ()" link="gstreamer-GstMessage.html#gst-message-new-segment-done"/>
|
751
|
+
<function name="gst_message_parse_segment_done ()" link="gstreamer-GstMessage.html#gst-message-parse-segment-done"/>
|
752
|
+
<function name="gst_message_new_duration ()" link="gstreamer-GstMessage.html#gst-message-new-duration"/>
|
753
|
+
<function name="gst_message_parse_duration ()" link="gstreamer-GstMessage.html#gst-message-parse-duration"/>
|
754
|
+
<function name="gst_message_new_latency ()" link="gstreamer-GstMessage.html#gst-message-new-latency"/>
|
755
|
+
<function name="gst_message_new_async_start ()" link="gstreamer-GstMessage.html#gst-message-new-async-start"/>
|
756
|
+
<function name="gst_message_parse_async_start ()" link="gstreamer-GstMessage.html#gst-message-parse-async-start"/>
|
757
|
+
<function name="gst_message_new_async_done ()" link="gstreamer-GstMessage.html#gst-message-new-async-done"/>
|
758
|
+
<function name="gst_message_new_step_start ()" link="gstreamer-GstMessage.html#gst-message-new-step-start"/>
|
759
|
+
<function name="gst_message_parse_step_start ()" link="gstreamer-GstMessage.html#gst-message-parse-step-start"/>
|
760
|
+
<function name="gst_message_new_qos ()" link="gstreamer-GstMessage.html#gst-message-new-qos"/>
|
761
|
+
<function name="gst_message_set_qos_values ()" link="gstreamer-GstMessage.html#gst-message-set-qos-values"/>
|
762
|
+
<function name="gst_message_set_qos_stats ()" link="gstreamer-GstMessage.html#gst-message-set-qos-stats"/>
|
763
|
+
<function name="gst_message_parse_qos ()" link="gstreamer-GstMessage.html#gst-message-parse-qos"/>
|
764
|
+
<function name="gst_message_parse_qos_values ()" link="gstreamer-GstMessage.html#gst-message-parse-qos-values"/>
|
765
|
+
<function name="gst_message_parse_qos_stats ()" link="gstreamer-GstMessage.html#gst-message-parse-qos-stats"/>
|
766
|
+
<function name="enum GstStructureChangeType" link="gstreamer-GstMessage.html#GstStructureChangeType"/>
|
767
|
+
<function name="gst_message_new_structure_change ()" link="gstreamer-GstMessage.html#gst-message-new-structure-change"/>
|
768
|
+
<function name="gst_message_parse_structure_change ()" link="gstreamer-GstMessage.html#gst-message-parse-structure-change"/>
|
769
|
+
<function name="gst_message_new_request_state ()" link="gstreamer-GstMessage.html#gst-message-new-request-state"/>
|
770
|
+
<function name="gst_message_parse_request_state ()" link="gstreamer-GstMessage.html#gst-message-parse-request-state"/>
|
771
|
+
<function name="enum GstStreamStatusType" link="gstreamer-GstMessage.html#GstStreamStatusType"/>
|
772
|
+
<function name="gst_message_new_stream_status ()" link="gstreamer-GstMessage.html#gst-message-new-stream-status"/>
|
773
|
+
<function name="gst_message_parse_stream_status ()" link="gstreamer-GstMessage.html#gst-message-parse-stream-status"/>
|
774
|
+
<function name="gst_message_set_stream_status_object ()" link="gstreamer-GstMessage.html#gst-message-set-stream-status-object"/>
|
775
|
+
<function name="gst_message_get_stream_status_object ()" link="gstreamer-GstMessage.html#gst-message-get-stream-status-object"/>
|
776
|
+
<function name="enum GstProgressType" link="gstreamer-GstMessage.html#GstProgressType"/>
|
777
|
+
<function name="gst_message_new_progress ()" link="gstreamer-GstMessage.html#gst-message-new-progress"/>
|
778
|
+
<function name="gst_message_parse_progress ()" link="gstreamer-GstMessage.html#gst-message-parse-progress"/>
|
779
|
+
<function name="struct GstMiniObject" link="gstreamer-GstMiniObject.html#GstMiniObject"/>
|
780
|
+
<function name="enum GstMiniObjectFlags" link="gstreamer-GstMiniObject.html#GstMiniObjectFlags"/>
|
781
|
+
<function name="GstMiniObjectCopyFunction ()" link="gstreamer-GstMiniObject.html#GstMiniObjectCopyFunction"/>
|
782
|
+
<function name="GstMiniObjectFinalizeFunction ()" link="gstreamer-GstMiniObject.html#GstMiniObjectFinalizeFunction"/>
|
783
|
+
<function name="GST_MINI_OBJECT_FLAGS()" link="gstreamer-GstMiniObject.html#GST-MINI-OBJECT-FLAGS:CAPS"/>
|
784
|
+
<function name="GST_MINI_OBJECT_FLAG_IS_SET()" link="gstreamer-GstMiniObject.html#GST-MINI-OBJECT-FLAG-IS-SET:CAPS"/>
|
785
|
+
<function name="GST_MINI_OBJECT_FLAG_SET()" link="gstreamer-GstMiniObject.html#GST-MINI-OBJECT-FLAG-SET:CAPS"/>
|
786
|
+
<function name="GST_MINI_OBJECT_FLAG_UNSET()" link="gstreamer-GstMiniObject.html#GST-MINI-OBJECT-FLAG-UNSET:CAPS"/>
|
787
|
+
<function name="GST_MINI_OBJECT_REFCOUNT()" link="gstreamer-GstMiniObject.html#GST-MINI-OBJECT-REFCOUNT:CAPS"/>
|
788
|
+
<function name="GST_MINI_OBJECT_REFCOUNT_VALUE()" link="gstreamer-GstMiniObject.html#GST-MINI-OBJECT-REFCOUNT-VALUE:CAPS"/>
|
789
|
+
<function name="gst_mini_object_new ()" link="gstreamer-GstMiniObject.html#gst-mini-object-new"/>
|
790
|
+
<function name="gst_mini_object_copy ()" link="gstreamer-GstMiniObject.html#gst-mini-object-copy"/>
|
791
|
+
<function name="gst_mini_object_is_writable ()" link="gstreamer-GstMiniObject.html#gst-mini-object-is-writable"/>
|
792
|
+
<function name="gst_mini_object_make_writable ()" link="gstreamer-GstMiniObject.html#gst-mini-object-make-writable"/>
|
793
|
+
<function name="gst_mini_object_ref ()" link="gstreamer-GstMiniObject.html#gst-mini-object-ref"/>
|
794
|
+
<function name="gst_mini_object_unref ()" link="gstreamer-GstMiniObject.html#gst-mini-object-unref"/>
|
795
|
+
<function name="gst_mini_object_replace ()" link="gstreamer-GstMiniObject.html#gst-mini-object-replace"/>
|
796
|
+
<function name="struct GstParamSpecMiniObject" link="gstreamer-GstMiniObject.html#GstParamSpecMiniObject"/>
|
797
|
+
<function name="gst_param_spec_mini_object ()" link="gstreamer-GstMiniObject.html#gst-param-spec-mini-object"/>
|
798
|
+
<function name="gst_value_set_mini_object ()" link="gstreamer-GstMiniObject.html#gst-value-set-mini-object"/>
|
799
|
+
<function name="gst_value_take_mini_object ()" link="gstreamer-GstMiniObject.html#gst-value-take-mini-object"/>
|
800
|
+
<function name="gst_value_get_mini_object ()" link="gstreamer-GstMiniObject.html#gst-value-get-mini-object"/>
|
801
|
+
<function name="gst_value_dup_mini_object ()" link="gstreamer-GstMiniObject.html#gst-value-dup-mini-object"/>
|
802
|
+
<function name="struct GstObject" link="GstObject.html#GstObject-struct"/>
|
803
|
+
<function name="struct GstObjectClass" link="GstObject.html#GstObjectClass"/>
|
804
|
+
<function name="enum GstObjectFlags" link="GstObject.html#GstObjectFlags"/>
|
805
|
+
<function name="GST_OBJECT_FLAGS()" link="GstObject.html#GST-OBJECT-FLAGS:CAPS"/>
|
806
|
+
<function name="GST_OBJECT_FLAG_IS_SET()" link="GstObject.html#GST-OBJECT-FLAG-IS-SET:CAPS"/>
|
807
|
+
<function name="GST_OBJECT_FLAG_SET()" link="GstObject.html#GST-OBJECT-FLAG-SET:CAPS"/>
|
808
|
+
<function name="GST_OBJECT_FLAG_UNSET()" link="GstObject.html#GST-OBJECT-FLAG-UNSET:CAPS"/>
|
809
|
+
<function name="GST_OBJECT_NAME()" link="GstObject.html#GST-OBJECT-NAME:CAPS"/>
|
810
|
+
<function name="GST_OBJECT_PARENT()" link="GstObject.html#GST-OBJECT-PARENT:CAPS"/>
|
811
|
+
<function name="GST_OBJECT_IS_DISPOSING()" link="GstObject.html#GST-OBJECT-IS-DISPOSING:CAPS"/>
|
812
|
+
<function name="GST_OBJECT_IS_FLOATING()" link="GstObject.html#GST-OBJECT-IS-FLOATING:CAPS"/>
|
813
|
+
<function name="GST_OBJECT_REFCOUNT()" link="GstObject.html#GST-OBJECT-REFCOUNT:CAPS"/>
|
814
|
+
<function name="GST_OBJECT_REFCOUNT_VALUE()" link="GstObject.html#GST-OBJECT-REFCOUNT-VALUE:CAPS"/>
|
815
|
+
<function name="GST_CLASS_GET_LOCK()" link="GstObject.html#GST-CLASS-GET-LOCK:CAPS"/>
|
816
|
+
<function name="GST_CLASS_LOCK()" link="GstObject.html#GST-CLASS-LOCK:CAPS"/>
|
817
|
+
<function name="GST_CLASS_TRYLOCK()" link="GstObject.html#GST-CLASS-TRYLOCK:CAPS"/>
|
818
|
+
<function name="GST_CLASS_UNLOCK()" link="GstObject.html#GST-CLASS-UNLOCK:CAPS"/>
|
819
|
+
<function name="GST_OBJECT_LOCK()" link="GstObject.html#GST-OBJECT-LOCK:CAPS"/>
|
820
|
+
<function name="GST_OBJECT_TRYLOCK()" link="GstObject.html#GST-OBJECT-TRYLOCK:CAPS"/>
|
821
|
+
<function name="GST_OBJECT_UNLOCK()" link="GstObject.html#GST-OBJECT-UNLOCK:CAPS"/>
|
822
|
+
<function name="GST_OBJECT_GET_LOCK()" link="GstObject.html#GST-OBJECT-GET-LOCK:CAPS"/>
|
823
|
+
<function name="gst_object_set_name ()" link="GstObject.html#gst-object-set-name"/>
|
824
|
+
<function name="gst_object_get_name ()" link="GstObject.html#gst-object-get-name"/>
|
825
|
+
<function name="gst_object_set_parent ()" link="GstObject.html#gst-object-set-parent"/>
|
826
|
+
<function name="gst_object_get_parent ()" link="GstObject.html#gst-object-get-parent"/>
|
827
|
+
<function name="gst_object_unparent ()" link="GstObject.html#gst-object-unparent"/>
|
828
|
+
<function name="gst_object_get_name_prefix ()" link="GstObject.html#gst-object-get-name-prefix"/>
|
829
|
+
<function name="gst_object_set_name_prefix ()" link="GstObject.html#gst-object-set-name-prefix"/>
|
830
|
+
<function name="gst_object_default_deep_notify ()" link="GstObject.html#gst-object-default-deep-notify"/>
|
831
|
+
<function name="gst_object_default_error ()" link="GstObject.html#gst-object-default-error"/>
|
832
|
+
<function name="gst_object_check_uniqueness ()" link="GstObject.html#gst-object-check-uniqueness"/>
|
833
|
+
<function name="gst_object_has_ancestor ()" link="GstObject.html#gst-object-has-ancestor"/>
|
834
|
+
<function name="gst_object_save_thyself ()" link="GstObject.html#gst-object-save-thyself"/>
|
835
|
+
<function name="gst_object_restore_thyself ()" link="GstObject.html#gst-object-restore-thyself"/>
|
836
|
+
<function name="gst_object_ref ()" link="GstObject.html#gst-object-ref"/>
|
837
|
+
<function name="gst_object_unref ()" link="GstObject.html#gst-object-unref"/>
|
838
|
+
<function name="gst_object_ref_sink ()" link="GstObject.html#gst-object-ref-sink"/>
|
839
|
+
<function name="gst_object_sink ()" link="GstObject.html#gst-object-sink"/>
|
840
|
+
<function name="gst_object_replace ()" link="GstObject.html#gst-object-replace"/>
|
841
|
+
<function name="gst_object_get_path_string ()" link="GstObject.html#gst-object-get-path-string"/>
|
842
|
+
<function name="gst_class_signal_connect ()" link="GstObject.html#gst-class-signal-connect"/>
|
843
|
+
<function name="gst_class_signal_emit_by_name ()" link="GstObject.html#gst-class-signal-emit-by-name"/>
|
844
|
+
<function name="The "name" property" link="GstObject.html#GstObject--name"/>
|
845
|
+
<function name="The "deep-notify" signal" link="GstObject.html#GstObject-deep-notify"/>
|
846
|
+
<function name="The "object-saved" signal" link="GstObject.html#GstObject-object-saved"/>
|
847
|
+
<function name="The "parent-set" signal" link="GstObject.html#GstObject-parent-set"/>
|
848
|
+
<function name="The "parent-unset" signal" link="GstObject.html#GstObject-parent-unset"/>
|
849
|
+
<function name="struct GstPad" link="GstPad.html#GstPad-struct"/>
|
850
|
+
<function name="enum GstPadDirection" link="GstPad.html#GstPadDirection"/>
|
851
|
+
<function name="enum GstPadFlags" link="GstPad.html#GstPadFlags"/>
|
852
|
+
<function name="enum GstPadLinkReturn" link="GstPad.html#GstPadLinkReturn"/>
|
853
|
+
<function name="GST_PAD_LINK_FAILED()" link="GstPad.html#GST-PAD-LINK-FAILED:CAPS"/>
|
854
|
+
<function name="GST_PAD_LINK_SUCCESSFUL()" link="GstPad.html#GST-PAD-LINK-SUCCESSFUL:CAPS"/>
|
855
|
+
<function name="enum GstPadLinkCheck" link="GstPad.html#GstPadLinkCheck"/>
|
856
|
+
<function name="GST_PAD_LINK_CHECK_DEFAULT" link="GstPad.html#GST-PAD-LINK-CHECK-DEFAULT:CAPS"/>
|
857
|
+
<function name="enum GstFlowReturn" link="GstPad.html#GstFlowReturn"/>
|
858
|
+
<function name="enum GstActivateMode" link="GstPad.html#GstActivateMode"/>
|
859
|
+
<function name="gst_pad_get_name()" link="GstPad.html#gst-pad-get-name"/>
|
860
|
+
<function name="gst_pad_get_direction ()" link="GstPad.html#gst-pad-get-direction"/>
|
861
|
+
<function name="gst_pad_get_parent()" link="GstPad.html#gst-pad-get-parent"/>
|
862
|
+
<function name="gst_pad_get_parent_element ()" link="GstPad.html#gst-pad-get-parent-element"/>
|
863
|
+
<function name="gst_pad_get_pad_template ()" link="GstPad.html#gst-pad-get-pad-template"/>
|
864
|
+
<function name="gst_pad_link ()" link="GstPad.html#gst-pad-link"/>
|
865
|
+
<function name="gst_pad_link_full ()" link="GstPad.html#gst-pad-link-full"/>
|
866
|
+
<function name="gst_pad_unlink ()" link="GstPad.html#gst-pad-unlink"/>
|
867
|
+
<function name="gst_pad_is_linked ()" link="GstPad.html#gst-pad-is-linked"/>
|
868
|
+
<function name="gst_pad_can_link ()" link="GstPad.html#gst-pad-can-link"/>
|
869
|
+
<function name="gst_pad_get_caps ()" link="GstPad.html#gst-pad-get-caps"/>
|
870
|
+
<function name="gst_pad_get_caps_reffed ()" link="GstPad.html#gst-pad-get-caps-reffed"/>
|
871
|
+
<function name="gst_pad_get_allowed_caps ()" link="GstPad.html#gst-pad-get-allowed-caps"/>
|
872
|
+
<function name="gst_pad_get_negotiated_caps ()" link="GstPad.html#gst-pad-get-negotiated-caps"/>
|
873
|
+
<function name="gst_pad_get_pad_template_caps ()" link="GstPad.html#gst-pad-get-pad-template-caps"/>
|
874
|
+
<function name="gst_pad_set_caps ()" link="GstPad.html#gst-pad-set-caps"/>
|
875
|
+
<function name="gst_pad_get_peer ()" link="GstPad.html#gst-pad-get-peer"/>
|
876
|
+
<function name="gst_pad_peer_get_caps ()" link="GstPad.html#gst-pad-peer-get-caps"/>
|
877
|
+
<function name="gst_pad_peer_get_caps_reffed ()" link="GstPad.html#gst-pad-peer-get-caps-reffed"/>
|
878
|
+
<function name="gst_pad_use_fixed_caps ()" link="GstPad.html#gst-pad-use-fixed-caps"/>
|
879
|
+
<function name="gst_pad_is_active ()" link="GstPad.html#gst-pad-is-active"/>
|
880
|
+
<function name="gst_pad_set_blocked ()" link="GstPad.html#gst-pad-set-blocked"/>
|
881
|
+
<function name="gst_pad_set_blocked_async ()" link="GstPad.html#gst-pad-set-blocked-async"/>
|
882
|
+
<function name="gst_pad_set_blocked_async_full ()" link="GstPad.html#gst-pad-set-blocked-async-full"/>
|
883
|
+
<function name="GstPadBlockCallback ()" link="GstPad.html#GstPadBlockCallback"/>
|
884
|
+
<function name="gst_pad_is_blocked ()" link="GstPad.html#gst-pad-is-blocked"/>
|
885
|
+
<function name="gst_pad_is_blocking ()" link="GstPad.html#gst-pad-is-blocking"/>
|
886
|
+
<function name="gst_pad_add_data_probe ()" link="GstPad.html#gst-pad-add-data-probe"/>
|
887
|
+
<function name="gst_pad_add_data_probe_full ()" link="GstPad.html#gst-pad-add-data-probe-full"/>
|
888
|
+
<function name="gst_pad_add_buffer_probe ()" link="GstPad.html#gst-pad-add-buffer-probe"/>
|
889
|
+
<function name="gst_pad_add_buffer_probe_full ()" link="GstPad.html#gst-pad-add-buffer-probe-full"/>
|
890
|
+
<function name="gst_pad_add_event_probe ()" link="GstPad.html#gst-pad-add-event-probe"/>
|
891
|
+
<function name="gst_pad_add_event_probe_full ()" link="GstPad.html#gst-pad-add-event-probe-full"/>
|
892
|
+
<function name="gst_pad_remove_data_probe ()" link="GstPad.html#gst-pad-remove-data-probe"/>
|
893
|
+
<function name="gst_pad_remove_buffer_probe ()" link="GstPad.html#gst-pad-remove-buffer-probe"/>
|
894
|
+
<function name="gst_pad_remove_event_probe ()" link="GstPad.html#gst-pad-remove-event-probe"/>
|
895
|
+
<function name="gst_pad_new ()" link="GstPad.html#gst-pad-new"/>
|
896
|
+
<function name="gst_pad_new_from_template ()" link="GstPad.html#gst-pad-new-from-template"/>
|
897
|
+
<function name="gst_pad_new_from_static_template ()" link="GstPad.html#gst-pad-new-from-static-template"/>
|
898
|
+
<function name="gst_pad_alloc_buffer ()" link="GstPad.html#gst-pad-alloc-buffer"/>
|
899
|
+
<function name="gst_pad_alloc_buffer_and_set_caps ()" link="GstPad.html#gst-pad-alloc-buffer-and-set-caps"/>
|
900
|
+
<function name="gst_pad_set_bufferalloc_function ()" link="GstPad.html#gst-pad-set-bufferalloc-function"/>
|
901
|
+
<function name="GstPadBufferAllocFunction ()" link="GstPad.html#GstPadBufferAllocFunction"/>
|
902
|
+
<function name="gst_pad_set_chain_function ()" link="GstPad.html#gst-pad-set-chain-function"/>
|
903
|
+
<function name="GstPadChainFunction ()" link="GstPad.html#GstPadChainFunction"/>
|
904
|
+
<function name="gst_pad_set_chain_list_function ()" link="GstPad.html#gst-pad-set-chain-list-function"/>
|
905
|
+
<function name="GstPadChainListFunction ()" link="GstPad.html#GstPadChainListFunction"/>
|
906
|
+
<function name="gst_pad_set_checkgetrange_function ()" link="GstPad.html#gst-pad-set-checkgetrange-function"/>
|
907
|
+
<function name="GstPadCheckGetRangeFunction ()" link="GstPad.html#GstPadCheckGetRangeFunction"/>
|
908
|
+
<function name="gst_pad_get_range ()" link="GstPad.html#gst-pad-get-range"/>
|
909
|
+
<function name="gst_pad_set_getrange_function ()" link="GstPad.html#gst-pad-set-getrange-function"/>
|
910
|
+
<function name="GstPadGetRangeFunction ()" link="GstPad.html#GstPadGetRangeFunction"/>
|
911
|
+
<function name="gst_pad_set_event_function ()" link="GstPad.html#gst-pad-set-event-function"/>
|
912
|
+
<function name="GstPadEventFunction ()" link="GstPad.html#GstPadEventFunction"/>
|
913
|
+
<function name="gst_pad_set_link_function ()" link="GstPad.html#gst-pad-set-link-function"/>
|
914
|
+
<function name="GstPadLinkFunction ()" link="GstPad.html#GstPadLinkFunction"/>
|
915
|
+
<function name="gst_pad_set_unlink_function ()" link="GstPad.html#gst-pad-set-unlink-function"/>
|
916
|
+
<function name="GstPadUnlinkFunction ()" link="GstPad.html#GstPadUnlinkFunction"/>
|
917
|
+
<function name="gst_pad_accept_caps ()" link="GstPad.html#gst-pad-accept-caps"/>
|
918
|
+
<function name="gst_pad_set_acceptcaps_function ()" link="GstPad.html#gst-pad-set-acceptcaps-function"/>
|
919
|
+
<function name="GstPadAcceptCapsFunction ()" link="GstPad.html#GstPadAcceptCapsFunction"/>
|
920
|
+
<function name="gst_pad_set_getcaps_function ()" link="GstPad.html#gst-pad-set-getcaps-function"/>
|
921
|
+
<function name="GstPadGetCapsFunction ()" link="GstPad.html#GstPadGetCapsFunction"/>
|
922
|
+
<function name="gst_pad_proxy_getcaps ()" link="GstPad.html#gst-pad-proxy-getcaps"/>
|
923
|
+
<function name="gst_pad_set_setcaps_function ()" link="GstPad.html#gst-pad-set-setcaps-function"/>
|
924
|
+
<function name="GstPadSetCapsFunction ()" link="GstPad.html#GstPadSetCapsFunction"/>
|
925
|
+
<function name="gst_pad_proxy_setcaps ()" link="GstPad.html#gst-pad-proxy-setcaps"/>
|
926
|
+
<function name="gst_pad_fixate_caps ()" link="GstPad.html#gst-pad-fixate-caps"/>
|
927
|
+
<function name="gst_pad_set_fixatecaps_function ()" link="GstPad.html#gst-pad-set-fixatecaps-function"/>
|
928
|
+
<function name="GstPadFixateCapsFunction ()" link="GstPad.html#GstPadFixateCapsFunction"/>
|
929
|
+
<function name="gst_pad_get_fixed_caps_func ()" link="GstPad.html#gst-pad-get-fixed-caps-func"/>
|
930
|
+
<function name="gst_pad_peer_accept_caps ()" link="GstPad.html#gst-pad-peer-accept-caps"/>
|
931
|
+
<function name="gst_pad_set_activate_function ()" link="GstPad.html#gst-pad-set-activate-function"/>
|
932
|
+
<function name="GstPadActivateFunction ()" link="GstPad.html#GstPadActivateFunction"/>
|
933
|
+
<function name="gst_pad_set_activatepush_function ()" link="GstPad.html#gst-pad-set-activatepush-function"/>
|
934
|
+
<function name="gst_pad_set_activatepull_function ()" link="GstPad.html#gst-pad-set-activatepull-function"/>
|
935
|
+
<function name="GstPadActivateModeFunction ()" link="GstPad.html#GstPadActivateModeFunction"/>
|
936
|
+
<function name="gst_pad_push ()" link="GstPad.html#gst-pad-push"/>
|
937
|
+
<function name="gst_pad_push_event ()" link="GstPad.html#gst-pad-push-event"/>
|
938
|
+
<function name="gst_pad_push_list ()" link="GstPad.html#gst-pad-push-list"/>
|
939
|
+
<function name="gst_pad_check_pull_range ()" link="GstPad.html#gst-pad-check-pull-range"/>
|
940
|
+
<function name="gst_pad_pull_range ()" link="GstPad.html#gst-pad-pull-range"/>
|
941
|
+
<function name="gst_pad_activate_pull ()" link="GstPad.html#gst-pad-activate-pull"/>
|
942
|
+
<function name="gst_pad_activate_push ()" link="GstPad.html#gst-pad-activate-push"/>
|
943
|
+
<function name="gst_pad_send_event ()" link="GstPad.html#gst-pad-send-event"/>
|
944
|
+
<function name="gst_pad_event_default ()" link="GstPad.html#gst-pad-event-default"/>
|
945
|
+
<function name="gst_pad_query ()" link="GstPad.html#gst-pad-query"/>
|
946
|
+
<function name="gst_pad_peer_query ()" link="GstPad.html#gst-pad-peer-query"/>
|
947
|
+
<function name="gst_pad_query_default ()" link="GstPad.html#gst-pad-query-default"/>
|
948
|
+
<function name="gst_pad_query_position ()" link="GstPad.html#gst-pad-query-position"/>
|
949
|
+
<function name="gst_pad_query_duration ()" link="GstPad.html#gst-pad-query-duration"/>
|
950
|
+
<function name="gst_pad_query_convert ()" link="GstPad.html#gst-pad-query-convert"/>
|
951
|
+
<function name="gst_pad_query_peer_position ()" link="GstPad.html#gst-pad-query-peer-position"/>
|
952
|
+
<function name="gst_pad_query_peer_duration ()" link="GstPad.html#gst-pad-query-peer-duration"/>
|
953
|
+
<function name="gst_pad_query_peer_convert ()" link="GstPad.html#gst-pad-query-peer-convert"/>
|
954
|
+
<function name="gst_pad_set_query_function ()" link="GstPad.html#gst-pad-set-query-function"/>
|
955
|
+
<function name="GstPadQueryFunction ()" link="GstPad.html#GstPadQueryFunction"/>
|
956
|
+
<function name="gst_pad_set_query_type_function ()" link="GstPad.html#gst-pad-set-query-type-function"/>
|
957
|
+
<function name="GstPadQueryTypeFunction ()" link="GstPad.html#GstPadQueryTypeFunction"/>
|
958
|
+
<function name="gst_pad_get_query_types ()" link="GstPad.html#gst-pad-get-query-types"/>
|
959
|
+
<function name="gst_pad_get_query_types_default ()" link="GstPad.html#gst-pad-get-query-types-default"/>
|
960
|
+
<function name="gst_pad_set_iterate_internal_links_function ()" link="GstPad.html#gst-pad-set-iterate-internal-links-function"/>
|
961
|
+
<function name="GstPadIterIntLinkFunction ()" link="GstPad.html#GstPadIterIntLinkFunction"/>
|
962
|
+
<function name="gst_pad_iterate_internal_links ()" link="GstPad.html#gst-pad-iterate-internal-links"/>
|
963
|
+
<function name="gst_pad_iterate_internal_links_default ()" link="GstPad.html#gst-pad-iterate-internal-links-default"/>
|
964
|
+
<function name="gst_pad_set_internal_link_function ()" link="GstPad.html#gst-pad-set-internal-link-function"/>
|
965
|
+
<function name="GstPadIntLinkFunction ()" link="GstPad.html#GstPadIntLinkFunction"/>
|
966
|
+
<function name="gst_pad_get_internal_links ()" link="GstPad.html#gst-pad-get-internal-links"/>
|
967
|
+
<function name="gst_pad_get_internal_links_default ()" link="GstPad.html#gst-pad-get-internal-links-default"/>
|
968
|
+
<function name="gst_pad_load_and_link ()" link="GstPad.html#gst-pad-load-and-link"/>
|
969
|
+
<function name="gst_pad_dispatcher ()" link="GstPad.html#gst-pad-dispatcher"/>
|
970
|
+
<function name="GstPadDispatcherFunction ()" link="GstPad.html#GstPadDispatcherFunction"/>
|
971
|
+
<function name="gst_pad_set_element_private ()" link="GstPad.html#gst-pad-set-element-private"/>
|
972
|
+
<function name="gst_pad_get_element_private ()" link="GstPad.html#gst-pad-get-element-private"/>
|
973
|
+
<function name="gst_pad_chain ()" link="GstPad.html#gst-pad-chain"/>
|
974
|
+
<function name="gst_pad_chain_list ()" link="GstPad.html#gst-pad-chain-list"/>
|
975
|
+
<function name="gst_pad_start_task ()" link="GstPad.html#gst-pad-start-task"/>
|
976
|
+
<function name="gst_pad_pause_task ()" link="GstPad.html#gst-pad-pause-task"/>
|
977
|
+
<function name="gst_pad_stop_task ()" link="GstPad.html#gst-pad-stop-task"/>
|
978
|
+
<function name="gst_pad_set_active ()" link="GstPad.html#gst-pad-set-active"/>
|
979
|
+
<function name="GST_PAD_CAPS()" link="GstPad.html#GST-PAD-CAPS"/>
|
980
|
+
<function name="GST_PAD_GET_STREAM_LOCK()" link="GstPad.html#GST-PAD-GET-STREAM-LOCK:CAPS"/>
|
981
|
+
<function name="GST_PAD_STREAM_LOCK()" link="GstPad.html#GST-PAD-STREAM-LOCK:CAPS"/>
|
982
|
+
<function name="GST_PAD_STREAM_LOCK_FULL()" link="GstPad.html#GST-PAD-STREAM-LOCK-FULL:CAPS"/>
|
983
|
+
<function name="GST_PAD_STREAM_TRYLOCK()" link="GstPad.html#GST-PAD-STREAM-TRYLOCK:CAPS"/>
|
984
|
+
<function name="GST_PAD_STREAM_UNLOCK()" link="GstPad.html#GST-PAD-STREAM-UNLOCK:CAPS"/>
|
985
|
+
<function name="GST_PAD_STREAM_UNLOCK_FULL()" link="GstPad.html#GST-PAD-STREAM-UNLOCK-FULL:CAPS"/>
|
986
|
+
<function name="GST_FLOW_IS_FATAL()" link="GstPad.html#GST-FLOW-IS-FATAL:CAPS"/>
|
987
|
+
<function name="GST_FLOW_IS_SUCCESS()" link="GstPad.html#GST-FLOW-IS-SUCCESS:CAPS"/>
|
988
|
+
<function name="The "caps" property" link="GstPad.html#GstPad--caps"/>
|
989
|
+
<function name="The "direction" property" link="GstPad.html#GstPad--direction"/>
|
990
|
+
<function name="The "template" property" link="GstPad.html#GstPad--template"/>
|
991
|
+
<function name="The "have-data" signal" link="GstPad.html#GstPad-have-data"/>
|
992
|
+
<function name="The "linked" signal" link="GstPad.html#GstPad-linked"/>
|
993
|
+
<function name="The "request-link" signal" link="GstPad.html#GstPad-request-link"/>
|
994
|
+
<function name="The "unlinked" signal" link="GstPad.html#GstPad-unlinked"/>
|
995
|
+
<function name="struct GstStaticPadTemplate" link="GstPadTemplate.html#GstStaticPadTemplate"/>
|
996
|
+
<function name="GST_STATIC_PAD_TEMPLATE()" link="GstPadTemplate.html#GST-STATIC-PAD-TEMPLATE:CAPS"/>
|
997
|
+
<function name="gst_static_pad_template_get ()" link="GstPadTemplate.html#gst-static-pad-template-get"/>
|
998
|
+
<function name="gst_static_pad_template_get_caps ()" link="GstPadTemplate.html#gst-static-pad-template-get-caps"/>
|
999
|
+
<function name="GstPadTemplate" link="GstPadTemplate.html#GstPadTemplate-struct"/>
|
1000
|
+
<function name="enum GstPadTemplateFlags" link="GstPadTemplate.html#GstPadTemplateFlags"/>
|
1001
|
+
<function name="enum GstPadPresence" link="GstPadTemplate.html#GstPadPresence"/>
|
1002
|
+
<function name="GST_PAD_TEMPLATE_NAME_TEMPLATE()" link="GstPadTemplate.html#GST-PAD-TEMPLATE-NAME-TEMPLATE:CAPS"/>
|
1003
|
+
<function name="GST_PAD_TEMPLATE_DIRECTION()" link="GstPadTemplate.html#GST-PAD-TEMPLATE-DIRECTION:CAPS"/>
|
1004
|
+
<function name="GST_PAD_TEMPLATE_PRESENCE()" link="GstPadTemplate.html#GST-PAD-TEMPLATE-PRESENCE:CAPS"/>
|
1005
|
+
<function name="GST_PAD_TEMPLATE_CAPS()" link="GstPadTemplate.html#GST-PAD-TEMPLATE-CAPS"/>
|
1006
|
+
<function name="GST_PAD_TEMPLATE_IS_FIXED()" link="GstPadTemplate.html#GST-PAD-TEMPLATE-IS-FIXED:CAPS"/>
|
1007
|
+
<function name="gst_pad_template_new ()" link="GstPadTemplate.html#gst-pad-template-new"/>
|
1008
|
+
<function name="gst_pad_template_get_caps ()" link="GstPadTemplate.html#gst-pad-template-get-caps"/>
|
1009
|
+
<function name="The "caps" property" link="GstPadTemplate.html#GstPadTemplate--caps"/>
|
1010
|
+
<function name="The "direction" property" link="GstPadTemplate.html#GstPadTemplate--direction"/>
|
1011
|
+
<function name="The "name-template" property" link="GstPadTemplate.html#GstPadTemplate--name-template"/>
|
1012
|
+
<function name="The "presence" property" link="GstPadTemplate.html#GstPadTemplate--presence"/>
|
1013
|
+
<function name="The "pad-created" signal" link="GstPadTemplate.html#GstPadTemplate-pad-created"/>
|
1014
|
+
<function name="GST_PARAM_CONTROLLABLE" link="gstreamer-GstParamSpec.html#GST-PARAM-CONTROLLABLE:CAPS"/>
|
1015
|
+
<function name="GST_PARAM_USER_SHIFT" link="gstreamer-GstParamSpec.html#GST-PARAM-USER-SHIFT:CAPS"/>
|
1016
|
+
<function name="GST_PARAM_MUTABLE_PAUSED" link="gstreamer-GstParamSpec.html#GST-PARAM-MUTABLE-PAUSED:CAPS"/>
|
1017
|
+
<function name="GST_PARAM_MUTABLE_PLAYING" link="gstreamer-GstParamSpec.html#GST-PARAM-MUTABLE-PLAYING:CAPS"/>
|
1018
|
+
<function name="GST_PARAM_MUTABLE_READY" link="gstreamer-GstParamSpec.html#GST-PARAM-MUTABLE-READY:CAPS"/>
|
1019
|
+
<function name="struct GstParamSpecFraction" link="gstreamer-GstParamSpec.html#GstParamSpecFraction"/>
|
1020
|
+
<function name="gst_param_spec_fraction ()" link="gstreamer-GstParamSpec.html#gst-param-spec-fraction"/>
|
1021
|
+
<function name="gst_parse_error_quark ()" link="gstreamer-GstParse.html#gst-parse-error-quark"/>
|
1022
|
+
<function name="GST_PARSE_ERROR" link="gstreamer-GstParse.html#GST-PARSE-ERROR:CAPS"/>
|
1023
|
+
<function name="enum GstParseError" link="gstreamer-GstParse.html#GstParseError"/>
|
1024
|
+
<function name="GstParseContext" link="gstreamer-GstParse.html#GstParseContext"/>
|
1025
|
+
<function name="enum GstParseFlags" link="gstreamer-GstParse.html#GstParseFlags"/>
|
1026
|
+
<function name="gst_parse_launch ()" link="gstreamer-GstParse.html#gst-parse-launch"/>
|
1027
|
+
<function name="gst_parse_launch_full ()" link="gstreamer-GstParse.html#gst-parse-launch-full"/>
|
1028
|
+
<function name="gst_parse_launchv ()" link="gstreamer-GstParse.html#gst-parse-launchv"/>
|
1029
|
+
<function name="gst_parse_launchv_full ()" link="gstreamer-GstParse.html#gst-parse-launchv-full"/>
|
1030
|
+
<function name="gst_parse_bin_from_description ()" link="gstreamer-GstParse.html#gst-parse-bin-from-description"/>
|
1031
|
+
<function name="gst_parse_bin_from_description_full ()" link="gstreamer-GstParse.html#gst-parse-bin-from-description-full"/>
|
1032
|
+
<function name="gst_parse_context_new ()" link="gstreamer-GstParse.html#gst-parse-context-new"/>
|
1033
|
+
<function name="gst_parse_context_free ()" link="gstreamer-GstParse.html#gst-parse-context-free"/>
|
1034
|
+
<function name="gst_parse_context_get_missing_elements ()" link="gstreamer-GstParse.html#gst-parse-context-get-missing-elements"/>
|
1035
|
+
<function name="struct GstPipeline" link="GstPipeline.html#GstPipeline-struct"/>
|
1036
|
+
<function name="enum GstPipelineFlags" link="GstPipeline.html#GstPipelineFlags"/>
|
1037
|
+
<function name="gst_pipeline_new ()" link="GstPipeline.html#gst-pipeline-new"/>
|
1038
|
+
<function name="gst_pipeline_get_bus ()" link="GstPipeline.html#gst-pipeline-get-bus"/>
|
1039
|
+
<function name="gst_pipeline_set_clock ()" link="GstPipeline.html#gst-pipeline-set-clock"/>
|
1040
|
+
<function name="gst_pipeline_get_clock ()" link="GstPipeline.html#gst-pipeline-get-clock"/>
|
1041
|
+
<function name="gst_pipeline_use_clock ()" link="GstPipeline.html#gst-pipeline-use-clock"/>
|
1042
|
+
<function name="gst_pipeline_auto_clock ()" link="GstPipeline.html#gst-pipeline-auto-clock"/>
|
1043
|
+
<function name="gst_pipeline_set_new_stream_time ()" link="GstPipeline.html#gst-pipeline-set-new-stream-time"/>
|
1044
|
+
<function name="gst_pipeline_get_last_stream_time ()" link="GstPipeline.html#gst-pipeline-get-last-stream-time"/>
|
1045
|
+
<function name="gst_pipeline_set_auto_flush_bus ()" link="GstPipeline.html#gst-pipeline-set-auto-flush-bus"/>
|
1046
|
+
<function name="gst_pipeline_get_auto_flush_bus ()" link="GstPipeline.html#gst-pipeline-get-auto-flush-bus"/>
|
1047
|
+
<function name="gst_pipeline_set_delay ()" link="GstPipeline.html#gst-pipeline-set-delay"/>
|
1048
|
+
<function name="gst_pipeline_get_delay ()" link="GstPipeline.html#gst-pipeline-get-delay"/>
|
1049
|
+
<function name="The "auto-flush-bus" property" link="GstPipeline.html#GstPipeline--auto-flush-bus"/>
|
1050
|
+
<function name="The "delay" property" link="GstPipeline.html#GstPipeline--delay"/>
|
1051
|
+
<function name="gst_plugin_error_quark ()" link="GstPlugin.html#gst-plugin-error-quark"/>
|
1052
|
+
<function name="GST_PLUGIN_ERROR" link="GstPlugin.html#GST-PLUGIN-ERROR:CAPS"/>
|
1053
|
+
<function name="enum GstPluginError" link="GstPlugin.html#GstPluginError"/>
|
1054
|
+
<function name="struct GstPlugin" link="GstPlugin.html#GstPlugin-struct"/>
|
1055
|
+
<function name="struct GstPluginDesc" link="GstPlugin.html#GstPluginDesc"/>
|
1056
|
+
<function name="GstPluginInitFunc ()" link="GstPlugin.html#GstPluginInitFunc"/>
|
1057
|
+
<function name="GstPluginInitFullFunc ()" link="GstPlugin.html#GstPluginInitFullFunc"/>
|
1058
|
+
<function name="GST_PLUGIN_DEFINE()" link="GstPlugin.html#GST-PLUGIN-DEFINE:CAPS"/>
|
1059
|
+
<function name="GST_PLUGIN_DEFINE_STATIC()" link="GstPlugin.html#GST-PLUGIN-DEFINE-STATIC:CAPS"/>
|
1060
|
+
<function name="GST_LICENSE_UNKNOWN" link="GstPlugin.html#GST-LICENSE-UNKNOWN:CAPS"/>
|
1061
|
+
<function name="GstPluginFilter ()" link="GstPlugin.html#GstPluginFilter"/>
|
1062
|
+
<function name="gst_plugin_get_name ()" link="GstPlugin.html#gst-plugin-get-name"/>
|
1063
|
+
<function name="gst_plugin_get_description ()" link="GstPlugin.html#gst-plugin-get-description"/>
|
1064
|
+
<function name="gst_plugin_get_filename ()" link="GstPlugin.html#gst-plugin-get-filename"/>
|
1065
|
+
<function name="gst_plugin_get_license ()" link="GstPlugin.html#gst-plugin-get-license"/>
|
1066
|
+
<function name="gst_plugin_get_package ()" link="GstPlugin.html#gst-plugin-get-package"/>
|
1067
|
+
<function name="gst_plugin_get_origin ()" link="GstPlugin.html#gst-plugin-get-origin"/>
|
1068
|
+
<function name="gst_plugin_get_source ()" link="GstPlugin.html#gst-plugin-get-source"/>
|
1069
|
+
<function name="gst_plugin_get_version ()" link="GstPlugin.html#gst-plugin-get-version"/>
|
1070
|
+
<function name="gst_plugin_get_module ()" link="GstPlugin.html#gst-plugin-get-module"/>
|
1071
|
+
<function name="gst_plugin_is_loaded ()" link="GstPlugin.html#gst-plugin-is-loaded"/>
|
1072
|
+
<function name="gst_plugin_get_cache_data ()" link="GstPlugin.html#gst-plugin-get-cache-data"/>
|
1073
|
+
<function name="gst_plugin_set_cache_data ()" link="GstPlugin.html#gst-plugin-set-cache-data"/>
|
1074
|
+
<function name="gst_plugin_name_filter ()" link="GstPlugin.html#gst-plugin-name-filter"/>
|
1075
|
+
<function name="gst_plugin_load_file ()" link="GstPlugin.html#gst-plugin-load-file"/>
|
1076
|
+
<function name="gst_plugin_load ()" link="GstPlugin.html#gst-plugin-load"/>
|
1077
|
+
<function name="gst_plugin_load_by_name ()" link="GstPlugin.html#gst-plugin-load-by-name"/>
|
1078
|
+
<function name="gst_plugin_list_free ()" link="GstPlugin.html#gst-plugin-list-free"/>
|
1079
|
+
<function name="gst_plugin_register_static ()" link="GstPlugin.html#gst-plugin-register-static"/>
|
1080
|
+
<function name="gst_plugin_register_static_full ()" link="GstPlugin.html#gst-plugin-register-static-full"/>
|
1081
|
+
<function name="enum GstPluginFlags" link="GstPlugin.html#GstPluginFlags"/>
|
1082
|
+
<function name="enum GstPluginDependencyFlags" link="GstPlugin.html#GstPluginDependencyFlags"/>
|
1083
|
+
<function name="gst_plugin_add_dependency ()" link="GstPlugin.html#gst-plugin-add-dependency"/>
|
1084
|
+
<function name="gst_plugin_add_dependency_simple ()" link="GstPlugin.html#gst-plugin-add-dependency-simple"/>
|
1085
|
+
<function name="struct GstPluginFeature" link="GstPluginFeature.html#GstPluginFeature-struct"/>
|
1086
|
+
<function name="GST_PLUGIN_FEATURE_NAME()" link="GstPluginFeature.html#GST-PLUGIN-FEATURE-NAME:CAPS"/>
|
1087
|
+
<function name="GstTypeNameData" link="GstPluginFeature.html#GstTypeNameData"/>
|
1088
|
+
<function name="GstPluginFeatureFilter ()" link="GstPluginFeature.html#GstPluginFeatureFilter"/>
|
1089
|
+
<function name="enum GstRank" link="GstPluginFeature.html#GstRank"/>
|
1090
|
+
<function name="gst_plugin_feature_type_name_filter ()" link="GstPluginFeature.html#gst-plugin-feature-type-name-filter"/>
|
1091
|
+
<function name="gst_plugin_feature_set_rank ()" link="GstPluginFeature.html#gst-plugin-feature-set-rank"/>
|
1092
|
+
<function name="gst_plugin_feature_set_name ()" link="GstPluginFeature.html#gst-plugin-feature-set-name"/>
|
1093
|
+
<function name="gst_plugin_feature_get_rank ()" link="GstPluginFeature.html#gst-plugin-feature-get-rank"/>
|
1094
|
+
<function name="gst_plugin_feature_get_name ()" link="GstPluginFeature.html#gst-plugin-feature-get-name"/>
|
1095
|
+
<function name="gst_plugin_feature_load ()" link="GstPluginFeature.html#gst-plugin-feature-load"/>
|
1096
|
+
<function name="gst_plugin_feature_list_copy ()" link="GstPluginFeature.html#gst-plugin-feature-list-copy"/>
|
1097
|
+
<function name="gst_plugin_feature_list_free ()" link="GstPluginFeature.html#gst-plugin-feature-list-free"/>
|
1098
|
+
<function name="GST_PLUGIN_FEATURE_LIST_DEBUG()" link="GstPluginFeature.html#GST-PLUGIN-FEATURE-LIST-DEBUG:CAPS"/>
|
1099
|
+
<function name="gst_plugin_feature_check_version ()" link="GstPluginFeature.html#gst-plugin-feature-check-version"/>
|
1100
|
+
<function name="gst_plugin_feature_rank_compare_func ()" link="GstPluginFeature.html#gst-plugin-feature-rank-compare-func"/>
|
1101
|
+
<function name="GstPoll" link="gstreamer-GstPoll.html#GstPoll"/>
|
1102
|
+
<function name="GstPollFD" link="gstreamer-GstPoll.html#GstPollFD"/>
|
1103
|
+
<function name="GST_POLL_FD_INIT" link="gstreamer-GstPoll.html#GST-POLL-FD-INIT:CAPS"/>
|
1104
|
+
<function name="gst_poll_add_fd ()" link="gstreamer-GstPoll.html#gst-poll-add-fd"/>
|
1105
|
+
<function name="gst_poll_fd_can_read ()" link="gstreamer-GstPoll.html#gst-poll-fd-can-read"/>
|
1106
|
+
<function name="gst_poll_fd_can_write ()" link="gstreamer-GstPoll.html#gst-poll-fd-can-write"/>
|
1107
|
+
<function name="gst_poll_fd_ctl_read ()" link="gstreamer-GstPoll.html#gst-poll-fd-ctl-read"/>
|
1108
|
+
<function name="gst_poll_fd_ctl_write ()" link="gstreamer-GstPoll.html#gst-poll-fd-ctl-write"/>
|
1109
|
+
<function name="gst_poll_fd_has_closed ()" link="gstreamer-GstPoll.html#gst-poll-fd-has-closed"/>
|
1110
|
+
<function name="gst_poll_fd_has_error ()" link="gstreamer-GstPoll.html#gst-poll-fd-has-error"/>
|
1111
|
+
<function name="gst_poll_fd_ignored ()" link="gstreamer-GstPoll.html#gst-poll-fd-ignored"/>
|
1112
|
+
<function name="gst_poll_fd_init ()" link="gstreamer-GstPoll.html#gst-poll-fd-init"/>
|
1113
|
+
<function name="gst_poll_free ()" link="gstreamer-GstPoll.html#gst-poll-free"/>
|
1114
|
+
<function name="gst_poll_new ()" link="gstreamer-GstPoll.html#gst-poll-new"/>
|
1115
|
+
<function name="gst_poll_new_timer ()" link="gstreamer-GstPoll.html#gst-poll-new-timer"/>
|
1116
|
+
<function name="gst_poll_get_read_gpollfd ()" link="gstreamer-GstPoll.html#gst-poll-get-read-gpollfd"/>
|
1117
|
+
<function name="gst_poll_remove_fd ()" link="gstreamer-GstPoll.html#gst-poll-remove-fd"/>
|
1118
|
+
<function name="gst_poll_restart ()" link="gstreamer-GstPoll.html#gst-poll-restart"/>
|
1119
|
+
<function name="gst_poll_set_controllable ()" link="gstreamer-GstPoll.html#gst-poll-set-controllable"/>
|
1120
|
+
<function name="gst_poll_set_flushing ()" link="gstreamer-GstPoll.html#gst-poll-set-flushing"/>
|
1121
|
+
<function name="gst_poll_wait ()" link="gstreamer-GstPoll.html#gst-poll-wait"/>
|
1122
|
+
<function name="gst_poll_read_control ()" link="gstreamer-GstPoll.html#gst-poll-read-control"/>
|
1123
|
+
<function name="gst_poll_write_control ()" link="gstreamer-GstPoll.html#gst-poll-write-control"/>
|
1124
|
+
<function name="GstPreset" link="GstPreset.html#GstPreset-struct"/>
|
1125
|
+
<function name="struct GstPresetInterface" link="GstPreset.html#GstPresetInterface"/>
|
1126
|
+
<function name="gst_preset_get_preset_names ()" link="GstPreset.html#gst-preset-get-preset-names"/>
|
1127
|
+
<function name="gst_preset_get_property_names ()" link="GstPreset.html#gst-preset-get-property-names"/>
|
1128
|
+
<function name="gst_preset_load_preset ()" link="GstPreset.html#gst-preset-load-preset"/>
|
1129
|
+
<function name="gst_preset_save_preset ()" link="GstPreset.html#gst-preset-save-preset"/>
|
1130
|
+
<function name="gst_preset_rename_preset ()" link="GstPreset.html#gst-preset-rename-preset"/>
|
1131
|
+
<function name="gst_preset_delete_preset ()" link="GstPreset.html#gst-preset-delete-preset"/>
|
1132
|
+
<function name="gst_preset_set_meta ()" link="GstPreset.html#gst-preset-set-meta"/>
|
1133
|
+
<function name="gst_preset_get_meta ()" link="GstPreset.html#gst-preset-get-meta"/>
|
1134
|
+
<function name="struct GstQuery" link="gstreamer-GstQuery.html#GstQuery"/>
|
1135
|
+
<function name="enum GstQueryType" link="gstreamer-GstQuery.html#GstQueryType"/>
|
1136
|
+
<function name="GST_QUERY_TYPE_NAME()" link="gstreamer-GstQuery.html#GST-QUERY-TYPE-NAME:CAPS"/>
|
1137
|
+
<function name="struct GstQueryTypeDefinition" link="gstreamer-GstQuery.html#GstQueryTypeDefinition"/>
|
1138
|
+
<function name="gst_query_type_get_name ()" link="gstreamer-GstQuery.html#gst-query-type-get-name"/>
|
1139
|
+
<function name="gst_query_type_to_quark ()" link="gstreamer-GstQuery.html#gst-query-type-to-quark"/>
|
1140
|
+
<function name="gst_query_type_register ()" link="gstreamer-GstQuery.html#gst-query-type-register"/>
|
1141
|
+
<function name="gst_query_type_get_by_nick ()" link="gstreamer-GstQuery.html#gst-query-type-get-by-nick"/>
|
1142
|
+
<function name="gst_query_types_contains ()" link="gstreamer-GstQuery.html#gst-query-types-contains"/>
|
1143
|
+
<function name="gst_query_type_get_details ()" link="gstreamer-GstQuery.html#gst-query-type-get-details"/>
|
1144
|
+
<function name="gst_query_type_iterate_definitions ()" link="gstreamer-GstQuery.html#gst-query-type-iterate-definitions"/>
|
1145
|
+
<function name="gst_query_ref ()" link="gstreamer-GstQuery.html#gst-query-ref"/>
|
1146
|
+
<function name="gst_query_unref ()" link="gstreamer-GstQuery.html#gst-query-unref"/>
|
1147
|
+
<function name="gst_query_copy ()" link="gstreamer-GstQuery.html#gst-query-copy"/>
|
1148
|
+
<function name="gst_query_make_writable()" link="gstreamer-GstQuery.html#gst-query-make-writable"/>
|
1149
|
+
<function name="gst_query_new_application ()" link="gstreamer-GstQuery.html#gst-query-new-application"/>
|
1150
|
+
<function name="gst_query_get_structure ()" link="gstreamer-GstQuery.html#gst-query-get-structure"/>
|
1151
|
+
<function name="gst_query_new_convert ()" link="gstreamer-GstQuery.html#gst-query-new-convert"/>
|
1152
|
+
<function name="gst_query_set_convert ()" link="gstreamer-GstQuery.html#gst-query-set-convert"/>
|
1153
|
+
<function name="gst_query_parse_convert ()" link="gstreamer-GstQuery.html#gst-query-parse-convert"/>
|
1154
|
+
<function name="gst_query_new_position ()" link="gstreamer-GstQuery.html#gst-query-new-position"/>
|
1155
|
+
<function name="gst_query_set_position ()" link="gstreamer-GstQuery.html#gst-query-set-position"/>
|
1156
|
+
<function name="gst_query_parse_position ()" link="gstreamer-GstQuery.html#gst-query-parse-position"/>
|
1157
|
+
<function name="gst_query_new_duration ()" link="gstreamer-GstQuery.html#gst-query-new-duration"/>
|
1158
|
+
<function name="gst_query_set_duration ()" link="gstreamer-GstQuery.html#gst-query-set-duration"/>
|
1159
|
+
<function name="gst_query_parse_duration ()" link="gstreamer-GstQuery.html#gst-query-parse-duration"/>
|
1160
|
+
<function name="gst_query_new_latency ()" link="gstreamer-GstQuery.html#gst-query-new-latency"/>
|
1161
|
+
<function name="gst_query_parse_latency ()" link="gstreamer-GstQuery.html#gst-query-parse-latency"/>
|
1162
|
+
<function name="gst_query_set_latency ()" link="gstreamer-GstQuery.html#gst-query-set-latency"/>
|
1163
|
+
<function name="gst_query_new_seeking ()" link="gstreamer-GstQuery.html#gst-query-new-seeking"/>
|
1164
|
+
<function name="gst_query_set_seeking ()" link="gstreamer-GstQuery.html#gst-query-set-seeking"/>
|
1165
|
+
<function name="gst_query_parse_seeking ()" link="gstreamer-GstQuery.html#gst-query-parse-seeking"/>
|
1166
|
+
<function name="gst_query_new_formats ()" link="gstreamer-GstQuery.html#gst-query-new-formats"/>
|
1167
|
+
<function name="gst_query_set_formats ()" link="gstreamer-GstQuery.html#gst-query-set-formats"/>
|
1168
|
+
<function name="gst_query_set_formatsv ()" link="gstreamer-GstQuery.html#gst-query-set-formatsv"/>
|
1169
|
+
<function name="gst_query_parse_formats_length ()" link="gstreamer-GstQuery.html#gst-query-parse-formats-length"/>
|
1170
|
+
<function name="gst_query_parse_formats_nth ()" link="gstreamer-GstQuery.html#gst-query-parse-formats-nth"/>
|
1171
|
+
<function name="gst_query_new_segment ()" link="gstreamer-GstQuery.html#gst-query-new-segment"/>
|
1172
|
+
<function name="gst_query_set_segment ()" link="gstreamer-GstQuery.html#gst-query-set-segment"/>
|
1173
|
+
<function name="gst_query_parse_segment ()" link="gstreamer-GstQuery.html#gst-query-parse-segment"/>
|
1174
|
+
<function name="enum GstBufferingMode" link="gstreamer-GstQuery.html#GstBufferingMode"/>
|
1175
|
+
<function name="gst_query_new_buffering ()" link="gstreamer-GstQuery.html#gst-query-new-buffering"/>
|
1176
|
+
<function name="gst_query_set_buffering_percent ()" link="gstreamer-GstQuery.html#gst-query-set-buffering-percent"/>
|
1177
|
+
<function name="gst_query_parse_buffering_percent ()" link="gstreamer-GstQuery.html#gst-query-parse-buffering-percent"/>
|
1178
|
+
<function name="gst_query_set_buffering_stats ()" link="gstreamer-GstQuery.html#gst-query-set-buffering-stats"/>
|
1179
|
+
<function name="gst_query_parse_buffering_stats ()" link="gstreamer-GstQuery.html#gst-query-parse-buffering-stats"/>
|
1180
|
+
<function name="gst_query_set_buffering_range ()" link="gstreamer-GstQuery.html#gst-query-set-buffering-range"/>
|
1181
|
+
<function name="gst_query_parse_buffering_range ()" link="gstreamer-GstQuery.html#gst-query-parse-buffering-range"/>
|
1182
|
+
<function name="gst_query_add_buffering_range ()" link="gstreamer-GstQuery.html#gst-query-add-buffering-range"/>
|
1183
|
+
<function name="gst_query_get_n_buffering_ranges ()" link="gstreamer-GstQuery.html#gst-query-get-n-buffering-ranges"/>
|
1184
|
+
<function name="gst_query_parse_nth_buffering_range ()" link="gstreamer-GstQuery.html#gst-query-parse-nth-buffering-range"/>
|
1185
|
+
<function name="gst_query_new_uri ()" link="gstreamer-GstQuery.html#gst-query-new-uri"/>
|
1186
|
+
<function name="gst_query_parse_uri ()" link="gstreamer-GstQuery.html#gst-query-parse-uri"/>
|
1187
|
+
<function name="gst_query_set_uri ()" link="gstreamer-GstQuery.html#gst-query-set-uri"/>
|
1188
|
+
<function name="struct GstRegistry" link="GstRegistry.html#GstRegistry-struct"/>
|
1189
|
+
<function name="gst_registry_get_default ()" link="GstRegistry.html#gst-registry-get-default"/>
|
1190
|
+
<function name="gst_registry_get_feature_list ()" link="GstRegistry.html#gst-registry-get-feature-list"/>
|
1191
|
+
<function name="gst_registry_get_feature_list_cookie ()" link="GstRegistry.html#gst-registry-get-feature-list-cookie"/>
|
1192
|
+
<function name="gst_registry_get_feature_list_by_plugin ()" link="GstRegistry.html#gst-registry-get-feature-list-by-plugin"/>
|
1193
|
+
<function name="gst_registry_get_path_list ()" link="GstRegistry.html#gst-registry-get-path-list"/>
|
1194
|
+
<function name="gst_registry_get_plugin_list ()" link="GstRegistry.html#gst-registry-get-plugin-list"/>
|
1195
|
+
<function name="gst_registry_add_plugin ()" link="GstRegistry.html#gst-registry-add-plugin"/>
|
1196
|
+
<function name="gst_registry_remove_plugin ()" link="GstRegistry.html#gst-registry-remove-plugin"/>
|
1197
|
+
<function name="gst_registry_plugin_filter ()" link="GstRegistry.html#gst-registry-plugin-filter"/>
|
1198
|
+
<function name="gst_registry_feature_filter ()" link="GstRegistry.html#gst-registry-feature-filter"/>
|
1199
|
+
<function name="gst_registry_find_plugin ()" link="GstRegistry.html#gst-registry-find-plugin"/>
|
1200
|
+
<function name="gst_registry_find_feature ()" link="GstRegistry.html#gst-registry-find-feature"/>
|
1201
|
+
<function name="gst_registry_lookup_feature ()" link="GstRegistry.html#gst-registry-lookup-feature"/>
|
1202
|
+
<function name="gst_registry_add_path ()" link="GstRegistry.html#gst-registry-add-path"/>
|
1203
|
+
<function name="gst_registry_scan_path ()" link="GstRegistry.html#gst-registry-scan-path"/>
|
1204
|
+
<function name="gst_registry_lookup ()" link="GstRegistry.html#gst-registry-lookup"/>
|
1205
|
+
<function name="gst_registry_remove_feature ()" link="GstRegistry.html#gst-registry-remove-feature"/>
|
1206
|
+
<function name="gst_registry_add_feature ()" link="GstRegistry.html#gst-registry-add-feature"/>
|
1207
|
+
<function name="gst_default_registry_check_feature_version ()" link="GstRegistry.html#gst-default-registry-check-feature-version"/>
|
1208
|
+
<function name="gst_default_registry_get_path_list" link="GstRegistry.html#gst-default-registry-get-path-list"/>
|
1209
|
+
<function name="gst_default_registry_add_plugin()" link="GstRegistry.html#gst-default-registry-add-plugin"/>
|
1210
|
+
<function name="gst_default_registry_add_path()" link="GstRegistry.html#gst-default-registry-add-path"/>
|
1211
|
+
<function name="gst_default_registry_find_plugin()" link="GstRegistry.html#gst-default-registry-find-plugin"/>
|
1212
|
+
<function name="gst_default_registry_find_feature()" link="GstRegistry.html#gst-default-registry-find-feature"/>
|
1213
|
+
<function name="gst_default_registry_get_plugin_list" link="GstRegistry.html#gst-default-registry-get-plugin-list"/>
|
1214
|
+
<function name="gst_default_registry_get_feature_list_cookie" link="GstRegistry.html#gst-default-registry-get-feature-list-cookie"/>
|
1215
|
+
<function name="gst_default_registry_feature_filter()" link="GstRegistry.html#gst-default-registry-feature-filter"/>
|
1216
|
+
<function name="The "feature-added" signal" link="GstRegistry.html#GstRegistry-feature-added"/>
|
1217
|
+
<function name="The "plugin-added" signal" link="GstRegistry.html#GstRegistry-plugin-added"/>
|
1218
|
+
<function name="struct GstSegment" link="gstreamer-GstSegment.html#GstSegment"/>
|
1219
|
+
<function name="gst_segment_clip ()" link="gstreamer-GstSegment.html#gst-segment-clip"/>
|
1220
|
+
<function name="gst_segment_init ()" link="gstreamer-GstSegment.html#gst-segment-init"/>
|
1221
|
+
<function name="gst_segment_new ()" link="gstreamer-GstSegment.html#gst-segment-new"/>
|
1222
|
+
<function name="gst_segment_copy ()" link="gstreamer-GstSegment.html#gst-segment-copy"/>
|
1223
|
+
<function name="gst_segment_free ()" link="gstreamer-GstSegment.html#gst-segment-free"/>
|
1224
|
+
<function name="gst_segment_set_duration ()" link="gstreamer-GstSegment.html#gst-segment-set-duration"/>
|
1225
|
+
<function name="gst_segment_set_last_stop ()" link="gstreamer-GstSegment.html#gst-segment-set-last-stop"/>
|
1226
|
+
<function name="gst_segment_set_newsegment ()" link="gstreamer-GstSegment.html#gst-segment-set-newsegment"/>
|
1227
|
+
<function name="gst_segment_set_newsegment_full ()" link="gstreamer-GstSegment.html#gst-segment-set-newsegment-full"/>
|
1228
|
+
<function name="gst_segment_set_seek ()" link="gstreamer-GstSegment.html#gst-segment-set-seek"/>
|
1229
|
+
<function name="gst_segment_to_running_time ()" link="gstreamer-GstSegment.html#gst-segment-to-running-time"/>
|
1230
|
+
<function name="gst_segment_to_stream_time ()" link="gstreamer-GstSegment.html#gst-segment-to-stream-time"/>
|
1231
|
+
<function name="gst_segment_to_position ()" link="gstreamer-GstSegment.html#gst-segment-to-position"/>
|
1232
|
+
<function name="gst_segment_set_running_time ()" link="gstreamer-GstSegment.html#gst-segment-set-running-time"/>
|
1233
|
+
<function name="struct GstStructure" link="gstreamer-GstStructure.html#GstStructure"/>
|
1234
|
+
<function name="GstStructureForeachFunc ()" link="gstreamer-GstStructure.html#GstStructureForeachFunc"/>
|
1235
|
+
<function name="GstStructureMapFunc ()" link="gstreamer-GstStructure.html#GstStructureMapFunc"/>
|
1236
|
+
<function name="gst_structure_empty_new ()" link="gstreamer-GstStructure.html#gst-structure-empty-new"/>
|
1237
|
+
<function name="gst_structure_id_empty_new ()" link="gstreamer-GstStructure.html#gst-structure-id-empty-new"/>
|
1238
|
+
<function name="gst_structure_new ()" link="gstreamer-GstStructure.html#gst-structure-new"/>
|
1239
|
+
<function name="gst_structure_new_valist ()" link="gstreamer-GstStructure.html#gst-structure-new-valist"/>
|
1240
|
+
<function name="gst_structure_id_new ()" link="gstreamer-GstStructure.html#gst-structure-id-new"/>
|
1241
|
+
<function name="gst_structure_copy ()" link="gstreamer-GstStructure.html#gst-structure-copy"/>
|
1242
|
+
<function name="gst_structure_free ()" link="gstreamer-GstStructure.html#gst-structure-free"/>
|
1243
|
+
<function name="gst_structure_get_name ()" link="gstreamer-GstStructure.html#gst-structure-get-name"/>
|
1244
|
+
<function name="gst_structure_has_name ()" link="gstreamer-GstStructure.html#gst-structure-has-name"/>
|
1245
|
+
<function name="gst_structure_set_name ()" link="gstreamer-GstStructure.html#gst-structure-set-name"/>
|
1246
|
+
<function name="gst_structure_get_name_id ()" link="gstreamer-GstStructure.html#gst-structure-get-name-id"/>
|
1247
|
+
<function name="gst_structure_id_get ()" link="gstreamer-GstStructure.html#gst-structure-id-get"/>
|
1248
|
+
<function name="gst_structure_id_get_valist ()" link="gstreamer-GstStructure.html#gst-structure-id-get-valist"/>
|
1249
|
+
<function name="gst_structure_id_get_value ()" link="gstreamer-GstStructure.html#gst-structure-id-get-value"/>
|
1250
|
+
<function name="gst_structure_id_set_value ()" link="gstreamer-GstStructure.html#gst-structure-id-set-value"/>
|
1251
|
+
<function name="gst_structure_id_take_value ()" link="gstreamer-GstStructure.html#gst-structure-id-take-value"/>
|
1252
|
+
<function name="gst_structure_get ()" link="gstreamer-GstStructure.html#gst-structure-get"/>
|
1253
|
+
<function name="gst_structure_get_valist ()" link="gstreamer-GstStructure.html#gst-structure-get-valist"/>
|
1254
|
+
<function name="gst_structure_get_value ()" link="gstreamer-GstStructure.html#gst-structure-get-value"/>
|
1255
|
+
<function name="gst_structure_set_value ()" link="gstreamer-GstStructure.html#gst-structure-set-value"/>
|
1256
|
+
<function name="gst_structure_take_value ()" link="gstreamer-GstStructure.html#gst-structure-take-value"/>
|
1257
|
+
<function name="gst_structure_set ()" link="gstreamer-GstStructure.html#gst-structure-set"/>
|
1258
|
+
<function name="gst_structure_set_valist ()" link="gstreamer-GstStructure.html#gst-structure-set-valist"/>
|
1259
|
+
<function name="gst_structure_id_set ()" link="gstreamer-GstStructure.html#gst-structure-id-set"/>
|
1260
|
+
<function name="gst_structure_id_set_valist ()" link="gstreamer-GstStructure.html#gst-structure-id-set-valist"/>
|
1261
|
+
<function name="gst_structure_remove_field ()" link="gstreamer-GstStructure.html#gst-structure-remove-field"/>
|
1262
|
+
<function name="gst_structure_remove_fields ()" link="gstreamer-GstStructure.html#gst-structure-remove-fields"/>
|
1263
|
+
<function name="gst_structure_remove_fields_valist ()" link="gstreamer-GstStructure.html#gst-structure-remove-fields-valist"/>
|
1264
|
+
<function name="gst_structure_remove_all_fields ()" link="gstreamer-GstStructure.html#gst-structure-remove-all-fields"/>
|
1265
|
+
<function name="gst_structure_get_field_type ()" link="gstreamer-GstStructure.html#gst-structure-get-field-type"/>
|
1266
|
+
<function name="gst_structure_foreach ()" link="gstreamer-GstStructure.html#gst-structure-foreach"/>
|
1267
|
+
<function name="gst_structure_n_fields ()" link="gstreamer-GstStructure.html#gst-structure-n-fields"/>
|
1268
|
+
<function name="gst_structure_has_field ()" link="gstreamer-GstStructure.html#gst-structure-has-field"/>
|
1269
|
+
<function name="gst_structure_has_field_typed ()" link="gstreamer-GstStructure.html#gst-structure-has-field-typed"/>
|
1270
|
+
<function name="gst_structure_id_has_field ()" link="gstreamer-GstStructure.html#gst-structure-id-has-field"/>
|
1271
|
+
<function name="gst_structure_id_has_field_typed ()" link="gstreamer-GstStructure.html#gst-structure-id-has-field-typed"/>
|
1272
|
+
<function name="gst_structure_get_boolean ()" link="gstreamer-GstStructure.html#gst-structure-get-boolean"/>
|
1273
|
+
<function name="gst_structure_get_int ()" link="gstreamer-GstStructure.html#gst-structure-get-int"/>
|
1274
|
+
<function name="gst_structure_get_uint ()" link="gstreamer-GstStructure.html#gst-structure-get-uint"/>
|
1275
|
+
<function name="gst_structure_get_fourcc ()" link="gstreamer-GstStructure.html#gst-structure-get-fourcc"/>
|
1276
|
+
<function name="gst_structure_get_double ()" link="gstreamer-GstStructure.html#gst-structure-get-double"/>
|
1277
|
+
<function name="gst_structure_get_string ()" link="gstreamer-GstStructure.html#gst-structure-get-string"/>
|
1278
|
+
<function name="gst_structure_get_date ()" link="gstreamer-GstStructure.html#gst-structure-get-date"/>
|
1279
|
+
<function name="gst_structure_get_date_time ()" link="gstreamer-GstStructure.html#gst-structure-get-date-time"/>
|
1280
|
+
<function name="gst_structure_get_clock_time ()" link="gstreamer-GstStructure.html#gst-structure-get-clock-time"/>
|
1281
|
+
<function name="gst_structure_get_enum ()" link="gstreamer-GstStructure.html#gst-structure-get-enum"/>
|
1282
|
+
<function name="gst_structure_get_fraction ()" link="gstreamer-GstStructure.html#gst-structure-get-fraction"/>
|
1283
|
+
<function name="gst_structure_map_in_place ()" link="gstreamer-GstStructure.html#gst-structure-map-in-place"/>
|
1284
|
+
<function name="gst_structure_nth_field_name ()" link="gstreamer-GstStructure.html#gst-structure-nth-field-name"/>
|
1285
|
+
<function name="gst_structure_set_parent_refcount ()" link="gstreamer-GstStructure.html#gst-structure-set-parent-refcount"/>
|
1286
|
+
<function name="gst_structure_to_string ()" link="gstreamer-GstStructure.html#gst-structure-to-string"/>
|
1287
|
+
<function name="gst_structure_from_string ()" link="gstreamer-GstStructure.html#gst-structure-from-string"/>
|
1288
|
+
<function name="gst_structure_fixate_field_nearest_int ()" link="gstreamer-GstStructure.html#gst-structure-fixate-field-nearest-int"/>
|
1289
|
+
<function name="gst_structure_fixate_field_nearest_double ()" link="gstreamer-GstStructure.html#gst-structure-fixate-field-nearest-double"/>
|
1290
|
+
<function name="gst_structure_fixate_field_nearest_fraction ()" link="gstreamer-GstStructure.html#gst-structure-fixate-field-nearest-fraction"/>
|
1291
|
+
<function name="gst_structure_fixate_field_boolean ()" link="gstreamer-GstStructure.html#gst-structure-fixate-field-boolean"/>
|
1292
|
+
<function name="gst_structure_fixate_field_string ()" link="gstreamer-GstStructure.html#gst-structure-fixate-field-string"/>
|
1293
|
+
<function name="enum GstClockType" link="GstSystemClock.html#GstClockType"/>
|
1294
|
+
<function name="struct GstSystemClock" link="GstSystemClock.html#GstSystemClock-struct"/>
|
1295
|
+
<function name="gst_system_clock_obtain ()" link="GstSystemClock.html#gst-system-clock-obtain"/>
|
1296
|
+
<function name="The "clock-type" property" link="GstSystemClock.html#GstSystemClock--clock-type"/>
|
1297
|
+
<function name="GstTagList" link="gstreamer-GstTagList.html#GstTagList"/>
|
1298
|
+
<function name="enum GstTagMergeMode" link="gstreamer-GstTagList.html#GstTagMergeMode"/>
|
1299
|
+
<function name="enum GstTagFlag" link="gstreamer-GstTagList.html#GstTagFlag"/>
|
1300
|
+
<function name="GstTagForeachFunc ()" link="gstreamer-GstTagList.html#GstTagForeachFunc"/>
|
1301
|
+
<function name="GstTagMergeFunc ()" link="gstreamer-GstTagList.html#GstTagMergeFunc"/>
|
1302
|
+
<function name="GST_TAG_TITLE" link="gstreamer-GstTagList.html#GST-TAG-TITLE:CAPS"/>
|
1303
|
+
<function name="GST_TAG_TITLE_SORTNAME" link="gstreamer-GstTagList.html#GST-TAG-TITLE-SORTNAME:CAPS"/>
|
1304
|
+
<function name="GST_TAG_ARTIST" link="gstreamer-GstTagList.html#GST-TAG-ARTIST:CAPS"/>
|
1305
|
+
<function name="GST_TAG_ARTIST_SORTNAME" link="gstreamer-GstTagList.html#GST-TAG-ARTIST-SORTNAME:CAPS"/>
|
1306
|
+
<function name="GST_TAG_ALBUM" link="gstreamer-GstTagList.html#GST-TAG-ALBUM:CAPS"/>
|
1307
|
+
<function name="GST_TAG_ALBUM_SORTNAME" link="gstreamer-GstTagList.html#GST-TAG-ALBUM-SORTNAME:CAPS"/>
|
1308
|
+
<function name="GST_TAG_ALBUM_ARTIST" link="gstreamer-GstTagList.html#GST-TAG-ALBUM-ARTIST:CAPS"/>
|
1309
|
+
<function name="GST_TAG_ALBUM_ARTIST_SORTNAME" link="gstreamer-GstTagList.html#GST-TAG-ALBUM-ARTIST-SORTNAME:CAPS"/>
|
1310
|
+
<function name="GST_TAG_DATE" link="gstreamer-GstTagList.html#GST-TAG-DATE:CAPS"/>
|
1311
|
+
<function name="GST_TAG_DATE_TIME" link="gstreamer-GstTagList.html#GST-TAG-DATE-TIME:CAPS"/>
|
1312
|
+
<function name="GST_TAG_GENRE" link="gstreamer-GstTagList.html#GST-TAG-GENRE:CAPS"/>
|
1313
|
+
<function name="GST_TAG_COMMENT" link="gstreamer-GstTagList.html#GST-TAG-COMMENT:CAPS"/>
|
1314
|
+
<function name="GST_TAG_EXTENDED_COMMENT" link="gstreamer-GstTagList.html#GST-TAG-EXTENDED-COMMENT:CAPS"/>
|
1315
|
+
<function name="GST_TAG_TRACK_NUMBER" link="gstreamer-GstTagList.html#GST-TAG-TRACK-NUMBER:CAPS"/>
|
1316
|
+
<function name="GST_TAG_TRACK_COUNT" link="gstreamer-GstTagList.html#GST-TAG-TRACK-COUNT:CAPS"/>
|
1317
|
+
<function name="GST_TAG_ALBUM_VOLUME_NUMBER" link="gstreamer-GstTagList.html#GST-TAG-ALBUM-VOLUME-NUMBER:CAPS"/>
|
1318
|
+
<function name="GST_TAG_ALBUM_VOLUME_COUNT" link="gstreamer-GstTagList.html#GST-TAG-ALBUM-VOLUME-COUNT:CAPS"/>
|
1319
|
+
<function name="GST_TAG_LOCATION" link="gstreamer-GstTagList.html#GST-TAG-LOCATION:CAPS"/>
|
1320
|
+
<function name="GST_TAG_HOMEPAGE" link="gstreamer-GstTagList.html#GST-TAG-HOMEPAGE:CAPS"/>
|
1321
|
+
<function name="GST_TAG_DESCRIPTION" link="gstreamer-GstTagList.html#GST-TAG-DESCRIPTION:CAPS"/>
|
1322
|
+
<function name="GST_TAG_VERSION" link="gstreamer-GstTagList.html#GST-TAG-VERSION:CAPS"/>
|
1323
|
+
<function name="GST_TAG_ISRC" link="gstreamer-GstTagList.html#GST-TAG-ISRC:CAPS"/>
|
1324
|
+
<function name="GST_TAG_ORGANIZATION" link="gstreamer-GstTagList.html#GST-TAG-ORGANIZATION:CAPS"/>
|
1325
|
+
<function name="GST_TAG_COPYRIGHT" link="gstreamer-GstTagList.html#GST-TAG-COPYRIGHT:CAPS"/>
|
1326
|
+
<function name="GST_TAG_COPYRIGHT_URI" link="gstreamer-GstTagList.html#GST-TAG-COPYRIGHT-URI:CAPS"/>
|
1327
|
+
<function name="GST_TAG_ENCODED_BY" link="gstreamer-GstTagList.html#GST-TAG-ENCODED-BY:CAPS"/>
|
1328
|
+
<function name="GST_TAG_COMPOSER" link="gstreamer-GstTagList.html#GST-TAG-COMPOSER:CAPS"/>
|
1329
|
+
<function name="GST_TAG_CONTACT" link="gstreamer-GstTagList.html#GST-TAG-CONTACT:CAPS"/>
|
1330
|
+
<function name="GST_TAG_LICENSE" link="gstreamer-GstTagList.html#GST-TAG-LICENSE:CAPS"/>
|
1331
|
+
<function name="GST_TAG_LICENSE_URI" link="gstreamer-GstTagList.html#GST-TAG-LICENSE-URI:CAPS"/>
|
1332
|
+
<function name="GST_TAG_PERFORMER" link="gstreamer-GstTagList.html#GST-TAG-PERFORMER:CAPS"/>
|
1333
|
+
<function name="GST_TAG_DURATION" link="gstreamer-GstTagList.html#GST-TAG-DURATION:CAPS"/>
|
1334
|
+
<function name="GST_TAG_CODEC" link="gstreamer-GstTagList.html#GST-TAG-CODEC:CAPS"/>
|
1335
|
+
<function name="GST_TAG_VIDEO_CODEC" link="gstreamer-GstTagList.html#GST-TAG-VIDEO-CODEC:CAPS"/>
|
1336
|
+
<function name="GST_TAG_AUDIO_CODEC" link="gstreamer-GstTagList.html#GST-TAG-AUDIO-CODEC:CAPS"/>
|
1337
|
+
<function name="GST_TAG_SUBTITLE_CODEC" link="gstreamer-GstTagList.html#GST-TAG-SUBTITLE-CODEC:CAPS"/>
|
1338
|
+
<function name="GST_TAG_CONTAINER_FORMAT" link="gstreamer-GstTagList.html#GST-TAG-CONTAINER-FORMAT:CAPS"/>
|
1339
|
+
<function name="GST_TAG_BITRATE" link="gstreamer-GstTagList.html#GST-TAG-BITRATE:CAPS"/>
|
1340
|
+
<function name="GST_TAG_NOMINAL_BITRATE" link="gstreamer-GstTagList.html#GST-TAG-NOMINAL-BITRATE:CAPS"/>
|
1341
|
+
<function name="GST_TAG_MINIMUM_BITRATE" link="gstreamer-GstTagList.html#GST-TAG-MINIMUM-BITRATE:CAPS"/>
|
1342
|
+
<function name="GST_TAG_MAXIMUM_BITRATE" link="gstreamer-GstTagList.html#GST-TAG-MAXIMUM-BITRATE:CAPS"/>
|
1343
|
+
<function name="GST_TAG_SERIAL" link="gstreamer-GstTagList.html#GST-TAG-SERIAL:CAPS"/>
|
1344
|
+
<function name="GST_TAG_ENCODER" link="gstreamer-GstTagList.html#GST-TAG-ENCODER:CAPS"/>
|
1345
|
+
<function name="GST_TAG_ENCODER_VERSION" link="gstreamer-GstTagList.html#GST-TAG-ENCODER-VERSION:CAPS"/>
|
1346
|
+
<function name="GST_TAG_TRACK_GAIN" link="gstreamer-GstTagList.html#GST-TAG-TRACK-GAIN:CAPS"/>
|
1347
|
+
<function name="GST_TAG_TRACK_PEAK" link="gstreamer-GstTagList.html#GST-TAG-TRACK-PEAK:CAPS"/>
|
1348
|
+
<function name="GST_TAG_ALBUM_GAIN" link="gstreamer-GstTagList.html#GST-TAG-ALBUM-GAIN:CAPS"/>
|
1349
|
+
<function name="GST_TAG_ALBUM_PEAK" link="gstreamer-GstTagList.html#GST-TAG-ALBUM-PEAK:CAPS"/>
|
1350
|
+
<function name="GST_TAG_REFERENCE_LEVEL" link="gstreamer-GstTagList.html#GST-TAG-REFERENCE-LEVEL:CAPS"/>
|
1351
|
+
<function name="GST_TAG_LANGUAGE_CODE" link="gstreamer-GstTagList.html#GST-TAG-LANGUAGE-CODE:CAPS"/>
|
1352
|
+
<function name="GST_TAG_IMAGE" link="gstreamer-GstTagList.html#GST-TAG-IMAGE:CAPS"/>
|
1353
|
+
<function name="GST_TAG_PREVIEW_IMAGE" link="gstreamer-GstTagList.html#GST-TAG-PREVIEW-IMAGE:CAPS"/>
|
1354
|
+
<function name="GST_TAG_ATTACHMENT" link="gstreamer-GstTagList.html#GST-TAG-ATTACHMENT:CAPS"/>
|
1355
|
+
<function name="GST_TAG_BEATS_PER_MINUTE" link="gstreamer-GstTagList.html#GST-TAG-BEATS-PER-MINUTE:CAPS"/>
|
1356
|
+
<function name="GST_TAG_KEYWORDS" link="gstreamer-GstTagList.html#GST-TAG-KEYWORDS:CAPS"/>
|
1357
|
+
<function name="GST_TAG_GEO_LOCATION_NAME" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-NAME:CAPS"/>
|
1358
|
+
<function name="GST_TAG_GEO_LOCATION_LATITUDE" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-LATITUDE:CAPS"/>
|
1359
|
+
<function name="GST_TAG_GEO_LOCATION_LONGITUDE" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-LONGITUDE:CAPS"/>
|
1360
|
+
<function name="GST_TAG_GEO_LOCATION_ELEVATION" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-ELEVATION:CAPS"/>
|
1361
|
+
<function name="GST_TAG_GEO_LOCATION_CITY" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-CITY:CAPS"/>
|
1362
|
+
<function name="GST_TAG_GEO_LOCATION_COUNTRY" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-COUNTRY:CAPS"/>
|
1363
|
+
<function name="GST_TAG_GEO_LOCATION_SUBLOCATION" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-SUBLOCATION:CAPS"/>
|
1364
|
+
<function name="GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-HORIZONTAL-ERROR:CAPS"/>
|
1365
|
+
<function name="GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-MOVEMENT-DIRECTION:CAPS"/>
|
1366
|
+
<function name="GST_TAG_GEO_LOCATION_MOVEMENT_SPEED" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-MOVEMENT-SPEED:CAPS"/>
|
1367
|
+
<function name="GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION" link="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-CAPTURE-DIRECTION:CAPS"/>
|
1368
|
+
<function name="GST_TAG_SHOW_NAME" link="gstreamer-GstTagList.html#GST-TAG-SHOW-NAME:CAPS"/>
|
1369
|
+
<function name="GST_TAG_SHOW_SORTNAME" link="gstreamer-GstTagList.html#GST-TAG-SHOW-SORTNAME:CAPS"/>
|
1370
|
+
<function name="GST_TAG_SHOW_EPISODE_NUMBER" link="gstreamer-GstTagList.html#GST-TAG-SHOW-EPISODE-NUMBER:CAPS"/>
|
1371
|
+
<function name="GST_TAG_SHOW_SEASON_NUMBER" link="gstreamer-GstTagList.html#GST-TAG-SHOW-SEASON-NUMBER:CAPS"/>
|
1372
|
+
<function name="GST_TAG_LYRICS" link="gstreamer-GstTagList.html#GST-TAG-LYRICS:CAPS"/>
|
1373
|
+
<function name="GST_TAG_COMPOSER_SORTNAME" link="gstreamer-GstTagList.html#GST-TAG-COMPOSER-SORTNAME:CAPS"/>
|
1374
|
+
<function name="GST_TAG_GROUPING" link="gstreamer-GstTagList.html#GST-TAG-GROUPING:CAPS"/>
|
1375
|
+
<function name="GST_TAG_USER_RATING" link="gstreamer-GstTagList.html#GST-TAG-USER-RATING:CAPS"/>
|
1376
|
+
<function name="GST_TAG_DEVICE_MANUFACTURER" link="gstreamer-GstTagList.html#GST-TAG-DEVICE-MANUFACTURER:CAPS"/>
|
1377
|
+
<function name="GST_TAG_DEVICE_MODEL" link="gstreamer-GstTagList.html#GST-TAG-DEVICE-MODEL:CAPS"/>
|
1378
|
+
<function name="GST_TAG_APPLICATION_NAME" link="gstreamer-GstTagList.html#GST-TAG-APPLICATION-NAME:CAPS"/>
|
1379
|
+
<function name="GST_TAG_APPLICATION_DATA" link="gstreamer-GstTagList.html#GST-TAG-APPLICATION-DATA:CAPS"/>
|
1380
|
+
<function name="GST_TAG_IMAGE_ORIENTATION" link="gstreamer-GstTagList.html#GST-TAG-IMAGE-ORIENTATION:CAPS"/>
|
1381
|
+
<function name="gst_tag_register ()" link="gstreamer-GstTagList.html#gst-tag-register"/>
|
1382
|
+
<function name="gst_tag_merge_use_first ()" link="gstreamer-GstTagList.html#gst-tag-merge-use-first"/>
|
1383
|
+
<function name="gst_tag_merge_strings_with_comma ()" link="gstreamer-GstTagList.html#gst-tag-merge-strings-with-comma"/>
|
1384
|
+
<function name="gst_tag_exists ()" link="gstreamer-GstTagList.html#gst-tag-exists"/>
|
1385
|
+
<function name="gst_tag_get_type ()" link="gstreamer-GstTagList.html#gst-tag-get-type"/>
|
1386
|
+
<function name="gst_tag_get_nick ()" link="gstreamer-GstTagList.html#gst-tag-get-nick"/>
|
1387
|
+
<function name="gst_tag_get_description ()" link="gstreamer-GstTagList.html#gst-tag-get-description"/>
|
1388
|
+
<function name="gst_tag_get_flag ()" link="gstreamer-GstTagList.html#gst-tag-get-flag"/>
|
1389
|
+
<function name="gst_tag_is_fixed ()" link="gstreamer-GstTagList.html#gst-tag-is-fixed"/>
|
1390
|
+
<function name="gst_tag_list_new ()" link="gstreamer-GstTagList.html#gst-tag-list-new"/>
|
1391
|
+
<function name="gst_tag_list_new_full ()" link="gstreamer-GstTagList.html#gst-tag-list-new-full"/>
|
1392
|
+
<function name="gst_tag_list_new_full_valist ()" link="gstreamer-GstTagList.html#gst-tag-list-new-full-valist"/>
|
1393
|
+
<function name="gst_is_tag_list ()" link="gstreamer-GstTagList.html#gst-is-tag-list"/>
|
1394
|
+
<function name="gst_tag_list_is_empty ()" link="gstreamer-GstTagList.html#gst-tag-list-is-empty"/>
|
1395
|
+
<function name="gst_tag_list_copy ()" link="gstreamer-GstTagList.html#gst-tag-list-copy"/>
|
1396
|
+
<function name="gst_tag_list_insert ()" link="gstreamer-GstTagList.html#gst-tag-list-insert"/>
|
1397
|
+
<function name="gst_tag_list_merge ()" link="gstreamer-GstTagList.html#gst-tag-list-merge"/>
|
1398
|
+
<function name="gst_tag_list_free ()" link="gstreamer-GstTagList.html#gst-tag-list-free"/>
|
1399
|
+
<function name="gst_tag_list_get_tag_size ()" link="gstreamer-GstTagList.html#gst-tag-list-get-tag-size"/>
|
1400
|
+
<function name="gst_tag_list_add ()" link="gstreamer-GstTagList.html#gst-tag-list-add"/>
|
1401
|
+
<function name="gst_tag_list_add_value ()" link="gstreamer-GstTagList.html#gst-tag-list-add-value"/>
|
1402
|
+
<function name="gst_tag_list_add_values ()" link="gstreamer-GstTagList.html#gst-tag-list-add-values"/>
|
1403
|
+
<function name="gst_tag_list_add_valist ()" link="gstreamer-GstTagList.html#gst-tag-list-add-valist"/>
|
1404
|
+
<function name="gst_tag_list_add_valist_values ()" link="gstreamer-GstTagList.html#gst-tag-list-add-valist-values"/>
|
1405
|
+
<function name="gst_tag_list_remove_tag ()" link="gstreamer-GstTagList.html#gst-tag-list-remove-tag"/>
|
1406
|
+
<function name="gst_tag_list_foreach ()" link="gstreamer-GstTagList.html#gst-tag-list-foreach"/>
|
1407
|
+
<function name="gst_tag_list_get_value_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-value-index"/>
|
1408
|
+
<function name="gst_tag_list_copy_value ()" link="gstreamer-GstTagList.html#gst-tag-list-copy-value"/>
|
1409
|
+
<function name="gst_tag_list_get_char ()" link="gstreamer-GstTagList.html#gst-tag-list-get-char"/>
|
1410
|
+
<function name="gst_tag_list_get_char_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-char-index"/>
|
1411
|
+
<function name="gst_tag_list_get_uchar ()" link="gstreamer-GstTagList.html#gst-tag-list-get-uchar"/>
|
1412
|
+
<function name="gst_tag_list_get_uchar_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-uchar-index"/>
|
1413
|
+
<function name="gst_tag_list_get_boolean ()" link="gstreamer-GstTagList.html#gst-tag-list-get-boolean"/>
|
1414
|
+
<function name="gst_tag_list_get_boolean_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-boolean-index"/>
|
1415
|
+
<function name="gst_tag_list_get_int ()" link="gstreamer-GstTagList.html#gst-tag-list-get-int"/>
|
1416
|
+
<function name="gst_tag_list_get_int_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-int-index"/>
|
1417
|
+
<function name="gst_tag_list_get_uint ()" link="gstreamer-GstTagList.html#gst-tag-list-get-uint"/>
|
1418
|
+
<function name="gst_tag_list_get_uint_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-uint-index"/>
|
1419
|
+
<function name="gst_tag_list_get_long ()" link="gstreamer-GstTagList.html#gst-tag-list-get-long"/>
|
1420
|
+
<function name="gst_tag_list_get_long_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-long-index"/>
|
1421
|
+
<function name="gst_tag_list_get_ulong ()" link="gstreamer-GstTagList.html#gst-tag-list-get-ulong"/>
|
1422
|
+
<function name="gst_tag_list_get_ulong_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-ulong-index"/>
|
1423
|
+
<function name="gst_tag_list_get_int64 ()" link="gstreamer-GstTagList.html#gst-tag-list-get-int64"/>
|
1424
|
+
<function name="gst_tag_list_get_int64_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-int64-index"/>
|
1425
|
+
<function name="gst_tag_list_get_uint64 ()" link="gstreamer-GstTagList.html#gst-tag-list-get-uint64"/>
|
1426
|
+
<function name="gst_tag_list_get_uint64_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-uint64-index"/>
|
1427
|
+
<function name="gst_tag_list_get_float ()" link="gstreamer-GstTagList.html#gst-tag-list-get-float"/>
|
1428
|
+
<function name="gst_tag_list_get_float_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-float-index"/>
|
1429
|
+
<function name="gst_tag_list_get_double ()" link="gstreamer-GstTagList.html#gst-tag-list-get-double"/>
|
1430
|
+
<function name="gst_tag_list_get_double_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-double-index"/>
|
1431
|
+
<function name="gst_tag_list_get_string ()" link="gstreamer-GstTagList.html#gst-tag-list-get-string"/>
|
1432
|
+
<function name="gst_tag_list_get_string_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-string-index"/>
|
1433
|
+
<function name="gst_tag_list_peek_string_index ()" link="gstreamer-GstTagList.html#gst-tag-list-peek-string-index"/>
|
1434
|
+
<function name="gst_tag_list_get_pointer ()" link="gstreamer-GstTagList.html#gst-tag-list-get-pointer"/>
|
1435
|
+
<function name="gst_tag_list_get_pointer_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-pointer-index"/>
|
1436
|
+
<function name="gst_tag_list_get_date ()" link="gstreamer-GstTagList.html#gst-tag-list-get-date"/>
|
1437
|
+
<function name="gst_tag_list_get_date_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-date-index"/>
|
1438
|
+
<function name="gst_tag_list_get_date_time ()" link="gstreamer-GstTagList.html#gst-tag-list-get-date-time"/>
|
1439
|
+
<function name="gst_tag_list_get_date_time_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-date-time-index"/>
|
1440
|
+
<function name="gst_tag_list_get_buffer ()" link="gstreamer-GstTagList.html#gst-tag-list-get-buffer"/>
|
1441
|
+
<function name="gst_tag_list_get_buffer_index ()" link="gstreamer-GstTagList.html#gst-tag-list-get-buffer-index"/>
|
1442
|
+
<function name="GstTagSetter" link="GstTagSetter.html#GstTagSetter-struct"/>
|
1443
|
+
<function name="struct GstTagSetterIFace" link="GstTagSetter.html#GstTagSetterIFace"/>
|
1444
|
+
<function name="gst_tag_setter_reset_tags ()" link="GstTagSetter.html#gst-tag-setter-reset-tags"/>
|
1445
|
+
<function name="gst_tag_setter_merge_tags ()" link="GstTagSetter.html#gst-tag-setter-merge-tags"/>
|
1446
|
+
<function name="gst_tag_setter_add_tags ()" link="GstTagSetter.html#gst-tag-setter-add-tags"/>
|
1447
|
+
<function name="gst_tag_setter_add_tag_value ()" link="GstTagSetter.html#gst-tag-setter-add-tag-value"/>
|
1448
|
+
<function name="gst_tag_setter_add_tag_values ()" link="GstTagSetter.html#gst-tag-setter-add-tag-values"/>
|
1449
|
+
<function name="gst_tag_setter_add_tag_valist ()" link="GstTagSetter.html#gst-tag-setter-add-tag-valist"/>
|
1450
|
+
<function name="gst_tag_setter_add_tag_valist_values ()" link="GstTagSetter.html#gst-tag-setter-add-tag-valist-values"/>
|
1451
|
+
<function name="gst_tag_setter_get_tag_list ()" link="GstTagSetter.html#gst-tag-setter-get-tag-list"/>
|
1452
|
+
<function name="gst_tag_setter_set_tag_merge_mode ()" link="GstTagSetter.html#gst-tag-setter-set-tag-merge-mode"/>
|
1453
|
+
<function name="gst_tag_setter_get_tag_merge_mode ()" link="GstTagSetter.html#gst-tag-setter-get-tag-merge-mode"/>
|
1454
|
+
<function name="struct GstTask" link="GstTask.html#GstTask-struct"/>
|
1455
|
+
<function name="GstTaskFunction ()" link="GstTask.html#GstTaskFunction"/>
|
1456
|
+
<function name="enum GstTaskState" link="GstTask.html#GstTaskState"/>
|
1457
|
+
<function name="GST_TASK_BROADCAST()" link="GstTask.html#GST-TASK-BROADCAST:CAPS"/>
|
1458
|
+
<function name="GST_TASK_GET_COND()" link="GstTask.html#GST-TASK-GET-COND:CAPS"/>
|
1459
|
+
<function name="GST_TASK_GET_LOCK()" link="GstTask.html#GST-TASK-GET-LOCK:CAPS"/>
|
1460
|
+
<function name="GST_TASK_SIGNAL()" link="GstTask.html#GST-TASK-SIGNAL:CAPS"/>
|
1461
|
+
<function name="GST_TASK_STATE()" link="GstTask.html#GST-TASK-STATE:CAPS"/>
|
1462
|
+
<function name="GST_TASK_WAIT()" link="GstTask.html#GST-TASK-WAIT:CAPS"/>
|
1463
|
+
<function name="gst_task_create ()" link="GstTask.html#gst-task-create"/>
|
1464
|
+
<function name="gst_task_set_lock ()" link="GstTask.html#gst-task-set-lock"/>
|
1465
|
+
<function name="gst_task_set_priority ()" link="GstTask.html#gst-task-set-priority"/>
|
1466
|
+
<function name="gst_task_set_pool ()" link="GstTask.html#gst-task-set-pool"/>
|
1467
|
+
<function name="gst_task_get_pool ()" link="GstTask.html#gst-task-get-pool"/>
|
1468
|
+
<function name="GstTaskThreadCallbacks" link="GstTask.html#GstTaskThreadCallbacks"/>
|
1469
|
+
<function name="gst_task_set_thread_callbacks ()" link="GstTask.html#gst-task-set-thread-callbacks"/>
|
1470
|
+
<function name="gst_task_get_state ()" link="GstTask.html#gst-task-get-state"/>
|
1471
|
+
<function name="gst_task_set_state ()" link="GstTask.html#gst-task-set-state"/>
|
1472
|
+
<function name="gst_task_pause ()" link="GstTask.html#gst-task-pause"/>
|
1473
|
+
<function name="gst_task_start ()" link="GstTask.html#gst-task-start"/>
|
1474
|
+
<function name="gst_task_stop ()" link="GstTask.html#gst-task-stop"/>
|
1475
|
+
<function name="gst_task_join ()" link="GstTask.html#gst-task-join"/>
|
1476
|
+
<function name="gst_task_cleanup_all ()" link="GstTask.html#gst-task-cleanup-all"/>
|
1477
|
+
<function name="struct GstTaskPool" link="GstTaskPool.html#GstTaskPool-struct"/>
|
1478
|
+
<function name="struct GstTaskPoolClass" link="GstTaskPool.html#GstTaskPoolClass"/>
|
1479
|
+
<function name="GstTaskPoolFunction ()" link="GstTaskPool.html#GstTaskPoolFunction"/>
|
1480
|
+
<function name="gst_task_pool_new ()" link="GstTaskPool.html#gst-task-pool-new"/>
|
1481
|
+
<function name="gst_task_pool_prepare ()" link="GstTaskPool.html#gst-task-pool-prepare"/>
|
1482
|
+
<function name="gst_task_pool_push ()" link="GstTaskPool.html#gst-task-pool-push"/>
|
1483
|
+
<function name="gst_task_pool_join ()" link="GstTaskPool.html#gst-task-pool-join"/>
|
1484
|
+
<function name="gst_task_pool_cleanup ()" link="GstTaskPool.html#gst-task-pool-cleanup"/>
|
1485
|
+
<function name="struct GstTypeFind" link="gstreamer-GstTypeFind.html#GstTypeFind"/>
|
1486
|
+
<function name="GstTypeFindFunction ()" link="gstreamer-GstTypeFind.html#GstTypeFindFunction"/>
|
1487
|
+
<function name="enum GstTypeFindProbability" link="gstreamer-GstTypeFind.html#GstTypeFindProbability"/>
|
1488
|
+
<function name="gst_type_find_peek ()" link="gstreamer-GstTypeFind.html#gst-type-find-peek"/>
|
1489
|
+
<function name="gst_type_find_suggest ()" link="gstreamer-GstTypeFind.html#gst-type-find-suggest"/>
|
1490
|
+
<function name="gst_type_find_suggest_simple ()" link="gstreamer-GstTypeFind.html#gst-type-find-suggest-simple"/>
|
1491
|
+
<function name="gst_type_find_get_length ()" link="gstreamer-GstTypeFind.html#gst-type-find-get-length"/>
|
1492
|
+
<function name="gst_type_find_register ()" link="gstreamer-GstTypeFind.html#gst-type-find-register"/>
|
1493
|
+
<function name="struct GstTypeFindFactory" link="GstTypeFindFactory.html#GstTypeFindFactory-struct"/>
|
1494
|
+
<function name="gst_type_find_factory_get_list ()" link="GstTypeFindFactory.html#gst-type-find-factory-get-list"/>
|
1495
|
+
<function name="gst_type_find_factory_get_extensions ()" link="GstTypeFindFactory.html#gst-type-find-factory-get-extensions"/>
|
1496
|
+
<function name="gst_type_find_factory_get_caps ()" link="GstTypeFindFactory.html#gst-type-find-factory-get-caps"/>
|
1497
|
+
<function name="gst_type_find_factory_call_function ()" link="GstTypeFindFactory.html#gst-type-find-factory-call-function"/>
|
1498
|
+
<function name="GstURIHandler" link="gstreamer-GstUriHandler.html#GstURIHandler-struct"/>
|
1499
|
+
<function name="struct GstURIHandlerInterface" link="gstreamer-GstUriHandler.html#GstURIHandlerInterface"/>
|
1500
|
+
<function name="enum GstURIType" link="gstreamer-GstUriHandler.html#GstURIType"/>
|
1501
|
+
<function name="GST_URI_TYPE_IS_VALID()" link="gstreamer-GstUriHandler.html#GST-URI-TYPE-IS-VALID:CAPS"/>
|
1502
|
+
<function name="gst_uri_protocol_is_valid ()" link="gstreamer-GstUriHandler.html#gst-uri-protocol-is-valid"/>
|
1503
|
+
<function name="gst_uri_protocol_is_supported ()" link="gstreamer-GstUriHandler.html#gst-uri-protocol-is-supported"/>
|
1504
|
+
<function name="gst_uri_is_valid ()" link="gstreamer-GstUriHandler.html#gst-uri-is-valid"/>
|
1505
|
+
<function name="gst_uri_has_protocol ()" link="gstreamer-GstUriHandler.html#gst-uri-has-protocol"/>
|
1506
|
+
<function name="gst_uri_get_protocol ()" link="gstreamer-GstUriHandler.html#gst-uri-get-protocol"/>
|
1507
|
+
<function name="gst_uri_get_location ()" link="gstreamer-GstUriHandler.html#gst-uri-get-location"/>
|
1508
|
+
<function name="gst_uri_construct ()" link="gstreamer-GstUriHandler.html#gst-uri-construct"/>
|
1509
|
+
<function name="gst_filename_to_uri ()" link="gstreamer-GstUriHandler.html#gst-filename-to-uri"/>
|
1510
|
+
<function name="gst_element_make_from_uri ()" link="gstreamer-GstUriHandler.html#gst-element-make-from-uri"/>
|
1511
|
+
<function name="gst_uri_handler_get_uri_type ()" link="gstreamer-GstUriHandler.html#gst-uri-handler-get-uri-type"/>
|
1512
|
+
<function name="gst_uri_handler_get_protocols ()" link="gstreamer-GstUriHandler.html#gst-uri-handler-get-protocols"/>
|
1513
|
+
<function name="gst_uri_handler_get_uri ()" link="gstreamer-GstUriHandler.html#gst-uri-handler-get-uri"/>
|
1514
|
+
<function name="gst_uri_handler_set_uri ()" link="gstreamer-GstUriHandler.html#gst-uri-handler-set-uri"/>
|
1515
|
+
<function name="gst_uri_handler_new_uri ()" link="gstreamer-GstUriHandler.html#gst-uri-handler-new-uri"/>
|
1516
|
+
<function name="The "new-uri" signal" link="gstreamer-GstUriHandler.html#GstURIHandler-new-uri"/>
|
1517
|
+
<function name="GST_BOILERPLATE_WITH_INTERFACE()" link="gstreamer-GstUtils.html#GST-BOILERPLATE-WITH-INTERFACE:CAPS"/>
|
1518
|
+
<function name="GST_BOILERPLATE_FULL()" link="gstreamer-GstUtils.html#GST-BOILERPLATE-FULL:CAPS"/>
|
1519
|
+
<function name="GST_BOILERPLATE()" link="gstreamer-GstUtils.html#GST-BOILERPLATE:CAPS"/>
|
1520
|
+
<function name="GST_CALL_PARENT()" link="gstreamer-GstUtils.html#GST-CALL-PARENT:CAPS"/>
|
1521
|
+
<function name="GST_CALL_PARENT_WITH_DEFAULT()" link="gstreamer-GstUtils.html#GST-CALL-PARENT-WITH-DEFAULT:CAPS"/>
|
1522
|
+
<function name="GDOUBLE_FROM_BE()" link="gstreamer-GstUtils.html#GDOUBLE-FROM-BE:CAPS"/>
|
1523
|
+
<function name="GDOUBLE_FROM_LE()" link="gstreamer-GstUtils.html#GDOUBLE-FROM-LE:CAPS"/>
|
1524
|
+
<function name="GDOUBLE_TO_BE()" link="gstreamer-GstUtils.html#GDOUBLE-TO-BE:CAPS"/>
|
1525
|
+
<function name="GDOUBLE_TO_LE()" link="gstreamer-GstUtils.html#GDOUBLE-TO-LE:CAPS"/>
|
1526
|
+
<function name="GDOUBLE_SWAP_LE_BE ()" link="gstreamer-GstUtils.html#GDOUBLE-SWAP-LE-BE:CAPS"/>
|
1527
|
+
<function name="GFLOAT_FROM_BE()" link="gstreamer-GstUtils.html#GFLOAT-FROM-BE:CAPS"/>
|
1528
|
+
<function name="GFLOAT_FROM_LE()" link="gstreamer-GstUtils.html#GFLOAT-FROM-LE:CAPS"/>
|
1529
|
+
<function name="GFLOAT_TO_BE()" link="gstreamer-GstUtils.html#GFLOAT-TO-BE:CAPS"/>
|
1530
|
+
<function name="GFLOAT_TO_LE()" link="gstreamer-GstUtils.html#GFLOAT-TO-LE:CAPS"/>
|
1531
|
+
<function name="GFLOAT_SWAP_LE_BE ()" link="gstreamer-GstUtils.html#GFLOAT-SWAP-LE-BE:CAPS"/>
|
1532
|
+
<function name="GST_READ_UINT8()" link="gstreamer-GstUtils.html#GST-READ-UINT8:CAPS"/>
|
1533
|
+
<function name="GST_READ_UINT16_LE()" link="gstreamer-GstUtils.html#GST-READ-UINT16-LE:CAPS"/>
|
1534
|
+
<function name="GST_READ_UINT16_BE()" link="gstreamer-GstUtils.html#GST-READ-UINT16-BE:CAPS"/>
|
1535
|
+
<function name="GST_READ_UINT24_LE()" link="gstreamer-GstUtils.html#GST-READ-UINT24-LE:CAPS"/>
|
1536
|
+
<function name="GST_READ_UINT24_BE()" link="gstreamer-GstUtils.html#GST-READ-UINT24-BE:CAPS"/>
|
1537
|
+
<function name="GST_READ_UINT32_LE()" link="gstreamer-GstUtils.html#GST-READ-UINT32-LE:CAPS"/>
|
1538
|
+
<function name="GST_READ_UINT32_BE()" link="gstreamer-GstUtils.html#GST-READ-UINT32-BE:CAPS"/>
|
1539
|
+
<function name="GST_READ_UINT64_LE()" link="gstreamer-GstUtils.html#GST-READ-UINT64-LE:CAPS"/>
|
1540
|
+
<function name="GST_READ_UINT64_BE()" link="gstreamer-GstUtils.html#GST-READ-UINT64-BE:CAPS"/>
|
1541
|
+
<function name="GST_READ_FLOAT_LE ()" link="gstreamer-GstUtils.html#GST-READ-FLOAT-LE:CAPS"/>
|
1542
|
+
<function name="GST_READ_FLOAT_BE ()" link="gstreamer-GstUtils.html#GST-READ-FLOAT-BE:CAPS"/>
|
1543
|
+
<function name="GST_READ_DOUBLE_LE ()" link="gstreamer-GstUtils.html#GST-READ-DOUBLE-LE:CAPS"/>
|
1544
|
+
<function name="GST_READ_DOUBLE_BE ()" link="gstreamer-GstUtils.html#GST-READ-DOUBLE-BE:CAPS"/>
|
1545
|
+
<function name="GST_WRITE_UINT8()" link="gstreamer-GstUtils.html#GST-WRITE-UINT8:CAPS"/>
|
1546
|
+
<function name="GST_WRITE_UINT16_LE()" link="gstreamer-GstUtils.html#GST-WRITE-UINT16-LE:CAPS"/>
|
1547
|
+
<function name="GST_WRITE_UINT16_BE()" link="gstreamer-GstUtils.html#GST-WRITE-UINT16-BE:CAPS"/>
|
1548
|
+
<function name="GST_WRITE_UINT24_LE()" link="gstreamer-GstUtils.html#GST-WRITE-UINT24-LE:CAPS"/>
|
1549
|
+
<function name="GST_WRITE_UINT24_BE()" link="gstreamer-GstUtils.html#GST-WRITE-UINT24-BE:CAPS"/>
|
1550
|
+
<function name="GST_WRITE_UINT32_LE()" link="gstreamer-GstUtils.html#GST-WRITE-UINT32-LE:CAPS"/>
|
1551
|
+
<function name="GST_WRITE_UINT32_BE()" link="gstreamer-GstUtils.html#GST-WRITE-UINT32-BE:CAPS"/>
|
1552
|
+
<function name="GST_WRITE_UINT64_LE()" link="gstreamer-GstUtils.html#GST-WRITE-UINT64-LE:CAPS"/>
|
1553
|
+
<function name="GST_WRITE_UINT64_BE()" link="gstreamer-GstUtils.html#GST-WRITE-UINT64-BE:CAPS"/>
|
1554
|
+
<function name="GST_WRITE_FLOAT_LE ()" link="gstreamer-GstUtils.html#GST-WRITE-FLOAT-LE:CAPS"/>
|
1555
|
+
<function name="GST_WRITE_FLOAT_BE ()" link="gstreamer-GstUtils.html#GST-WRITE-FLOAT-BE:CAPS"/>
|
1556
|
+
<function name="GST_WRITE_DOUBLE_LE ()" link="gstreamer-GstUtils.html#GST-WRITE-DOUBLE-LE:CAPS"/>
|
1557
|
+
<function name="GST_WRITE_DOUBLE_BE ()" link="gstreamer-GstUtils.html#GST-WRITE-DOUBLE-BE:CAPS"/>
|
1558
|
+
<function name="GST_ROUND_UP_2()" link="gstreamer-GstUtils.html#GST-ROUND-UP-2:CAPS"/>
|
1559
|
+
<function name="GST_ROUND_UP_4()" link="gstreamer-GstUtils.html#GST-ROUND-UP-4:CAPS"/>
|
1560
|
+
<function name="GST_ROUND_UP_8()" link="gstreamer-GstUtils.html#GST-ROUND-UP-8:CAPS"/>
|
1561
|
+
<function name="GST_ROUND_UP_16()" link="gstreamer-GstUtils.html#GST-ROUND-UP-16:CAPS"/>
|
1562
|
+
<function name="GST_ROUND_UP_32()" link="gstreamer-GstUtils.html#GST-ROUND-UP-32:CAPS"/>
|
1563
|
+
<function name="GST_ROUND_UP_64()" link="gstreamer-GstUtils.html#GST-ROUND-UP-64:CAPS"/>
|
1564
|
+
<function name="GST_ROUND_DOWN_2()" link="gstreamer-GstUtils.html#GST-ROUND-DOWN-2:CAPS"/>
|
1565
|
+
<function name="GST_ROUND_DOWN_4()" link="gstreamer-GstUtils.html#GST-ROUND-DOWN-4:CAPS"/>
|
1566
|
+
<function name="GST_ROUND_DOWN_8()" link="gstreamer-GstUtils.html#GST-ROUND-DOWN-8:CAPS"/>
|
1567
|
+
<function name="GST_ROUND_DOWN_16()" link="gstreamer-GstUtils.html#GST-ROUND-DOWN-16:CAPS"/>
|
1568
|
+
<function name="GST_ROUND_DOWN_32()" link="gstreamer-GstUtils.html#GST-ROUND-DOWN-32:CAPS"/>
|
1569
|
+
<function name="GST_ROUND_DOWN_64()" link="gstreamer-GstUtils.html#GST-ROUND-DOWN-64:CAPS"/>
|
1570
|
+
<function name="gst_atomic_int_set ()" link="gstreamer-GstUtils.html#gst-atomic-int-set"/>
|
1571
|
+
<function name="gst_flow_get_name ()" link="gstreamer-GstUtils.html#gst-flow-get-name"/>
|
1572
|
+
<function name="gst_flow_to_quark ()" link="gstreamer-GstUtils.html#gst-flow-to-quark"/>
|
1573
|
+
<function name="gst_print_element_args ()" link="gstreamer-GstUtils.html#gst-print-element-args"/>
|
1574
|
+
<function name="gst_print_pad_caps ()" link="gstreamer-GstUtils.html#gst-print-pad-caps"/>
|
1575
|
+
<function name="gst_guint64_to_gdouble()" link="gstreamer-GstUtils.html#gst-guint64-to-gdouble"/>
|
1576
|
+
<function name="gst_gdouble_to_guint64()" link="gstreamer-GstUtils.html#gst-gdouble-to-guint64"/>
|
1577
|
+
<function name="gst_type_register_static_full ()" link="gstreamer-GstUtils.html#gst-type-register-static-full"/>
|
1578
|
+
<function name="gst_util_dump_mem ()" link="gstreamer-GstUtils.html#gst-util-dump-mem"/>
|
1579
|
+
<function name="gst_util_uint64_scale ()" link="gstreamer-GstUtils.html#gst-util-uint64-scale"/>
|
1580
|
+
<function name="gst_util_uint64_scale_round ()" link="gstreamer-GstUtils.html#gst-util-uint64-scale-round"/>
|
1581
|
+
<function name="gst_util_uint64_scale_ceil ()" link="gstreamer-GstUtils.html#gst-util-uint64-scale-ceil"/>
|
1582
|
+
<function name="gst_util_uint64_scale_int ()" link="gstreamer-GstUtils.html#gst-util-uint64-scale-int"/>
|
1583
|
+
<function name="gst_util_uint64_scale_int_round ()" link="gstreamer-GstUtils.html#gst-util-uint64-scale-int-round"/>
|
1584
|
+
<function name="gst_util_uint64_scale_int_ceil ()" link="gstreamer-GstUtils.html#gst-util-uint64-scale-int-ceil"/>
|
1585
|
+
<function name="gst_util_greatest_common_divisor ()" link="gstreamer-GstUtils.html#gst-util-greatest-common-divisor"/>
|
1586
|
+
<function name="gst_util_fraction_to_double ()" link="gstreamer-GstUtils.html#gst-util-fraction-to-double"/>
|
1587
|
+
<function name="gst_util_double_to_fraction ()" link="gstreamer-GstUtils.html#gst-util-double-to-fraction"/>
|
1588
|
+
<function name="gst_util_fraction_multiply ()" link="gstreamer-GstUtils.html#gst-util-fraction-multiply"/>
|
1589
|
+
<function name="gst_util_fraction_add ()" link="gstreamer-GstUtils.html#gst-util-fraction-add"/>
|
1590
|
+
<function name="gst_util_fraction_compare ()" link="gstreamer-GstUtils.html#gst-util-fraction-compare"/>
|
1591
|
+
<function name="gst_util_seqnum_next ()" link="gstreamer-GstUtils.html#gst-util-seqnum-next"/>
|
1592
|
+
<function name="gst_util_seqnum_compare ()" link="gstreamer-GstUtils.html#gst-util-seqnum-compare"/>
|
1593
|
+
<function name="gst_util_set_object_arg ()" link="gstreamer-GstUtils.html#gst-util-set-object-arg"/>
|
1594
|
+
<function name="gst_util_set_value_from_string ()" link="gstreamer-GstUtils.html#gst-util-set-value-from-string"/>
|
1595
|
+
<function name="gst_util_get_timestamp ()" link="gstreamer-GstUtils.html#gst-util-get-timestamp"/>
|
1596
|
+
<function name="enum GstSearchMode" link="gstreamer-GstUtils.html#GstSearchMode"/>
|
1597
|
+
<function name="gst_util_array_binary_search ()" link="gstreamer-GstUtils.html#gst-util-array-binary-search"/>
|
1598
|
+
<function name="GST_VALUE_HOLDS_FOURCC()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-FOURCC:CAPS"/>
|
1599
|
+
<function name="GST_MAKE_FOURCC()" link="gstreamer-GstValue.html#GST-MAKE-FOURCC:CAPS"/>
|
1600
|
+
<function name="GST_STR_FOURCC()" link="gstreamer-GstValue.html#GST-STR-FOURCC:CAPS"/>
|
1601
|
+
<function name="GST_FOURCC_FORMAT" link="gstreamer-GstValue.html#GST-FOURCC-FORMAT:CAPS"/>
|
1602
|
+
<function name="GST_FOURCC_ARGS()" link="gstreamer-GstValue.html#GST-FOURCC-ARGS:CAPS"/>
|
1603
|
+
<function name="GST_TYPE_FOURCC" link="gstreamer-GstValue.html#GST-TYPE-FOURCC:CAPS"/>
|
1604
|
+
<function name="gst_value_set_fourcc ()" link="gstreamer-GstValue.html#gst-value-set-fourcc"/>
|
1605
|
+
<function name="gst_value_get_fourcc ()" link="gstreamer-GstValue.html#gst-value-get-fourcc"/>
|
1606
|
+
<function name="GST_VALUE_HOLDS_INT_RANGE()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-INT-RANGE:CAPS"/>
|
1607
|
+
<function name="GST_TYPE_INT_RANGE" link="gstreamer-GstValue.html#GST-TYPE-INT-RANGE:CAPS"/>
|
1608
|
+
<function name="gst_value_set_int_range ()" link="gstreamer-GstValue.html#gst-value-set-int-range"/>
|
1609
|
+
<function name="gst_value_get_int_range_min ()" link="gstreamer-GstValue.html#gst-value-get-int-range-min"/>
|
1610
|
+
<function name="gst_value_get_int_range_max ()" link="gstreamer-GstValue.html#gst-value-get-int-range-max"/>
|
1611
|
+
<function name="GST_VALUE_HOLDS_INT64_RANGE()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-INT64-RANGE:CAPS"/>
|
1612
|
+
<function name="GST_TYPE_INT64_RANGE" link="gstreamer-GstValue.html#GST-TYPE-INT64-RANGE:CAPS"/>
|
1613
|
+
<function name="gst_value_set_int64_range ()" link="gstreamer-GstValue.html#gst-value-set-int64-range"/>
|
1614
|
+
<function name="gst_value_get_int64_range_min ()" link="gstreamer-GstValue.html#gst-value-get-int64-range-min"/>
|
1615
|
+
<function name="gst_value_get_int64_range_max ()" link="gstreamer-GstValue.html#gst-value-get-int64-range-max"/>
|
1616
|
+
<function name="GST_VALUE_HOLDS_DOUBLE_RANGE()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-DOUBLE-RANGE:CAPS"/>
|
1617
|
+
<function name="GST_TYPE_DOUBLE_RANGE" link="gstreamer-GstValue.html#GST-TYPE-DOUBLE-RANGE:CAPS"/>
|
1618
|
+
<function name="gst_value_set_double_range ()" link="gstreamer-GstValue.html#gst-value-set-double-range"/>
|
1619
|
+
<function name="gst_value_get_double_range_min ()" link="gstreamer-GstValue.html#gst-value-get-double-range-min"/>
|
1620
|
+
<function name="gst_value_get_double_range_max ()" link="gstreamer-GstValue.html#gst-value-get-double-range-max"/>
|
1621
|
+
<function name="GST_VALUE_HOLDS_LIST()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-LIST:CAPS"/>
|
1622
|
+
<function name="GST_TYPE_LIST" link="gstreamer-GstValue.html#GST-TYPE-LIST:CAPS"/>
|
1623
|
+
<function name="GST_VALUE_HOLDS_ARRAY()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-ARRAY:CAPS"/>
|
1624
|
+
<function name="GST_TYPE_ARRAY" link="gstreamer-GstValue.html#GST-TYPE-ARRAY:CAPS"/>
|
1625
|
+
<function name="gst_value_list_append_value ()" link="gstreamer-GstValue.html#gst-value-list-append-value"/>
|
1626
|
+
<function name="gst_value_list_prepend_value ()" link="gstreamer-GstValue.html#gst-value-list-prepend-value"/>
|
1627
|
+
<function name="gst_value_list_concat ()" link="gstreamer-GstValue.html#gst-value-list-concat"/>
|
1628
|
+
<function name="gst_value_list_merge ()" link="gstreamer-GstValue.html#gst-value-list-merge"/>
|
1629
|
+
<function name="gst_value_list_get_size ()" link="gstreamer-GstValue.html#gst-value-list-get-size"/>
|
1630
|
+
<function name="gst_value_list_get_value ()" link="gstreamer-GstValue.html#gst-value-list-get-value"/>
|
1631
|
+
<function name="GST_VALUE_HOLDS_FRACTION()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-FRACTION:CAPS"/>
|
1632
|
+
<function name="GST_TYPE_FRACTION" link="gstreamer-GstValue.html#GST-TYPE-FRACTION:CAPS"/>
|
1633
|
+
<function name="gst_value_set_fraction ()" link="gstreamer-GstValue.html#gst-value-set-fraction"/>
|
1634
|
+
<function name="gst_value_get_fraction_numerator ()" link="gstreamer-GstValue.html#gst-value-get-fraction-numerator"/>
|
1635
|
+
<function name="gst_value_get_fraction_denominator ()" link="gstreamer-GstValue.html#gst-value-get-fraction-denominator"/>
|
1636
|
+
<function name="gst_value_fraction_multiply ()" link="gstreamer-GstValue.html#gst-value-fraction-multiply"/>
|
1637
|
+
<function name="gst_value_fraction_subtract ()" link="gstreamer-GstValue.html#gst-value-fraction-subtract"/>
|
1638
|
+
<function name="GST_VALUE_HOLDS_FRACTION_RANGE()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-FRACTION-RANGE:CAPS"/>
|
1639
|
+
<function name="GST_TYPE_FRACTION_RANGE" link="gstreamer-GstValue.html#GST-TYPE-FRACTION-RANGE:CAPS"/>
|
1640
|
+
<function name="gst_value_set_fraction_range ()" link="gstreamer-GstValue.html#gst-value-set-fraction-range"/>
|
1641
|
+
<function name="gst_value_get_fraction_range_min ()" link="gstreamer-GstValue.html#gst-value-get-fraction-range-min"/>
|
1642
|
+
<function name="gst_value_get_fraction_range_max ()" link="gstreamer-GstValue.html#gst-value-get-fraction-range-max"/>
|
1643
|
+
<function name="gst_value_set_fraction_range_full ()" link="gstreamer-GstValue.html#gst-value-set-fraction-range-full"/>
|
1644
|
+
<function name="GST_VALUE_HOLDS_DATE()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-DATE:CAPS"/>
|
1645
|
+
<function name="GST_TYPE_DATE" link="gstreamer-GstValue.html#GST-TYPE-DATE:CAPS"/>
|
1646
|
+
<function name="gst_value_set_date ()" link="gstreamer-GstValue.html#gst-value-set-date"/>
|
1647
|
+
<function name="gst_value_get_date ()" link="gstreamer-GstValue.html#gst-value-get-date"/>
|
1648
|
+
<function name="GST_VALUE_HOLDS_DATE_TIME()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-DATE-TIME:CAPS"/>
|
1649
|
+
<function name="GST_VALUE_HOLDS_CAPS()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-CAPS"/>
|
1650
|
+
<function name="gst_value_set_caps ()" link="gstreamer-GstValue.html#gst-value-set-caps"/>
|
1651
|
+
<function name="gst_value_get_caps ()" link="gstreamer-GstValue.html#gst-value-get-caps"/>
|
1652
|
+
<function name="GST_VALUE_HOLDS_STRUCTURE()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-STRUCTURE:CAPS"/>
|
1653
|
+
<function name="gst_value_set_structure ()" link="gstreamer-GstValue.html#gst-value-set-structure"/>
|
1654
|
+
<function name="gst_value_get_structure ()" link="gstreamer-GstValue.html#gst-value-get-structure"/>
|
1655
|
+
<function name="GST_VALUE_HOLDS_MINI_OBJECT()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-MINI-OBJECT:CAPS"/>
|
1656
|
+
<function name="GST_VALUE_HOLDS_BUFFER()" link="gstreamer-GstValue.html#GST-VALUE-HOLDS-BUFFER:CAPS"/>
|
1657
|
+
<function name="gst_value_get_buffer()" link="gstreamer-GstValue.html#gst-value-get-buffer"/>
|
1658
|
+
<function name="gst_value_set_buffer()" link="gstreamer-GstValue.html#gst-value-set-buffer"/>
|
1659
|
+
<function name="gst_value_take_buffer()" link="gstreamer-GstValue.html#gst-value-take-buffer"/>
|
1660
|
+
<function name="GST_VALUE_LESS_THAN" link="gstreamer-GstValue.html#GST-VALUE-LESS-THAN:CAPS"/>
|
1661
|
+
<function name="GST_VALUE_EQUAL" link="gstreamer-GstValue.html#GST-VALUE-EQUAL:CAPS"/>
|
1662
|
+
<function name="GST_VALUE_GREATER_THAN" link="gstreamer-GstValue.html#GST-VALUE-GREATER-THAN:CAPS"/>
|
1663
|
+
<function name="GST_VALUE_UNORDERED" link="gstreamer-GstValue.html#GST-VALUE-UNORDERED:CAPS"/>
|
1664
|
+
<function name="GstValueCompareFunc ()" link="gstreamer-GstValue.html#GstValueCompareFunc"/>
|
1665
|
+
<function name="GstValueSerializeFunc ()" link="gstreamer-GstValue.html#GstValueSerializeFunc"/>
|
1666
|
+
<function name="GstValueDeserializeFunc ()" link="gstreamer-GstValue.html#GstValueDeserializeFunc"/>
|
1667
|
+
<function name="GstValueUnionFunc ()" link="gstreamer-GstValue.html#GstValueUnionFunc"/>
|
1668
|
+
<function name="GstValueIntersectFunc ()" link="gstreamer-GstValue.html#GstValueIntersectFunc"/>
|
1669
|
+
<function name="GstValueSubtractFunc ()" link="gstreamer-GstValue.html#GstValueSubtractFunc"/>
|
1670
|
+
<function name="struct GstValueTable" link="gstreamer-GstValue.html#GstValueTable"/>
|
1671
|
+
<function name="gst_value_is_fixed ()" link="gstreamer-GstValue.html#gst-value-is-fixed"/>
|
1672
|
+
<function name="gst_value_register ()" link="gstreamer-GstValue.html#gst-value-register"/>
|
1673
|
+
<function name="gst_value_init_and_copy ()" link="gstreamer-GstValue.html#gst-value-init-and-copy"/>
|
1674
|
+
<function name="gst_value_serialize ()" link="gstreamer-GstValue.html#gst-value-serialize"/>
|
1675
|
+
<function name="gst_value_deserialize ()" link="gstreamer-GstValue.html#gst-value-deserialize"/>
|
1676
|
+
<function name="gst_value_compare ()" link="gstreamer-GstValue.html#gst-value-compare"/>
|
1677
|
+
<function name="gst_value_can_compare ()" link="gstreamer-GstValue.html#gst-value-can-compare"/>
|
1678
|
+
<function name="gst_value_union ()" link="gstreamer-GstValue.html#gst-value-union"/>
|
1679
|
+
<function name="gst_value_can_union ()" link="gstreamer-GstValue.html#gst-value-can-union"/>
|
1680
|
+
<function name="gst_value_register_union_func ()" link="gstreamer-GstValue.html#gst-value-register-union-func"/>
|
1681
|
+
<function name="gst_value_subtract ()" link="gstreamer-GstValue.html#gst-value-subtract"/>
|
1682
|
+
<function name="gst_value_can_subtract ()" link="gstreamer-GstValue.html#gst-value-can-subtract"/>
|
1683
|
+
<function name="gst_value_register_subtract_func ()" link="gstreamer-GstValue.html#gst-value-register-subtract-func"/>
|
1684
|
+
<function name="gst_value_intersect ()" link="gstreamer-GstValue.html#gst-value-intersect"/>
|
1685
|
+
<function name="gst_value_can_intersect ()" link="gstreamer-GstValue.html#gst-value-can-intersect"/>
|
1686
|
+
<function name="gst_value_register_intersect_func ()" link="gstreamer-GstValue.html#gst-value-register-intersect-func"/>
|
1687
|
+
<function name="gst_value_array_append_value ()" link="gstreamer-GstValue.html#gst-value-array-append-value"/>
|
1688
|
+
<function name="gst_value_array_get_size ()" link="gstreamer-GstValue.html#gst-value-array-get-size"/>
|
1689
|
+
<function name="gst_value_array_get_value ()" link="gstreamer-GstValue.html#gst-value-array-get-value"/>
|
1690
|
+
<function name="gst_value_array_prepend_value ()" link="gstreamer-GstValue.html#gst-value-array-prepend-value"/>
|
1691
|
+
<function name="GST_VERSION_MAJOR" link="gstreamer-GstVersion.html#GST-VERSION-MAJOR:CAPS"/>
|
1692
|
+
<function name="GST_VERSION_MINOR" link="gstreamer-GstVersion.html#GST-VERSION-MINOR:CAPS"/>
|
1693
|
+
<function name="GST_VERSION_MICRO" link="gstreamer-GstVersion.html#GST-VERSION-MICRO:CAPS"/>
|
1694
|
+
<function name="GST_VERSION_NANO" link="gstreamer-GstVersion.html#GST-VERSION-NANO:CAPS"/>
|
1695
|
+
<function name="GST_CHECK_VERSION()" link="gstreamer-GstVersion.html#GST-CHECK-VERSION:CAPS"/>
|
1696
|
+
<function name="struct GstXML" link="GstXML.html#GstXML-struct"/>
|
1697
|
+
<function name="gst_xml_write ()" link="GstXML.html#gst-xml-write"/>
|
1698
|
+
<function name="gst_xml_write_file ()" link="GstXML.html#gst-xml-write-file"/>
|
1699
|
+
<function name="gst_xml_new ()" link="GstXML.html#gst-xml-new"/>
|
1700
|
+
<function name="gst_xml_parse_doc ()" link="GstXML.html#gst-xml-parse-doc"/>
|
1701
|
+
<function name="gst_xml_parse_file ()" link="GstXML.html#gst-xml-parse-file"/>
|
1702
|
+
<function name="gst_xml_parse_memory ()" link="GstXML.html#gst-xml-parse-memory"/>
|
1703
|
+
<function name="gst_xml_get_element ()" link="GstXML.html#gst-xml-get-element"/>
|
1704
|
+
<function name="gst_xml_get_topelements ()" link="GstXML.html#gst-xml-get-topelements"/>
|
1705
|
+
<function name="gst_xml_make_element ()" link="GstXML.html#gst-xml-make-element"/>
|
1706
|
+
<function name="The "object-loaded" signal" link="GstXML.html#GstXML-object-loaded"/>
|
1707
|
+
<function name="enum GstDebugLevel" link="gstreamer-GstInfo.html#GstDebugLevel"/>
|
1708
|
+
<function name="GST_LEVEL_DEFAULT" link="gstreamer-GstInfo.html#GST-LEVEL-DEFAULT:CAPS"/>
|
1709
|
+
<function name="enum GstDebugColorFlags" link="gstreamer-GstInfo.html#GstDebugColorFlags"/>
|
1710
|
+
<function name="struct GstDebugCategory" link="gstreamer-GstInfo.html#GstDebugCategory"/>
|
1711
|
+
<function name="enum GstDebugGraphDetails" link="gstreamer-GstInfo.html#GstDebugGraphDetails"/>
|
1712
|
+
<function name="GST_STR_NULL()" link="gstreamer-GstInfo.html#GST-STR-NULL:CAPS"/>
|
1713
|
+
<function name="GST_DEBUG_PAD_NAME()" link="gstreamer-GstInfo.html#GST-DEBUG-PAD-NAME:CAPS"/>
|
1714
|
+
<function name="GST_FUNCTION" link="gstreamer-GstInfo.html#GST-FUNCTION:CAPS"/>
|
1715
|
+
<function name="GstLogFunction ()" link="gstreamer-GstInfo.html#GstLogFunction"/>
|
1716
|
+
<function name="gst_debug_log ()" link="gstreamer-GstInfo.html#gst-debug-log"/>
|
1717
|
+
<function name="gst_debug_log_valist ()" link="gstreamer-GstInfo.html#gst-debug-log-valist"/>
|
1718
|
+
<function name="gst_debug_message_get ()" link="gstreamer-GstInfo.html#gst-debug-message-get"/>
|
1719
|
+
<function name="gst_debug_log_default ()" link="gstreamer-GstInfo.html#gst-debug-log-default"/>
|
1720
|
+
<function name="gst_debug_level_get_name ()" link="gstreamer-GstInfo.html#gst-debug-level-get-name"/>
|
1721
|
+
<function name="gst_debug_add_log_function ()" link="gstreamer-GstInfo.html#gst-debug-add-log-function"/>
|
1722
|
+
<function name="gst_debug_remove_log_function ()" link="gstreamer-GstInfo.html#gst-debug-remove-log-function"/>
|
1723
|
+
<function name="gst_debug_remove_log_function_by_data ()" link="gstreamer-GstInfo.html#gst-debug-remove-log-function-by-data"/>
|
1724
|
+
<function name="gst_debug_set_active ()" link="gstreamer-GstInfo.html#gst-debug-set-active"/>
|
1725
|
+
<function name="gst_debug_is_active ()" link="gstreamer-GstInfo.html#gst-debug-is-active"/>
|
1726
|
+
<function name="gst_debug_set_colored ()" link="gstreamer-GstInfo.html#gst-debug-set-colored"/>
|
1727
|
+
<function name="gst_debug_is_colored ()" link="gstreamer-GstInfo.html#gst-debug-is-colored"/>
|
1728
|
+
<function name="gst_debug_set_default_threshold ()" link="gstreamer-GstInfo.html#gst-debug-set-default-threshold"/>
|
1729
|
+
<function name="gst_debug_get_default_threshold ()" link="gstreamer-GstInfo.html#gst-debug-get-default-threshold"/>
|
1730
|
+
<function name="gst_debug_set_threshold_for_name ()" link="gstreamer-GstInfo.html#gst-debug-set-threshold-for-name"/>
|
1731
|
+
<function name="gst_debug_unset_threshold_for_name ()" link="gstreamer-GstInfo.html#gst-debug-unset-threshold-for-name"/>
|
1732
|
+
<function name="GST_DEBUG_CATEGORY()" link="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY:CAPS"/>
|
1733
|
+
<function name="GST_DEBUG_CATEGORY_EXTERN()" link="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-EXTERN:CAPS"/>
|
1734
|
+
<function name="GST_DEBUG_CATEGORY_STATIC()" link="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-STATIC:CAPS"/>
|
1735
|
+
<function name="GST_DEBUG_CATEGORY_INIT()" link="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-INIT:CAPS"/>
|
1736
|
+
<function name="GST_DEBUG_CATEGORY_GET()" link="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-GET:CAPS"/>
|
1737
|
+
<function name="gst_debug_category_free ()" link="gstreamer-GstInfo.html#gst-debug-category-free"/>
|
1738
|
+
<function name="gst_debug_category_set_threshold ()" link="gstreamer-GstInfo.html#gst-debug-category-set-threshold"/>
|
1739
|
+
<function name="gst_debug_category_reset_threshold ()" link="gstreamer-GstInfo.html#gst-debug-category-reset-threshold"/>
|
1740
|
+
<function name="gst_debug_category_get_threshold ()" link="gstreamer-GstInfo.html#gst-debug-category-get-threshold"/>
|
1741
|
+
<function name="gst_debug_category_get_name ()" link="gstreamer-GstInfo.html#gst-debug-category-get-name"/>
|
1742
|
+
<function name="gst_debug_category_get_color ()" link="gstreamer-GstInfo.html#gst-debug-category-get-color"/>
|
1743
|
+
<function name="gst_debug_category_get_description ()" link="gstreamer-GstInfo.html#gst-debug-category-get-description"/>
|
1744
|
+
<function name="gst_debug_get_all_categories ()" link="gstreamer-GstInfo.html#gst-debug-get-all-categories"/>
|
1745
|
+
<function name="gst_debug_construct_term_color ()" link="gstreamer-GstInfo.html#gst-debug-construct-term-color"/>
|
1746
|
+
<function name="gst_debug_construct_win_color ()" link="gstreamer-GstInfo.html#gst-debug-construct-win-color"/>
|
1747
|
+
<function name="GST_CAT_LEVEL_LOG()" link="gstreamer-GstInfo.html#GST-CAT-LEVEL-LOG:CAPS"/>
|
1748
|
+
<function name="GST_CAT_ERROR_OBJECT()" link="gstreamer-GstInfo.html#GST-CAT-ERROR-OBJECT:CAPS"/>
|
1749
|
+
<function name="GST_CAT_WARNING_OBJECT()" link="gstreamer-GstInfo.html#GST-CAT-WARNING-OBJECT:CAPS"/>
|
1750
|
+
<function name="GST_CAT_INFO_OBJECT()" link="gstreamer-GstInfo.html#GST-CAT-INFO-OBJECT:CAPS"/>
|
1751
|
+
<function name="GST_CAT_DEBUG_OBJECT()" link="gstreamer-GstInfo.html#GST-CAT-DEBUG-OBJECT:CAPS"/>
|
1752
|
+
<function name="GST_CAT_LOG_OBJECT()" link="gstreamer-GstInfo.html#GST-CAT-LOG-OBJECT:CAPS"/>
|
1753
|
+
<function name="GST_CAT_FIXME_OBJECT()" link="gstreamer-GstInfo.html#GST-CAT-FIXME-OBJECT:CAPS"/>
|
1754
|
+
<function name="GST_CAT_TRACE_OBJECT()" link="gstreamer-GstInfo.html#GST-CAT-TRACE-OBJECT:CAPS"/>
|
1755
|
+
<function name="GST_CAT_MEMDUMP_OBJECT()" link="gstreamer-GstInfo.html#GST-CAT-MEMDUMP-OBJECT:CAPS"/>
|
1756
|
+
<function name="GST_CAT_ERROR()" link="gstreamer-GstInfo.html#GST-CAT-ERROR:CAPS"/>
|
1757
|
+
<function name="GST_CAT_WARNING()" link="gstreamer-GstInfo.html#GST-CAT-WARNING:CAPS"/>
|
1758
|
+
<function name="GST_CAT_INFO()" link="gstreamer-GstInfo.html#GST-CAT-INFO:CAPS"/>
|
1759
|
+
<function name="GST_CAT_DEBUG()" link="gstreamer-GstInfo.html#GST-CAT-DEBUG:CAPS"/>
|
1760
|
+
<function name="GST_CAT_LOG()" link="gstreamer-GstInfo.html#GST-CAT-LOG:CAPS"/>
|
1761
|
+
<function name="GST_CAT_FIXME()" link="gstreamer-GstInfo.html#GST-CAT-FIXME:CAPS"/>
|
1762
|
+
<function name="GST_CAT_TRACE()" link="gstreamer-GstInfo.html#GST-CAT-TRACE:CAPS"/>
|
1763
|
+
<function name="GST_CAT_MEMDUMP()" link="gstreamer-GstInfo.html#GST-CAT-MEMDUMP:CAPS"/>
|
1764
|
+
<function name="GST_ERROR_OBJECT()" link="gstreamer-GstInfo.html#GST-ERROR-OBJECT:CAPS"/>
|
1765
|
+
<function name="GST_WARNING_OBJECT()" link="gstreamer-GstInfo.html#GST-WARNING-OBJECT:CAPS"/>
|
1766
|
+
<function name="GST_INFO_OBJECT()" link="gstreamer-GstInfo.html#GST-INFO-OBJECT:CAPS"/>
|
1767
|
+
<function name="GST_DEBUG_OBJECT()" link="gstreamer-GstInfo.html#GST-DEBUG-OBJECT:CAPS"/>
|
1768
|
+
<function name="GST_LOG_OBJECT()" link="gstreamer-GstInfo.html#GST-LOG-OBJECT:CAPS"/>
|
1769
|
+
<function name="GST_FIXME_OBJECT()" link="gstreamer-GstInfo.html#GST-FIXME-OBJECT:CAPS"/>
|
1770
|
+
<function name="GST_TRACE_OBJECT()" link="gstreamer-GstInfo.html#GST-TRACE-OBJECT:CAPS"/>
|
1771
|
+
<function name="GST_MEMDUMP_OBJECT()" link="gstreamer-GstInfo.html#GST-MEMDUMP-OBJECT:CAPS"/>
|
1772
|
+
<function name="GST_ERROR()" link="gstreamer-GstInfo.html#GST-ERROR:CAPS"/>
|
1773
|
+
<function name="GST_WARNING()" link="gstreamer-GstInfo.html#GST-WARNING:CAPS"/>
|
1774
|
+
<function name="GST_INFO()" link="gstreamer-GstInfo.html#GST-INFO:CAPS"/>
|
1775
|
+
<function name="GST_DEBUG()" link="gstreamer-GstInfo.html#GST-DEBUG:CAPS"/>
|
1776
|
+
<function name="GST_LOG()" link="gstreamer-GstInfo.html#GST-LOG:CAPS"/>
|
1777
|
+
<function name="GST_FIXME()" link="gstreamer-GstInfo.html#GST-FIXME:CAPS"/>
|
1778
|
+
<function name="GST_TRACE()" link="gstreamer-GstInfo.html#GST-TRACE:CAPS"/>
|
1779
|
+
<function name="GST_MEMDUMP()" link="gstreamer-GstInfo.html#GST-MEMDUMP:CAPS"/>
|
1780
|
+
<function name="GST_DEBUG_REGISTER_FUNCPTR()" link="gstreamer-GstInfo.html#GST-DEBUG-REGISTER-FUNCPTR:CAPS"/>
|
1781
|
+
<function name="GST_DEBUG_FUNCPTR()" link="gstreamer-GstInfo.html#GST-DEBUG-FUNCPTR:CAPS"/>
|
1782
|
+
<function name="GST_DEBUG_FUNCPTR_NAME()" link="gstreamer-GstInfo.html#GST-DEBUG-FUNCPTR-NAME:CAPS"/>
|
1783
|
+
<function name="GST_DEBUG_BIN_TO_DOT_FILE()" link="gstreamer-GstInfo.html#GST-DEBUG-BIN-TO-DOT-FILE:CAPS"/>
|
1784
|
+
<function name="GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS()" link="gstreamer-GstInfo.html#GST-DEBUG-BIN-TO-DOT-FILE-WITH-TS:CAPS"/>
|
1785
|
+
<function name="gst_debug_print_stack_trace ()" link="gstreamer-GstInfo.html#gst-debug-print-stack-trace"/>
|
1786
|
+
<function name="GST_TIME_FORMAT" link="gstreamer-GstInfo.html#GST-TIME-FORMAT:CAPS"/>
|
1787
|
+
<function name="GST_TIME_ARGS()" link="gstreamer-GstInfo.html#GST-TIME-ARGS:CAPS"/>
|
1788
|
+
<function name="struct GstTrace" link="gstreamer-GstTrace.html#GstTrace"/>
|
1789
|
+
<function name="gst_trace_new ()" link="gstreamer-GstTrace.html#gst-trace-new"/>
|
1790
|
+
<function name="gst_trace_destroy ()" link="gstreamer-GstTrace.html#gst-trace-destroy"/>
|
1791
|
+
<function name="gst_trace_flush ()" link="gstreamer-GstTrace.html#gst-trace-flush"/>
|
1792
|
+
<function name="gst_trace_text_flush ()" link="gstreamer-GstTrace.html#gst-trace-text-flush"/>
|
1793
|
+
<function name="gst_trace_add_entry()" link="gstreamer-GstTrace.html#gst-trace-add-entry"/>
|
1794
|
+
<function name="gst_trace_get_size()" link="gstreamer-GstTrace.html#gst-trace-get-size"/>
|
1795
|
+
<function name="gst_trace_get_offset()" link="gstreamer-GstTrace.html#gst-trace-get-offset"/>
|
1796
|
+
<function name="gst_trace_get_remaining()" link="gstreamer-GstTrace.html#gst-trace-get-remaining"/>
|
1797
|
+
<function name="gst_trace_set_default ()" link="gstreamer-GstTrace.html#gst-trace-set-default"/>
|
1798
|
+
<function name="gst_trace_read_tsc ()" link="gstreamer-GstTrace.html#gst-trace-read-tsc"/>
|
1799
|
+
<function name="enum GstAllocTraceFlags" link="gstreamer-GstTrace.html#GstAllocTraceFlags"/>
|
1800
|
+
<function name="struct GstAllocTrace" link="gstreamer-GstTrace.html#GstAllocTrace"/>
|
1801
|
+
<function name="gst_alloc_trace_available ()" link="gstreamer-GstTrace.html#gst-alloc-trace-available"/>
|
1802
|
+
<function name="gst_alloc_trace_list ()" link="gstreamer-GstTrace.html#gst-alloc-trace-list"/>
|
1803
|
+
<function name="gst_alloc_trace_live_all ()" link="gstreamer-GstTrace.html#gst-alloc-trace-live-all"/>
|
1804
|
+
<function name="gst_alloc_trace_print_all ()" link="gstreamer-GstTrace.html#gst-alloc-trace-print-all"/>
|
1805
|
+
<function name="gst_alloc_trace_set_flags_all ()" link="gstreamer-GstTrace.html#gst-alloc-trace-set-flags-all"/>
|
1806
|
+
<function name="gst_alloc_trace_get ()" link="gstreamer-GstTrace.html#gst-alloc-trace-get"/>
|
1807
|
+
<function name="gst_alloc_trace_print ()" link="gstreamer-GstTrace.html#gst-alloc-trace-print"/>
|
1808
|
+
<function name="gst_alloc_trace_print_live ()" link="gstreamer-GstTrace.html#gst-alloc-trace-print-live"/>
|
1809
|
+
<function name="gst_alloc_trace_set_flags ()" link="gstreamer-GstTrace.html#gst-alloc-trace-set-flags"/>
|
1810
|
+
<function name="gst_alloc_trace_register()" link="gstreamer-GstTrace.html#gst-alloc-trace-register"/>
|
1811
|
+
<function name="gst_alloc_trace_new()" link="gstreamer-GstTrace.html#gst-alloc-trace-new"/>
|
1812
|
+
<function name="gst_alloc_trace_free()" link="gstreamer-GstTrace.html#gst-alloc-trace-free"/>
|
1813
|
+
</functions>
|
1814
|
+
</book>
|