gstreamer 1.1.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- 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,288 @@
|
|
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>GStreamer Base Plugins 0.10 Plugins Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
+
<link rel="home" href="index.html" title="GStreamer Base Plugins 0.10 Plugins Reference Manual">
|
8
|
+
<link rel="next" href="ch01.html" title="gst-plugins-base Elements">
|
9
|
+
<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
|
10
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
11
|
+
</head>
|
12
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
13
|
+
<div class="book">
|
14
|
+
<div class="titlepage">
|
15
|
+
<div>
|
16
|
+
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GStreamer Base Plugins 0.10 Plugins Reference Manual</p></th></tr></table></div>
|
17
|
+
<div><p class="releaseinfo">
|
18
|
+
for GStreamer Base Plugins 0.10 (0.10.35)
|
19
|
+
The latest version of this documentation can be found on-line at
|
20
|
+
<a class="ulink" href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base/html/" target="_top">http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base/html/</a>.
|
21
|
+
</p></div>
|
22
|
+
</div>
|
23
|
+
<hr>
|
24
|
+
</div>
|
25
|
+
<div class="toc"><dl>
|
26
|
+
<dt><span class="chapter"><a href="ch01.html">gst-plugins-base Elements</a></span></dt>
|
27
|
+
<dd><dl>
|
28
|
+
<dt>
|
29
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-adder.html">adder</a></span><span class="refpurpose"> — Add N audio channels together</span>
|
30
|
+
</dt>
|
31
|
+
<dt>
|
32
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-appsrc.html">appsrc</a></span><span class="refpurpose"> — Allow the application to feed buffers to a pipeline</span>
|
33
|
+
</dt>
|
34
|
+
<dt>
|
35
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-appsink.html">appsink</a></span><span class="refpurpose"> — Allow the application to get access to raw buffer</span>
|
36
|
+
</dt>
|
37
|
+
<dt>
|
38
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-alsamixer.html">alsamixer</a></span><span class="refpurpose"> — Control sound input and output levels with ALSA</span>
|
39
|
+
</dt>
|
40
|
+
<dt>
|
41
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-alsasink.html">alsasink</a></span><span class="refpurpose"> — Output to a sound card via ALSA</span>
|
42
|
+
</dt>
|
43
|
+
<dt>
|
44
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-alsasrc.html">alsasrc</a></span><span class="refpurpose"> — Read from a sound card via ALSA</span>
|
45
|
+
</dt>
|
46
|
+
<dt>
|
47
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-audioconvert.html">audioconvert</a></span><span class="refpurpose"> — Convert audio to different formats</span>
|
48
|
+
</dt>
|
49
|
+
<dt>
|
50
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-audiorate.html">audiorate</a></span><span class="refpurpose"> — Drops/duplicates/adjusts timestamps on audio samples to make a perfect stream</span>
|
51
|
+
</dt>
|
52
|
+
<dt>
|
53
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-audioresample.html">audioresample</a></span><span class="refpurpose"> — Resamples audio</span>
|
54
|
+
</dt>
|
55
|
+
<dt>
|
56
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-audiotestsrc.html">audiotestsrc</a></span><span class="refpurpose"> — Creates audio test signals of given frequency and volume</span>
|
57
|
+
</dt>
|
58
|
+
<dt>
|
59
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-cdparanoiasrc.html">cdparanoiasrc</a></span><span class="refpurpose"> — Read audio from CD in paranoid mode</span>
|
60
|
+
</dt>
|
61
|
+
<dt>
|
62
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-clockoverlay.html">clockoverlay</a></span><span class="refpurpose"> — Overlays the current clock time on a video stream</span>
|
63
|
+
</dt>
|
64
|
+
<dt>
|
65
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-decodebin.html">decodebin</a></span><span class="refpurpose"> — Autoplug and decode to raw media</span>
|
66
|
+
</dt>
|
67
|
+
<dt>
|
68
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-decodebin2.html">decodebin2</a></span><span class="refpurpose"> — Autoplug and decode to raw media</span>
|
69
|
+
</dt>
|
70
|
+
<dt>
|
71
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-encodebin.html">encodebin</a></span><span class="refpurpose"> — Convenience encoding/muxing element</span>
|
72
|
+
</dt>
|
73
|
+
<dt>
|
74
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-ffmpegcolorspace.html">ffmpegcolorspace</a></span><span class="refpurpose"> — Converts video from one colorspace to another</span>
|
75
|
+
</dt>
|
76
|
+
<dt>
|
77
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-gdpdepay.html">gdpdepay</a></span><span class="refpurpose"> — Depayloads GStreamer Data Protocol buffers</span>
|
78
|
+
</dt>
|
79
|
+
<dt>
|
80
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-gdppay.html">gdppay</a></span><span class="refpurpose"> — Payloads GStreamer Data Protocol buffers</span>
|
81
|
+
</dt>
|
82
|
+
<dt>
|
83
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-giosink.html">giosink</a></span><span class="refpurpose"> — Write to any GIO-supported location</span>
|
84
|
+
</dt>
|
85
|
+
<dt>
|
86
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-giosrc.html">giosrc</a></span><span class="refpurpose"> — Read from any GIO-supported location</span>
|
87
|
+
</dt>
|
88
|
+
<dt>
|
89
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-giostreamsink.html">giostreamsink</a></span><span class="refpurpose"> — Write to any GIO stream</span>
|
90
|
+
</dt>
|
91
|
+
<dt>
|
92
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-giostreamsrc.html">giostreamsrc</a></span><span class="refpurpose"> — Read from any GIO stream</span>
|
93
|
+
</dt>
|
94
|
+
<dt>
|
95
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-gnomevfssink.html">gnomevfssink</a></span><span class="refpurpose"> — Write a stream to a GnomeVFS URI</span>
|
96
|
+
</dt>
|
97
|
+
<dt>
|
98
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-gnomevfssrc.html">gnomevfssrc</a></span><span class="refpurpose"> — Read from any GnomeVFS-supported file</span>
|
99
|
+
</dt>
|
100
|
+
<dt>
|
101
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-multifdsink.html">multifdsink</a></span><span class="refpurpose"> — Send data to multiple filedescriptors</span>
|
102
|
+
</dt>
|
103
|
+
<dt>
|
104
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-oggdemux.html">oggdemux</a></span><span class="refpurpose"> — demux ogg streams (info about ogg: http://xiph.org)</span>
|
105
|
+
</dt>
|
106
|
+
<dt>
|
107
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-oggmux.html">oggmux</a></span><span class="refpurpose"> — mux ogg streams (info about ogg: http://xiph.org)</span>
|
108
|
+
</dt>
|
109
|
+
<dt>
|
110
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-playbin.html">playbin</a></span><span class="refpurpose"> — Autoplug and play media from an uri</span>
|
111
|
+
</dt>
|
112
|
+
<dt>
|
113
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-playbin2.html">playbin2</a></span><span class="refpurpose"> — Autoplug and play media from an uri</span>
|
114
|
+
</dt>
|
115
|
+
<dt>
|
116
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-subtitleoverlay.html">subtitleoverlay</a></span><span class="refpurpose"> — Overlays a video stream with subtitles</span>
|
117
|
+
</dt>
|
118
|
+
<dt>
|
119
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-tcpclientsrc.html">tcpclientsrc</a></span><span class="refpurpose"> — Receive data as a client over the network via TCP</span>
|
120
|
+
</dt>
|
121
|
+
<dt>
|
122
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-tcpclientsink.html">tcpclientsink</a></span><span class="refpurpose"> — Send data as a client over the network via TCP</span>
|
123
|
+
</dt>
|
124
|
+
<dt>
|
125
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-tcpserversrc.html">tcpserversrc</a></span><span class="refpurpose"> — Receive data as a server over the network via TCP</span>
|
126
|
+
</dt>
|
127
|
+
<dt>
|
128
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-tcpserversink.html">tcpserversink</a></span><span class="refpurpose"> — Send data as a server over the network via TCP</span>
|
129
|
+
</dt>
|
130
|
+
<dt>
|
131
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-textoverlay.html">textoverlay</a></span><span class="refpurpose"> — Adds text strings on top of a video buffer</span>
|
132
|
+
</dt>
|
133
|
+
<dt>
|
134
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-textrender.html">textrender</a></span><span class="refpurpose"> — Renders a text string to an image bitmap</span>
|
135
|
+
</dt>
|
136
|
+
<dt>
|
137
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-theoradec.html">theoradec</a></span><span class="refpurpose"> — decode raw theora streams to raw YUV video</span>
|
138
|
+
</dt>
|
139
|
+
<dt>
|
140
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-theoraenc.html">theoraenc</a></span><span class="refpurpose"> — encode raw YUV video to a theora stream</span>
|
141
|
+
</dt>
|
142
|
+
<dt>
|
143
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-theoraparse.html">theoraparse</a></span><span class="refpurpose"> — parse raw theora streams</span>
|
144
|
+
</dt>
|
145
|
+
<dt>
|
146
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-timeoverlay.html">timeoverlay</a></span><span class="refpurpose"> — Overlays buffer time stamps on a video stream</span>
|
147
|
+
</dt>
|
148
|
+
<dt>
|
149
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-uridecodebin.html">uridecodebin</a></span><span class="refpurpose"> — Autoplug and decode an URI to raw media</span>
|
150
|
+
</dt>
|
151
|
+
<dt>
|
152
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-videorate.html">videorate</a></span><span class="refpurpose"> — Drops/duplicates/adjusts timestamps on video frames to make a perfect stream</span>
|
153
|
+
</dt>
|
154
|
+
<dt>
|
155
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-videoscale.html">videoscale</a></span><span class="refpurpose"> — Resizes video</span>
|
156
|
+
</dt>
|
157
|
+
<dt>
|
158
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-videotestsrc.html">videotestsrc</a></span><span class="refpurpose"> — Creates a test video stream</span>
|
159
|
+
</dt>
|
160
|
+
<dt>
|
161
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-volume.html">volume</a></span><span class="refpurpose"> — Set volume on audio/raw streams</span>
|
162
|
+
</dt>
|
163
|
+
<dt>
|
164
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-vorbisdec.html">vorbisdec</a></span><span class="refpurpose"> — decode raw vorbis streams to float audio</span>
|
165
|
+
</dt>
|
166
|
+
<dt>
|
167
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-vorbisenc.html">vorbisenc</a></span><span class="refpurpose"> — Encodes audio in Vorbis format</span>
|
168
|
+
</dt>
|
169
|
+
<dt>
|
170
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-vorbisparse.html">vorbisparse</a></span><span class="refpurpose"> — parse raw vorbis streams</span>
|
171
|
+
</dt>
|
172
|
+
<dt>
|
173
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-vorbistag.html">vorbistag</a></span><span class="refpurpose"> — Retags vorbis streams</span>
|
174
|
+
</dt>
|
175
|
+
<dt>
|
176
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-ximagesink.html">ximagesink</a></span><span class="refpurpose"> — A standard X based videosink</span>
|
177
|
+
</dt>
|
178
|
+
<dt>
|
179
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-xvimagesink.html">xvimagesink</a></span><span class="refpurpose"> — A Xv based videosink</span>
|
180
|
+
</dt>
|
181
|
+
</dl></dd>
|
182
|
+
<dt><span class="chapter"><a href="ch02.html">gst-plugins-base Plugins</a></span></dt>
|
183
|
+
<dd><dl>
|
184
|
+
<dt>
|
185
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-adder.html">adder</a></span><span class="refpurpose"> — <a name="plugin-adder"></a>Adds multiple streams</span>
|
186
|
+
</dt>
|
187
|
+
<dt>
|
188
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-alsa.html">alsa</a></span><span class="refpurpose"> — <a name="plugin-alsa"></a>ALSA plugin library</span>
|
189
|
+
</dt>
|
190
|
+
<dt>
|
191
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-app.html">app</a></span><span class="refpurpose"> — <a name="plugin-app"></a>Elements used to communicate with applications</span>
|
192
|
+
</dt>
|
193
|
+
<dt>
|
194
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audioconvert.html">audioconvert</a></span><span class="refpurpose"> — <a name="plugin-audioconvert"></a>Convert audio to different formats</span>
|
195
|
+
</dt>
|
196
|
+
<dt>
|
197
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audiorate.html">audiorate</a></span><span class="refpurpose"> — <a name="plugin-audiorate"></a>Adjusts audio frames</span>
|
198
|
+
</dt>
|
199
|
+
<dt>
|
200
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audioresample.html">audioresample</a></span><span class="refpurpose"> — <a name="plugin-audioresample"></a>Resamples audio</span>
|
201
|
+
</dt>
|
202
|
+
<dt>
|
203
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audiotestsrc.html">audiotestsrc</a></span><span class="refpurpose"> — <a name="plugin-audiotestsrc"></a>Creates audio test signals of given frequency and volume</span>
|
204
|
+
</dt>
|
205
|
+
<dt>
|
206
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-cdparanoia.html">cdparanoia</a></span><span class="refpurpose"> — <a name="plugin-cdparanoia"></a>Read audio from CD in paranoid mode</span>
|
207
|
+
</dt>
|
208
|
+
<dt>
|
209
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-decodebin.html">decodebin</a></span><span class="refpurpose"> — <a name="plugin-decodebin"></a>decoder bin</span>
|
210
|
+
</dt>
|
211
|
+
<dt>
|
212
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-encoding.html">encoding</a></span><span class="refpurpose"> — <a name="plugin-encoding"></a>various encoding-related elements</span>
|
213
|
+
</dt>
|
214
|
+
<dt>
|
215
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-ffmpegcolorspace.html">ffmpegcolorspace</a></span><span class="refpurpose"> — <a name="plugin-ffmpegcolorspace"></a>colorspace conversion copied from FFMpeg 0.4.9-pre1</span>
|
216
|
+
</dt>
|
217
|
+
<dt>
|
218
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-gdp.html">gdp</a></span><span class="refpurpose"> — <a name="plugin-gdp"></a>Payload/depayload GDP packets</span>
|
219
|
+
</dt>
|
220
|
+
<dt>
|
221
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-gio.html">gio</a></span><span class="refpurpose"> — <a name="plugin-gio"></a>GIO elements</span>
|
222
|
+
</dt>
|
223
|
+
<dt>
|
224
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-gnomevfs.html">gnomevfs</a></span><span class="refpurpose"> — <a name="plugin-gnomevfs"></a>elements to read from and write to Gnome-VFS uri's</span>
|
225
|
+
</dt>
|
226
|
+
<dt>
|
227
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-libvisual.html">libvisual</a></span><span class="refpurpose"> — <a name="plugin-libvisual"></a>libvisual visualization plugins</span>
|
228
|
+
</dt>
|
229
|
+
<dt>
|
230
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-ogg.html">ogg</a></span><span class="refpurpose"> — <a name="plugin-ogg"></a>ogg stream manipulation (info about ogg: http://xiph.org)</span>
|
231
|
+
</dt>
|
232
|
+
<dt>
|
233
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-pango.html">pango</a></span><span class="refpurpose"> — <a name="plugin-pango"></a>Pango-based text rendering and overlay</span>
|
234
|
+
</dt>
|
235
|
+
<dt>
|
236
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-playback.html">playback</a></span><span class="refpurpose"> — <a name="plugin-playback"></a>various playback elements</span>
|
237
|
+
</dt>
|
238
|
+
<dt>
|
239
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-subparse.html">subparse</a></span><span class="refpurpose"> — <a name="plugin-subparse"></a>Subtitle parsing</span>
|
240
|
+
</dt>
|
241
|
+
<dt>
|
242
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-tcp.html">tcp</a></span><span class="refpurpose"> — <a name="plugin-tcp"></a>transfer data over the network via TCP</span>
|
243
|
+
</dt>
|
244
|
+
<dt>
|
245
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-theora.html">theora</a></span><span class="refpurpose"> — <a name="plugin-theora"></a>Theora plugin library</span>
|
246
|
+
</dt>
|
247
|
+
<dt>
|
248
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-typefindfunctions.html">typefindfunctions</a></span><span class="refpurpose"> — <a name="plugin-typefindfunctions"></a>default typefind functions</span>
|
249
|
+
</dt>
|
250
|
+
<dt>
|
251
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-uridecodebin.html">uridecodebin</a></span><span class="refpurpose"> — <a name="plugin-uridecodebin"></a>URI Decoder bin</span>
|
252
|
+
</dt>
|
253
|
+
<dt>
|
254
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-video4linux.html">video4linux</a></span><span class="refpurpose"> — <a name="plugin-video4linux"></a>elements for Video 4 Linux</span>
|
255
|
+
</dt>
|
256
|
+
<dt>
|
257
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-videorate.html">videorate</a></span><span class="refpurpose"> — <a name="plugin-videorate"></a>Adjusts video frames</span>
|
258
|
+
</dt>
|
259
|
+
<dt>
|
260
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-videoscale.html">videoscale</a></span><span class="refpurpose"> — <a name="plugin-videoscale"></a>Resizes video</span>
|
261
|
+
</dt>
|
262
|
+
<dt>
|
263
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-videotestsrc.html">videotestsrc</a></span><span class="refpurpose"> — <a name="plugin-videotestsrc"></a>Creates a test video stream</span>
|
264
|
+
</dt>
|
265
|
+
<dt>
|
266
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-volume.html">volume</a></span><span class="refpurpose"> — <a name="plugin-volume"></a>plugin for controlling audio volume</span>
|
267
|
+
</dt>
|
268
|
+
<dt>
|
269
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-vorbis.html">vorbis</a></span><span class="refpurpose"> — <a name="plugin-vorbis"></a>Vorbis plugin library</span>
|
270
|
+
</dt>
|
271
|
+
<dt>
|
272
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-ximagesink.html">ximagesink</a></span><span class="refpurpose"> — <a name="plugin-ximagesink"></a>X11 video output element based on standard Xlib calls</span>
|
273
|
+
</dt>
|
274
|
+
<dt>
|
275
|
+
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-xvimagesink.html">xvimagesink</a></span><span class="refpurpose"> — <a name="plugin-xvimagesink"></a>XFree86 video output plugin using Xv extension</span>
|
276
|
+
</dt>
|
277
|
+
</dl></dd>
|
278
|
+
<dt><span class="chapter"><a href="ch03.html">gst-plugins-base Classes</a></span></dt>
|
279
|
+
<dd><dl><dt>
|
280
|
+
<span class="refentrytitle"><a href="GstPlayBaseBin.html">GstPlayBaseBin</a></span><span class="refpurpose"></span>
|
281
|
+
</dt></dl></dd>
|
282
|
+
</dl></div>
|
283
|
+
</div>
|
284
|
+
<div class="footer">
|
285
|
+
<hr>
|
286
|
+
Generated by GTK-Doc V1.17</div>
|
287
|
+
</body>
|
288
|
+
</html>
|
@@ -0,0 +1,1059 @@
|
|
1
|
+
<ONLINE href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base/html/">
|
2
|
+
<ANCHOR id="gst-plugins-base-plugins-adder" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html">
|
3
|
+
<ANCHOR id="gst-plugins-base-plugins-adder.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html#gst-plugins-base-plugins-adder.synopsis">
|
4
|
+
<ANCHOR id="GstAdder" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html#GstAdder">
|
5
|
+
<ANCHOR id="gst-plugins-base-plugins-adder.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html#gst-plugins-base-plugins-adder.object-hierarchy">
|
6
|
+
<ANCHOR id="gst-plugins-base-plugins-adder.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html#gst-plugins-base-plugins-adder.properties">
|
7
|
+
<ANCHOR id="gst-plugins-base-plugins-adder.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html#gst-plugins-base-plugins-adder.description">
|
8
|
+
<ANCHOR id="gst-plugins-base-plugins-adder.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html#gst-plugins-base-plugins-adder.details">
|
9
|
+
<ANCHOR id="GstAdder-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html#GstAdder-struct">
|
10
|
+
<ANCHOR id="gst-plugins-base-plugins-adder.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html#gst-plugins-base-plugins-adder.property-details">
|
11
|
+
<ANCHOR id="GstAdder--caps" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html#GstAdder--caps">
|
12
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html">
|
13
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#gst-plugins-base-plugins-appsrc.synopsis">
|
14
|
+
<ANCHOR id="GstAppSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc">
|
15
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#gst-plugins-base-plugins-appsrc.object-hierarchy">
|
16
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#gst-plugins-base-plugins-appsrc.implemented-interfaces">
|
17
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#gst-plugins-base-plugins-appsrc.properties">
|
18
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#gst-plugins-base-plugins-appsrc.signals">
|
19
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#gst-plugins-base-plugins-appsrc.description">
|
20
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#gst-plugins-base-plugins-appsrc.details">
|
21
|
+
<ANCHOR id="GstAppSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc-struct">
|
22
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#gst-plugins-base-plugins-appsrc.property-details">
|
23
|
+
<ANCHOR id="GstAppSrc--block" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--block">
|
24
|
+
<ANCHOR id="GstAppSrc--caps" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--caps">
|
25
|
+
<ANCHOR id="GstAppSrc--format" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--format">
|
26
|
+
<ANCHOR id="GstAppSrc--is-live" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--is-live">
|
27
|
+
<ANCHOR id="GstAppSrc--max-bytes" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--max-bytes">
|
28
|
+
<ANCHOR id="GstAppSrc--max-latency" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--max-latency">
|
29
|
+
<ANCHOR id="GstAppSrc--min-latency" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--min-latency">
|
30
|
+
<ANCHOR id="GstAppSrc--size" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--size">
|
31
|
+
<ANCHOR id="GstAppSrc--stream-type" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--stream-type">
|
32
|
+
<ANCHOR id="GstAppSrc--emit-signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--emit-signals">
|
33
|
+
<ANCHOR id="GstAppSrc--min-percent" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc--min-percent">
|
34
|
+
<ANCHOR id="gst-plugins-base-plugins-appsrc.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#gst-plugins-base-plugins-appsrc.signal-details">
|
35
|
+
<ANCHOR id="GstAppSrc-end-of-stream" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc-end-of-stream">
|
36
|
+
<ANCHOR id="GstAppSrc-enough-data" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc-enough-data">
|
37
|
+
<ANCHOR id="GstAppSrc-need-data" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc-need-data">
|
38
|
+
<ANCHOR id="GstAppSrc-push-buffer" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc-push-buffer">
|
39
|
+
<ANCHOR id="GstAppSrc-seek-data" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html#GstAppSrc-seek-data">
|
40
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html">
|
41
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#gst-plugins-base-plugins-appsink.synopsis">
|
42
|
+
<ANCHOR id="GstAppSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink">
|
43
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#gst-plugins-base-plugins-appsink.object-hierarchy">
|
44
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#gst-plugins-base-plugins-appsink.implemented-interfaces">
|
45
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#gst-plugins-base-plugins-appsink.properties">
|
46
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#gst-plugins-base-plugins-appsink.signals">
|
47
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#gst-plugins-base-plugins-appsink.description">
|
48
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#gst-plugins-base-plugins-appsink.details">
|
49
|
+
<ANCHOR id="GstAppSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink-struct">
|
50
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#gst-plugins-base-plugins-appsink.property-details">
|
51
|
+
<ANCHOR id="GstAppSink--caps" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink--caps">
|
52
|
+
<ANCHOR id="GstAppSink--drop" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink--drop">
|
53
|
+
<ANCHOR id="GstAppSink--emit-signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink--emit-signals">
|
54
|
+
<ANCHOR id="GstAppSink--eos" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink--eos">
|
55
|
+
<ANCHOR id="GstAppSink--max-buffers" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink--max-buffers">
|
56
|
+
<ANCHOR id="gst-plugins-base-plugins-appsink.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#gst-plugins-base-plugins-appsink.signal-details">
|
57
|
+
<ANCHOR id="GstAppSink-eos" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink-eos">
|
58
|
+
<ANCHOR id="GstAppSink-new-buffer" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink-new-buffer">
|
59
|
+
<ANCHOR id="GstAppSink-new-preroll" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink-new-preroll">
|
60
|
+
<ANCHOR id="GstAppSink-pull-buffer" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink-pull-buffer">
|
61
|
+
<ANCHOR id="GstAppSink-pull-preroll" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink-pull-preroll">
|
62
|
+
<ANCHOR id="GstAppSink-new-buffer-list" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink-new-buffer-list">
|
63
|
+
<ANCHOR id="GstAppSink-pull-buffer-list" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html#GstAppSink-pull-buffer-list">
|
64
|
+
<ANCHOR id="gst-plugins-base-plugins-alsamixer" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html">
|
65
|
+
<ANCHOR id="gst-plugins-base-plugins-alsamixer.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#gst-plugins-base-plugins-alsamixer.synopsis">
|
66
|
+
<ANCHOR id="GstAlsaMixerElement" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#GstAlsaMixerElement">
|
67
|
+
<ANCHOR id="gst-plugins-base-plugins-alsamixer.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#gst-plugins-base-plugins-alsamixer.object-hierarchy">
|
68
|
+
<ANCHOR id="gst-plugins-base-plugins-alsamixer.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#gst-plugins-base-plugins-alsamixer.implemented-interfaces">
|
69
|
+
<ANCHOR id="gst-plugins-base-plugins-alsamixer.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#gst-plugins-base-plugins-alsamixer.properties">
|
70
|
+
<ANCHOR id="gst-plugins-base-plugins-alsamixer.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#gst-plugins-base-plugins-alsamixer.description">
|
71
|
+
<ANCHOR id="gst-plugins-base-plugins-alsamixer.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#gst-plugins-base-plugins-alsamixer.details">
|
72
|
+
<ANCHOR id="GstAlsaMixerElement-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#GstAlsaMixerElement-struct">
|
73
|
+
<ANCHOR id="gst-plugins-base-plugins-alsamixer.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#gst-plugins-base-plugins-alsamixer.property-details">
|
74
|
+
<ANCHOR id="GstAlsaMixerElement--device" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#GstAlsaMixerElement--device">
|
75
|
+
<ANCHOR id="GstAlsaMixerElement--device-name" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#GstAlsaMixerElement--device-name">
|
76
|
+
<ANCHOR id="gst-plugins-base-plugins-alsamixer.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html#gst-plugins-base-plugins-alsamixer.see-also">
|
77
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html">
|
78
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#gst-plugins-base-plugins-alsasink.synopsis">
|
79
|
+
<ANCHOR id="GstAlsaSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#GstAlsaSink">
|
80
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#gst-plugins-base-plugins-alsasink.object-hierarchy">
|
81
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasink.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#gst-plugins-base-plugins-alsasink.implemented-interfaces">
|
82
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#gst-plugins-base-plugins-alsasink.properties">
|
83
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#gst-plugins-base-plugins-alsasink.description">
|
84
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#gst-plugins-base-plugins-alsasink.details">
|
85
|
+
<ANCHOR id="GstAlsaSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#GstAlsaSink-struct">
|
86
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#gst-plugins-base-plugins-alsasink.property-details">
|
87
|
+
<ANCHOR id="GstAlsaSink--device" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#GstAlsaSink--device">
|
88
|
+
<ANCHOR id="GstAlsaSink--device-name" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#GstAlsaSink--device-name">
|
89
|
+
<ANCHOR id="GstAlsaSink--card-name" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#GstAlsaSink--card-name">
|
90
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasink.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html#gst-plugins-base-plugins-alsasink.see-also">
|
91
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html">
|
92
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#gst-plugins-base-plugins-alsasrc.synopsis">
|
93
|
+
<ANCHOR id="GstAlsaSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#GstAlsaSrc">
|
94
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#gst-plugins-base-plugins-alsasrc.object-hierarchy">
|
95
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasrc.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#gst-plugins-base-plugins-alsasrc.implemented-interfaces">
|
96
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#gst-plugins-base-plugins-alsasrc.properties">
|
97
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#gst-plugins-base-plugins-alsasrc.description">
|
98
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#gst-plugins-base-plugins-alsasrc.details">
|
99
|
+
<ANCHOR id="GstAlsaSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#GstAlsaSrc-struct">
|
100
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#gst-plugins-base-plugins-alsasrc.property-details">
|
101
|
+
<ANCHOR id="GstAlsaSrc--device" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#GstAlsaSrc--device">
|
102
|
+
<ANCHOR id="GstAlsaSrc--device-name" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#GstAlsaSrc--device-name">
|
103
|
+
<ANCHOR id="GstAlsaSrc--card-name" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#GstAlsaSrc--card-name">
|
104
|
+
<ANCHOR id="gst-plugins-base-plugins-alsasrc.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html#gst-plugins-base-plugins-alsasrc.see-also">
|
105
|
+
<ANCHOR id="gst-plugins-base-plugins-audioconvert" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html">
|
106
|
+
<ANCHOR id="gst-plugins-base-plugins-audioconvert.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#gst-plugins-base-plugins-audioconvert.synopsis">
|
107
|
+
<ANCHOR id="GstAudioConvert" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#GstAudioConvert">
|
108
|
+
<ANCHOR id="gst-plugins-base-plugins-audioconvert.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#gst-plugins-base-plugins-audioconvert.object-hierarchy">
|
109
|
+
<ANCHOR id="gst-plugins-base-plugins-audioconvert.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#gst-plugins-base-plugins-audioconvert.properties">
|
110
|
+
<ANCHOR id="gst-plugins-base-plugins-audioconvert.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#gst-plugins-base-plugins-audioconvert.description">
|
111
|
+
<ANCHOR id="gst-plugins-base-plugins-audioconvert.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#gst-plugins-base-plugins-audioconvert.details">
|
112
|
+
<ANCHOR id="GstAudioConvert-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#GstAudioConvert-struct">
|
113
|
+
<ANCHOR id="GstAudioConvertDithering" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#GstAudioConvertDithering">
|
114
|
+
<ANCHOR id="DITHER-NONE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#DITHER-NONE:CAPS">
|
115
|
+
<ANCHOR id="DITHER-RPDF:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#DITHER-RPDF:CAPS">
|
116
|
+
<ANCHOR id="DITHER-TPDF:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#DITHER-TPDF:CAPS">
|
117
|
+
<ANCHOR id="DITHER-TPDF-HF:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#DITHER-TPDF-HF:CAPS">
|
118
|
+
<ANCHOR id="GstAudioConvertNoiseShaping" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#GstAudioConvertNoiseShaping">
|
119
|
+
<ANCHOR id="NOISE-SHAPING-NONE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#NOISE-SHAPING-NONE:CAPS">
|
120
|
+
<ANCHOR id="NOISE-SHAPING-ERROR-FEEDBACK:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#NOISE-SHAPING-ERROR-FEEDBACK:CAPS">
|
121
|
+
<ANCHOR id="NOISE-SHAPING-SIMPLE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#NOISE-SHAPING-SIMPLE:CAPS">
|
122
|
+
<ANCHOR id="NOISE-SHAPING-MEDIUM:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#NOISE-SHAPING-MEDIUM:CAPS">
|
123
|
+
<ANCHOR id="NOISE-SHAPING-HIGH:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#NOISE-SHAPING-HIGH:CAPS">
|
124
|
+
<ANCHOR id="gst-plugins-base-plugins-audioconvert.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#gst-plugins-base-plugins-audioconvert.property-details">
|
125
|
+
<ANCHOR id="GstAudioConvert--dithering" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#GstAudioConvert--dithering">
|
126
|
+
<ANCHOR id="GstAudioConvert--noise-shaping" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html#GstAudioConvert--noise-shaping">
|
127
|
+
<ANCHOR id="gst-plugins-base-plugins-audiorate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html">
|
128
|
+
<ANCHOR id="gst-plugins-base-plugins-audiorate.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#gst-plugins-base-plugins-audiorate.synopsis">
|
129
|
+
<ANCHOR id="GstAudioRate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#GstAudioRate">
|
130
|
+
<ANCHOR id="gst-plugins-base-plugins-audiorate.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#gst-plugins-base-plugins-audiorate.object-hierarchy">
|
131
|
+
<ANCHOR id="gst-plugins-base-plugins-audiorate.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#gst-plugins-base-plugins-audiorate.properties">
|
132
|
+
<ANCHOR id="gst-plugins-base-plugins-audiorate.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#gst-plugins-base-plugins-audiorate.description">
|
133
|
+
<ANCHOR id="gst-plugins-base-plugins-audiorate.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#gst-plugins-base-plugins-audiorate.details">
|
134
|
+
<ANCHOR id="GstAudioRate-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#GstAudioRate-struct">
|
135
|
+
<ANCHOR id="gst-plugins-base-plugins-audiorate.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#gst-plugins-base-plugins-audiorate.property-details">
|
136
|
+
<ANCHOR id="GstAudioRate--add" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#GstAudioRate--add">
|
137
|
+
<ANCHOR id="GstAudioRate--drop" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#GstAudioRate--drop">
|
138
|
+
<ANCHOR id="GstAudioRate--in" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#GstAudioRate--in">
|
139
|
+
<ANCHOR id="GstAudioRate--out" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#GstAudioRate--out">
|
140
|
+
<ANCHOR id="GstAudioRate--silent" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#GstAudioRate--silent">
|
141
|
+
<ANCHOR id="GstAudioRate--tolerance" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#GstAudioRate--tolerance">
|
142
|
+
<ANCHOR id="GstAudioRate--skip-to-first" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#GstAudioRate--skip-to-first">
|
143
|
+
<ANCHOR id="gst-plugins-base-plugins-audiorate.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html#gst-plugins-base-plugins-audiorate.see-also">
|
144
|
+
<ANCHOR id="gst-plugins-base-plugins-audioresample" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html">
|
145
|
+
<ANCHOR id="gst-plugins-base-plugins-audioresample.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#gst-plugins-base-plugins-audioresample.synopsis">
|
146
|
+
<ANCHOR id="GstAudioResample" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#GstAudioResample">
|
147
|
+
<ANCHOR id="gst-plugins-base-plugins-audioresample.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#gst-plugins-base-plugins-audioresample.object-hierarchy">
|
148
|
+
<ANCHOR id="gst-plugins-base-plugins-audioresample.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#gst-plugins-base-plugins-audioresample.properties">
|
149
|
+
<ANCHOR id="gst-plugins-base-plugins-audioresample.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#gst-plugins-base-plugins-audioresample.description">
|
150
|
+
<ANCHOR id="gst-plugins-base-plugins-audioresample.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#gst-plugins-base-plugins-audioresample.details">
|
151
|
+
<ANCHOR id="GstAudioResample-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#GstAudioResample-struct">
|
152
|
+
<ANCHOR id="gst-plugins-base-plugins-audioresample.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#gst-plugins-base-plugins-audioresample.property-details">
|
153
|
+
<ANCHOR id="GstAudioResample--filter-length" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#GstAudioResample--filter-length">
|
154
|
+
<ANCHOR id="GstAudioResample--quality" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html#GstAudioResample--quality">
|
155
|
+
<ANCHOR id="gst-plugins-base-plugins-audiotestsrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html">
|
156
|
+
<ANCHOR id="gst-plugins-base-plugins-audiotestsrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#gst-plugins-base-plugins-audiotestsrc.synopsis">
|
157
|
+
<ANCHOR id="GstAudioTestSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc">
|
158
|
+
<ANCHOR id="gst-plugins-base-plugins-audiotestsrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#gst-plugins-base-plugins-audiotestsrc.object-hierarchy">
|
159
|
+
<ANCHOR id="gst-plugins-base-plugins-audiotestsrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#gst-plugins-base-plugins-audiotestsrc.properties">
|
160
|
+
<ANCHOR id="gst-plugins-base-plugins-audiotestsrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#gst-plugins-base-plugins-audiotestsrc.description">
|
161
|
+
<ANCHOR id="gst-plugins-base-plugins-audiotestsrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#gst-plugins-base-plugins-audiotestsrc.details">
|
162
|
+
<ANCHOR id="GstAudioTestSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc-struct">
|
163
|
+
<ANCHOR id="GstAudioTestSrcWave" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrcWave">
|
164
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-SINE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-SINE:CAPS">
|
165
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-SQUARE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-SQUARE:CAPS">
|
166
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-SAW:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-SAW:CAPS">
|
167
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-TRIANGLE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-TRIANGLE:CAPS">
|
168
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-SILENCE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-SILENCE:CAPS">
|
169
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-WHITE-NOISE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-WHITE-NOISE:CAPS">
|
170
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-PINK-NOISE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-PINK-NOISE:CAPS">
|
171
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-SINE-TAB:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-SINE-TAB:CAPS">
|
172
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-TICKS:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-TICKS:CAPS">
|
173
|
+
<ANCHOR id="GST-AUDIO-TEST-SRC-WAVE-GAUSSIAN-WHITE-NOISE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GST-AUDIO-TEST-SRC-WAVE-GAUSSIAN-WHITE-NOISE:CAPS">
|
174
|
+
<ANCHOR id="gst-plugins-base-plugins-audiotestsrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#gst-plugins-base-plugins-audiotestsrc.property-details">
|
175
|
+
<ANCHOR id="GstAudioTestSrc--freq" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--freq">
|
176
|
+
<ANCHOR id="GstAudioTestSrc--is-live" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--is-live">
|
177
|
+
<ANCHOR id="GstAudioTestSrc--samplesperbuffer" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--samplesperbuffer">
|
178
|
+
<ANCHOR id="GstAudioTestSrc--timestamp-offset" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--timestamp-offset">
|
179
|
+
<ANCHOR id="GstAudioTestSrc--volume" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--volume">
|
180
|
+
<ANCHOR id="GstAudioTestSrc--wave" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--wave">
|
181
|
+
<ANCHOR id="GstAudioTestSrc--can-activate-pull" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--can-activate-pull">
|
182
|
+
<ANCHOR id="GstAudioTestSrc--can-activate-push" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--can-activate-push">
|
183
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html">
|
184
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#gst-plugins-base-plugins-cdparanoiasrc.synopsis">
|
185
|
+
<ANCHOR id="GstCdParanoiaSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc">
|
186
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#gst-plugins-base-plugins-cdparanoiasrc.object-hierarchy">
|
187
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#gst-plugins-base-plugins-cdparanoiasrc.implemented-interfaces">
|
188
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#gst-plugins-base-plugins-cdparanoiasrc.properties">
|
189
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#gst-plugins-base-plugins-cdparanoiasrc.signals">
|
190
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#gst-plugins-base-plugins-cdparanoiasrc.description">
|
191
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#gst-plugins-base-plugins-cdparanoiasrc.details">
|
192
|
+
<ANCHOR id="GstCdParanoiaSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc-struct">
|
193
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#gst-plugins-base-plugins-cdparanoiasrc.property-details">
|
194
|
+
<ANCHOR id="GstCdParanoiaSrc--generic-device" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc--generic-device">
|
195
|
+
<ANCHOR id="GstCdParanoiaSrc--paranoia-mode" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc--paranoia-mode">
|
196
|
+
<ANCHOR id="GstCdParanoiaSrc--read-speed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc--read-speed">
|
197
|
+
<ANCHOR id="GstCdParanoiaSrc--search-overlap" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc--search-overlap">
|
198
|
+
<ANCHOR id="GstCdParanoiaSrc--cache-size" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc--cache-size">
|
199
|
+
<ANCHOR id="gst-plugins-base-plugins-cdparanoiasrc.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#gst-plugins-base-plugins-cdparanoiasrc.signal-details">
|
200
|
+
<ANCHOR id="GstCdParanoiaSrc-transport-error" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc-transport-error">
|
201
|
+
<ANCHOR id="GstCdParanoiaSrc-uncorrected-error" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc-uncorrected-error">
|
202
|
+
<ANCHOR id="gst-plugins-base-plugins-clockoverlay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html">
|
203
|
+
<ANCHOR id="gst-plugins-base-plugins-clockoverlay.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#gst-plugins-base-plugins-clockoverlay.synopsis">
|
204
|
+
<ANCHOR id="GstClockOverlay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#GstClockOverlay">
|
205
|
+
<ANCHOR id="gst-plugins-base-plugins-clockoverlay.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#gst-plugins-base-plugins-clockoverlay.object-hierarchy">
|
206
|
+
<ANCHOR id="gst-plugins-base-plugins-clockoverlay.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#gst-plugins-base-plugins-clockoverlay.properties">
|
207
|
+
<ANCHOR id="gst-plugins-base-plugins-clockoverlay.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#gst-plugins-base-plugins-clockoverlay.description">
|
208
|
+
<ANCHOR id="gst-plugins-base-plugins-clockoverlay.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#gst-plugins-base-plugins-clockoverlay.details">
|
209
|
+
<ANCHOR id="GstClockOverlay-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#GstClockOverlay-struct">
|
210
|
+
<ANCHOR id="gst-plugins-base-plugins-clockoverlay.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#gst-plugins-base-plugins-clockoverlay.property-details">
|
211
|
+
<ANCHOR id="GstClockOverlay--time-format" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#GstClockOverlay--time-format">
|
212
|
+
<ANCHOR id="gst-plugins-base-plugins-clockoverlay.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html#gst-plugins-base-plugins-clockoverlay.see-also">
|
213
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html">
|
214
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#gst-plugins-base-plugins-decodebin.synopsis">
|
215
|
+
<ANCHOR id="GstDecodeBin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#GstDecodeBin">
|
216
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#gst-plugins-base-plugins-decodebin.object-hierarchy">
|
217
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#gst-plugins-base-plugins-decodebin.implemented-interfaces">
|
218
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#gst-plugins-base-plugins-decodebin.properties">
|
219
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#gst-plugins-base-plugins-decodebin.signals">
|
220
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#gst-plugins-base-plugins-decodebin.description">
|
221
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#gst-plugins-base-plugins-decodebin.details">
|
222
|
+
<ANCHOR id="GstDecodeBin-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#GstDecodeBin-struct">
|
223
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#gst-plugins-base-plugins-decodebin.property-details">
|
224
|
+
<ANCHOR id="GstDecodeBin--threaded" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#GstDecodeBin--threaded">
|
225
|
+
<ANCHOR id="GstDecodeBin--sink-caps" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#GstDecodeBin--sink-caps">
|
226
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#gst-plugins-base-plugins-decodebin.signal-details">
|
227
|
+
<ANCHOR id="GstDecodeBin-new-decoded-pad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#GstDecodeBin-new-decoded-pad">
|
228
|
+
<ANCHOR id="GstDecodeBin-removed-decoded-pad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#GstDecodeBin-removed-decoded-pad">
|
229
|
+
<ANCHOR id="GstDecodeBin-unknown-type" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html#GstDecodeBin-unknown-type">
|
230
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html">
|
231
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#gst-plugins-base-plugins-decodebin2.synopsis">
|
232
|
+
<ANCHOR id="GstDecodeBin2" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2">
|
233
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#gst-plugins-base-plugins-decodebin2.object-hierarchy">
|
234
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#gst-plugins-base-plugins-decodebin2.implemented-interfaces">
|
235
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#gst-plugins-base-plugins-decodebin2.properties">
|
236
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#gst-plugins-base-plugins-decodebin2.signals">
|
237
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#gst-plugins-base-plugins-decodebin2.description">
|
238
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#gst-plugins-base-plugins-decodebin2.details">
|
239
|
+
<ANCHOR id="GstDecodeBin2-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2-struct">
|
240
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#gst-plugins-base-plugins-decodebin2.property-details">
|
241
|
+
<ANCHOR id="GstDecodeBin2--caps" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--caps">
|
242
|
+
<ANCHOR id="GstDecodeBin2--subtitle-encoding" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--subtitle-encoding">
|
243
|
+
<ANCHOR id="GstDecodeBin2--sink-caps" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--sink-caps">
|
244
|
+
<ANCHOR id="GstDecodeBin2--high-percent" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--high-percent">
|
245
|
+
<ANCHOR id="GstDecodeBin2--low-percent" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--low-percent">
|
246
|
+
<ANCHOR id="GstDecodeBin2--max-size-buffers" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--max-size-buffers">
|
247
|
+
<ANCHOR id="GstDecodeBin2--max-size-bytes" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--max-size-bytes">
|
248
|
+
<ANCHOR id="GstDecodeBin2--max-size-time" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--max-size-time">
|
249
|
+
<ANCHOR id="GstDecodeBin2--use-buffering" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--use-buffering">
|
250
|
+
<ANCHOR id="GstDecodeBin2--post-stream-topology" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--post-stream-topology">
|
251
|
+
<ANCHOR id="GstDecodeBin2--expose-all-streams" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2--expose-all-streams">
|
252
|
+
<ANCHOR id="gst-plugins-base-plugins-decodebin2.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#gst-plugins-base-plugins-decodebin2.signal-details">
|
253
|
+
<ANCHOR id="GstDecodeBin2-autoplug-continue" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2-autoplug-continue">
|
254
|
+
<ANCHOR id="GstDecodeBin2-autoplug-sort" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2-autoplug-sort">
|
255
|
+
<ANCHOR id="GstDecodeBin2-new-decoded-pad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2-new-decoded-pad">
|
256
|
+
<ANCHOR id="GstDecodeBin2-removed-decoded-pad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2-removed-decoded-pad">
|
257
|
+
<ANCHOR id="GstDecodeBin2-unknown-type" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2-unknown-type">
|
258
|
+
<ANCHOR id="GstDecodeBin2-autoplug-factories" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2-autoplug-factories">
|
259
|
+
<ANCHOR id="GstDecodeBin2-autoplug-select" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2-autoplug-select">
|
260
|
+
<ANCHOR id="GstDecodeBin2-drained" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html#GstDecodeBin2-drained">
|
261
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html">
|
262
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#gst-plugins-base-plugins-encodebin.synopsis">
|
263
|
+
<ANCHOR id="GstEncodeBin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#GstEncodeBin">
|
264
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#gst-plugins-base-plugins-encodebin.object-hierarchy">
|
265
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#gst-plugins-base-plugins-encodebin.implemented-interfaces">
|
266
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#gst-plugins-base-plugins-encodebin.properties">
|
267
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#gst-plugins-base-plugins-encodebin.signals">
|
268
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#gst-plugins-base-plugins-encodebin.description">
|
269
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#gst-plugins-base-plugins-encodebin.details">
|
270
|
+
<ANCHOR id="GstEncodeBin-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#GstEncodeBin-struct">
|
271
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#gst-plugins-base-plugins-encodebin.property-details">
|
272
|
+
<ANCHOR id="GstEncodeBin--audio-jitter-tolerance" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#GstEncodeBin--audio-jitter-tolerance">
|
273
|
+
<ANCHOR id="GstEncodeBin--avoid-reencoding" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#GstEncodeBin--avoid-reencoding">
|
274
|
+
<ANCHOR id="GstEncodeBin--profile" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#GstEncodeBin--profile">
|
275
|
+
<ANCHOR id="GstEncodeBin--queue-buffers-max" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#GstEncodeBin--queue-buffers-max">
|
276
|
+
<ANCHOR id="GstEncodeBin--queue-bytes-max" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#GstEncodeBin--queue-bytes-max">
|
277
|
+
<ANCHOR id="GstEncodeBin--queue-time-max" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#GstEncodeBin--queue-time-max">
|
278
|
+
<ANCHOR id="gst-plugins-base-plugins-encodebin.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#gst-plugins-base-plugins-encodebin.signal-details">
|
279
|
+
<ANCHOR id="GstEncodeBin-request-pad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html#GstEncodeBin-request-pad">
|
280
|
+
<ANCHOR id="gst-plugins-base-plugins-ffmpegcolorspace" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html">
|
281
|
+
<ANCHOR id="gst-plugins-base-plugins-ffmpegcolorspace.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html#gst-plugins-base-plugins-ffmpegcolorspace.synopsis">
|
282
|
+
<ANCHOR id="GstFFMpegCsp" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html#GstFFMpegCsp">
|
283
|
+
<ANCHOR id="gst-plugins-base-plugins-ffmpegcolorspace.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html#gst-plugins-base-plugins-ffmpegcolorspace.object-hierarchy">
|
284
|
+
<ANCHOR id="gst-plugins-base-plugins-ffmpegcolorspace.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html#gst-plugins-base-plugins-ffmpegcolorspace.description">
|
285
|
+
<ANCHOR id="gst-plugins-base-plugins-ffmpegcolorspace.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html#gst-plugins-base-plugins-ffmpegcolorspace.details">
|
286
|
+
<ANCHOR id="GstFFMpegCsp-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html#GstFFMpegCsp-struct">
|
287
|
+
<ANCHOR id="gst-plugins-base-plugins-gdpdepay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html">
|
288
|
+
<ANCHOR id="gst-plugins-base-plugins-gdpdepay.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html#gst-plugins-base-plugins-gdpdepay.synopsis">
|
289
|
+
<ANCHOR id="GstGDPDepay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html#GstGDPDepay">
|
290
|
+
<ANCHOR id="gst-plugins-base-plugins-gdpdepay.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html#gst-plugins-base-plugins-gdpdepay.object-hierarchy">
|
291
|
+
<ANCHOR id="gst-plugins-base-plugins-gdpdepay.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html#gst-plugins-base-plugins-gdpdepay.description">
|
292
|
+
<ANCHOR id="gst-plugins-base-plugins-gdpdepay.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html#gst-plugins-base-plugins-gdpdepay.details">
|
293
|
+
<ANCHOR id="GstGDPDepay-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html#GstGDPDepay-struct">
|
294
|
+
<ANCHOR id="gst-plugins-base-plugins-gdpdepay.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html#gst-plugins-base-plugins-gdpdepay.see-also">
|
295
|
+
<ANCHOR id="gst-plugins-base-plugins-gdppay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html">
|
296
|
+
<ANCHOR id="gst-plugins-base-plugins-gdppay.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#gst-plugins-base-plugins-gdppay.synopsis">
|
297
|
+
<ANCHOR id="GstGDPPay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#GstGDPPay">
|
298
|
+
<ANCHOR id="gst-plugins-base-plugins-gdppay.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#gst-plugins-base-plugins-gdppay.object-hierarchy">
|
299
|
+
<ANCHOR id="gst-plugins-base-plugins-gdppay.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#gst-plugins-base-plugins-gdppay.properties">
|
300
|
+
<ANCHOR id="gst-plugins-base-plugins-gdppay.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#gst-plugins-base-plugins-gdppay.description">
|
301
|
+
<ANCHOR id="gst-plugins-base-plugins-gdppay.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#gst-plugins-base-plugins-gdppay.details">
|
302
|
+
<ANCHOR id="GstGDPPay-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#GstGDPPay-struct">
|
303
|
+
<ANCHOR id="gst-plugins-base-plugins-gdppay.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#gst-plugins-base-plugins-gdppay.property-details">
|
304
|
+
<ANCHOR id="GstGDPPay--crc-header" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#GstGDPPay--crc-header">
|
305
|
+
<ANCHOR id="GstGDPPay--crc-payload" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#GstGDPPay--crc-payload">
|
306
|
+
<ANCHOR id="GstGDPPay--version" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#GstGDPPay--version">
|
307
|
+
<ANCHOR id="gst-plugins-base-plugins-gdppay.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html#gst-plugins-base-plugins-gdppay.see-also">
|
308
|
+
<ANCHOR id="gst-plugins-base-plugins-giosink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html">
|
309
|
+
<ANCHOR id="gst-plugins-base-plugins-giosink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#gst-plugins-base-plugins-giosink.synopsis">
|
310
|
+
<ANCHOR id="GstGioSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#GstGioSink">
|
311
|
+
<ANCHOR id="gst-plugins-base-plugins-giosink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#gst-plugins-base-plugins-giosink.object-hierarchy">
|
312
|
+
<ANCHOR id="gst-plugins-base-plugins-giosink.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#gst-plugins-base-plugins-giosink.implemented-interfaces">
|
313
|
+
<ANCHOR id="gst-plugins-base-plugins-giosink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#gst-plugins-base-plugins-giosink.properties">
|
314
|
+
<ANCHOR id="gst-plugins-base-plugins-giosink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#gst-plugins-base-plugins-giosink.description">
|
315
|
+
<ANCHOR id="gst-plugins-base-plugins-giosink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#gst-plugins-base-plugins-giosink.details">
|
316
|
+
<ANCHOR id="GstGioSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#GstGioSink-struct">
|
317
|
+
<ANCHOR id="gst-plugins-base-plugins-giosink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#gst-plugins-base-plugins-giosink.property-details">
|
318
|
+
<ANCHOR id="GstGioSink--location" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#GstGioSink--location">
|
319
|
+
<ANCHOR id="GstGioSink--file" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#GstGioSink--file">
|
320
|
+
<ANCHOR id="gst-plugins-base-plugins-giosink.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html#gst-plugins-base-plugins-giosink.see-also">
|
321
|
+
<ANCHOR id="gst-plugins-base-plugins-giosrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html">
|
322
|
+
<ANCHOR id="gst-plugins-base-plugins-giosrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#gst-plugins-base-plugins-giosrc.synopsis">
|
323
|
+
<ANCHOR id="GstGioSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#GstGioSrc">
|
324
|
+
<ANCHOR id="gst-plugins-base-plugins-giosrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#gst-plugins-base-plugins-giosrc.object-hierarchy">
|
325
|
+
<ANCHOR id="gst-plugins-base-plugins-giosrc.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#gst-plugins-base-plugins-giosrc.implemented-interfaces">
|
326
|
+
<ANCHOR id="gst-plugins-base-plugins-giosrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#gst-plugins-base-plugins-giosrc.properties">
|
327
|
+
<ANCHOR id="gst-plugins-base-plugins-giosrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#gst-plugins-base-plugins-giosrc.description">
|
328
|
+
<ANCHOR id="gst-plugins-base-plugins-giosrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#gst-plugins-base-plugins-giosrc.details">
|
329
|
+
<ANCHOR id="GstGioSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#GstGioSrc-struct">
|
330
|
+
<ANCHOR id="gst-plugins-base-plugins-giosrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#gst-plugins-base-plugins-giosrc.property-details">
|
331
|
+
<ANCHOR id="GstGioSrc--location" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#GstGioSrc--location">
|
332
|
+
<ANCHOR id="GstGioSrc--file" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#GstGioSrc--file">
|
333
|
+
<ANCHOR id="gst-plugins-base-plugins-giosrc.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html#gst-plugins-base-plugins-giosrc.see-also">
|
334
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html">
|
335
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html#gst-plugins-base-plugins-giostreamsink.synopsis">
|
336
|
+
<ANCHOR id="GstGioStreamSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html#GstGioStreamSink">
|
337
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html#gst-plugins-base-plugins-giostreamsink.object-hierarchy">
|
338
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html#gst-plugins-base-plugins-giostreamsink.properties">
|
339
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html#gst-plugins-base-plugins-giostreamsink.description">
|
340
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html#gst-plugins-base-plugins-giostreamsink.details">
|
341
|
+
<ANCHOR id="GstGioStreamSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html#GstGioStreamSink-struct">
|
342
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html#gst-plugins-base-plugins-giostreamsink.property-details">
|
343
|
+
<ANCHOR id="GstGioStreamSink--stream" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html#GstGioStreamSink--stream">
|
344
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html">
|
345
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html#gst-plugins-base-plugins-giostreamsrc.synopsis">
|
346
|
+
<ANCHOR id="GstGioStreamSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html#GstGioStreamSrc">
|
347
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html#gst-plugins-base-plugins-giostreamsrc.object-hierarchy">
|
348
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html#gst-plugins-base-plugins-giostreamsrc.properties">
|
349
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html#gst-plugins-base-plugins-giostreamsrc.description">
|
350
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html#gst-plugins-base-plugins-giostreamsrc.details">
|
351
|
+
<ANCHOR id="GstGioStreamSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html#GstGioStreamSrc-struct">
|
352
|
+
<ANCHOR id="gst-plugins-base-plugins-giostreamsrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html#gst-plugins-base-plugins-giostreamsrc.property-details">
|
353
|
+
<ANCHOR id="GstGioStreamSrc--stream" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html#GstGioStreamSrc--stream">
|
354
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html">
|
355
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.synopsis">
|
356
|
+
<ANCHOR id="GstGnomeVFSSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#GstGnomeVFSSink">
|
357
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.object-hierarchy">
|
358
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.implemented-interfaces">
|
359
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.properties">
|
360
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.signals">
|
361
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.description">
|
362
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.details">
|
363
|
+
<ANCHOR id="GstGnomeVFSSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#GstGnomeVFSSink-struct">
|
364
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.property-details">
|
365
|
+
<ANCHOR id="GstGnomeVFSSink--handle" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#GstGnomeVFSSink--handle">
|
366
|
+
<ANCHOR id="GstGnomeVFSSink--location" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#GstGnomeVFSSink--location">
|
367
|
+
<ANCHOR id="GstGnomeVFSSink--uri" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#GstGnomeVFSSink--uri">
|
368
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.signal-details">
|
369
|
+
<ANCHOR id="GstGnomeVFSSink-allow-overwrite" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#GstGnomeVFSSink-allow-overwrite">
|
370
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssink.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html#gst-plugins-base-plugins-gnomevfssink.see-also">
|
371
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html">
|
372
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#gst-plugins-base-plugins-gnomevfssrc.synopsis">
|
373
|
+
<ANCHOR id="GstGnomeVFSSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc">
|
374
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#gst-plugins-base-plugins-gnomevfssrc.object-hierarchy">
|
375
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssrc.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#gst-plugins-base-plugins-gnomevfssrc.implemented-interfaces">
|
376
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#gst-plugins-base-plugins-gnomevfssrc.properties">
|
377
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#gst-plugins-base-plugins-gnomevfssrc.description">
|
378
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#gst-plugins-base-plugins-gnomevfssrc.details">
|
379
|
+
<ANCHOR id="GstGnomeVFSSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc-struct">
|
380
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#gst-plugins-base-plugins-gnomevfssrc.property-details">
|
381
|
+
<ANCHOR id="GstGnomeVFSSrc--handle" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc--handle">
|
382
|
+
<ANCHOR id="GstGnomeVFSSrc--iradio-genre" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc--iradio-genre">
|
383
|
+
<ANCHOR id="GstGnomeVFSSrc--iradio-mode" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc--iradio-mode">
|
384
|
+
<ANCHOR id="GstGnomeVFSSrc--iradio-name" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc--iradio-name">
|
385
|
+
<ANCHOR id="GstGnomeVFSSrc--iradio-title" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc--iradio-title">
|
386
|
+
<ANCHOR id="GstGnomeVFSSrc--iradio-url" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc--iradio-url">
|
387
|
+
<ANCHOR id="GstGnomeVFSSrc--location" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc--location">
|
388
|
+
<ANCHOR id="GstGnomeVFSSrc--random-access" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#GstGnomeVFSSrc--random-access">
|
389
|
+
<ANCHOR id="gst-plugins-base-plugins-gnomevfssrc.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html#gst-plugins-base-plugins-gnomevfssrc.see-also">
|
390
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html">
|
391
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#gst-plugins-base-plugins-multifdsink.synopsis">
|
392
|
+
<ANCHOR id="GstMultiFdSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink">
|
393
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#gst-plugins-base-plugins-multifdsink.object-hierarchy">
|
394
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#gst-plugins-base-plugins-multifdsink.properties">
|
395
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#gst-plugins-base-plugins-multifdsink.signals">
|
396
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#gst-plugins-base-plugins-multifdsink.description">
|
397
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#gst-plugins-base-plugins-multifdsink.details">
|
398
|
+
<ANCHOR id="GstMultiFdSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-struct">
|
399
|
+
<ANCHOR id="GstRecoverPolicy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstRecoverPolicy">
|
400
|
+
<ANCHOR id="GST-RECOVER-POLICY-NONE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-RECOVER-POLICY-NONE:CAPS">
|
401
|
+
<ANCHOR id="GST-RECOVER-POLICY-RESYNC-LATEST:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-RECOVER-POLICY-RESYNC-LATEST:CAPS">
|
402
|
+
<ANCHOR id="GST-RECOVER-POLICY-RESYNC-SOFT-LIMIT:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-RECOVER-POLICY-RESYNC-SOFT-LIMIT:CAPS">
|
403
|
+
<ANCHOR id="GST-RECOVER-POLICY-RESYNC-KEYFRAME:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-RECOVER-POLICY-RESYNC-KEYFRAME:CAPS">
|
404
|
+
<ANCHOR id="GstSyncMethod" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstSyncMethod">
|
405
|
+
<ANCHOR id="GST-SYNC-METHOD-LATEST:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-SYNC-METHOD-LATEST:CAPS">
|
406
|
+
<ANCHOR id="GST-SYNC-METHOD-NEXT-KEYFRAME:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-SYNC-METHOD-NEXT-KEYFRAME:CAPS">
|
407
|
+
<ANCHOR id="GST-SYNC-METHOD-LATEST-KEYFRAME:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-SYNC-METHOD-LATEST-KEYFRAME:CAPS">
|
408
|
+
<ANCHOR id="GST-SYNC-METHOD-BURST:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-SYNC-METHOD-BURST:CAPS">
|
409
|
+
<ANCHOR id="GST-SYNC-METHOD-BURST-KEYFRAME:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-SYNC-METHOD-BURST-KEYFRAME:CAPS">
|
410
|
+
<ANCHOR id="GST-SYNC-METHOD-BURST-WITH-KEYFRAME:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-SYNC-METHOD-BURST-WITH-KEYFRAME:CAPS">
|
411
|
+
<ANCHOR id="GstClientStatus" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstClientStatus">
|
412
|
+
<ANCHOR id="GST-CLIENT-STATUS-OK:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-CLIENT-STATUS-OK:CAPS">
|
413
|
+
<ANCHOR id="GST-CLIENT-STATUS-CLOSED:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-CLIENT-STATUS-CLOSED:CAPS">
|
414
|
+
<ANCHOR id="GST-CLIENT-STATUS-REMOVED:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-CLIENT-STATUS-REMOVED:CAPS">
|
415
|
+
<ANCHOR id="GST-CLIENT-STATUS-SLOW:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-CLIENT-STATUS-SLOW:CAPS">
|
416
|
+
<ANCHOR id="GST-CLIENT-STATUS-ERROR:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-CLIENT-STATUS-ERROR:CAPS">
|
417
|
+
<ANCHOR id="GST-CLIENT-STATUS-DUPLICATE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-CLIENT-STATUS-DUPLICATE:CAPS">
|
418
|
+
<ANCHOR id="GST-CLIENT-STATUS-FLUSHING:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-CLIENT-STATUS-FLUSHING:CAPS">
|
419
|
+
<ANCHOR id="GstTCPProtocol" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstTCPProtocol">
|
420
|
+
<ANCHOR id="GST-TCP-PROTOCOL-NONE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-TCP-PROTOCOL-NONE:CAPS">
|
421
|
+
<ANCHOR id="GST-TCP-PROTOCOL-GDP:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-TCP-PROTOCOL-GDP:CAPS">
|
422
|
+
<ANCHOR id="GstTCPUnitType" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstTCPUnitType">
|
423
|
+
<ANCHOR id="GST-TCP-UNIT-TYPE-UNDEFINED:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-TCP-UNIT-TYPE-UNDEFINED:CAPS">
|
424
|
+
<ANCHOR id="GST-TCP-UNIT-TYPE-BUFFERS:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-TCP-UNIT-TYPE-BUFFERS:CAPS">
|
425
|
+
<ANCHOR id="GST-TCP-UNIT-TYPE-TIME:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-TCP-UNIT-TYPE-TIME:CAPS">
|
426
|
+
<ANCHOR id="GST-TCP-UNIT-TYPE-BYTES:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GST-TCP-UNIT-TYPE-BYTES:CAPS">
|
427
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#gst-plugins-base-plugins-multifdsink.property-details">
|
428
|
+
<ANCHOR id="GstMultiFdSink--buffers-max" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--buffers-max">
|
429
|
+
<ANCHOR id="GstMultiFdSink--buffers-queued" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--buffers-queued">
|
430
|
+
<ANCHOR id="GstMultiFdSink--buffers-soft-max" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--buffers-soft-max">
|
431
|
+
<ANCHOR id="GstMultiFdSink--bytes-served" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--bytes-served">
|
432
|
+
<ANCHOR id="GstMultiFdSink--bytes-to-serve" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--bytes-to-serve">
|
433
|
+
<ANCHOR id="GstMultiFdSink--mode" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--mode">
|
434
|
+
<ANCHOR id="GstMultiFdSink--protocol" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--protocol">
|
435
|
+
<ANCHOR id="GstMultiFdSink--recover-policy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--recover-policy">
|
436
|
+
<ANCHOR id="GstMultiFdSink--sync-clients" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--sync-clients">
|
437
|
+
<ANCHOR id="GstMultiFdSink--sync-method" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--sync-method">
|
438
|
+
<ANCHOR id="GstMultiFdSink--timeout" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--timeout">
|
439
|
+
<ANCHOR id="GstMultiFdSink--buffers-min" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--buffers-min">
|
440
|
+
<ANCHOR id="GstMultiFdSink--burst-unit" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--burst-unit">
|
441
|
+
<ANCHOR id="GstMultiFdSink--burst-value" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--burst-value">
|
442
|
+
<ANCHOR id="GstMultiFdSink--bytes-min" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--bytes-min">
|
443
|
+
<ANCHOR id="GstMultiFdSink--time-min" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--time-min">
|
444
|
+
<ANCHOR id="GstMultiFdSink--unit-type" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--unit-type">
|
445
|
+
<ANCHOR id="GstMultiFdSink--units-max" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--units-max">
|
446
|
+
<ANCHOR id="GstMultiFdSink--units-soft-max" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--units-soft-max">
|
447
|
+
<ANCHOR id="GstMultiFdSink--qos-dscp" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--qos-dscp">
|
448
|
+
<ANCHOR id="GstMultiFdSink--handle-read" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--handle-read">
|
449
|
+
<ANCHOR id="GstMultiFdSink--resend-streamheader" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--resend-streamheader">
|
450
|
+
<ANCHOR id="GstMultiFdSink--num-fds" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink--num-fds">
|
451
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#gst-plugins-base-plugins-multifdsink.signal-details">
|
452
|
+
<ANCHOR id="GstMultiFdSink-add" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-add">
|
453
|
+
<ANCHOR id="GstMultiFdSink-clear" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-clear">
|
454
|
+
<ANCHOR id="GstMultiFdSink-client-added" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-client-added">
|
455
|
+
<ANCHOR id="GstMultiFdSink-client-removed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-client-removed">
|
456
|
+
<ANCHOR id="GstMultiFdSink-get-stats" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-get-stats">
|
457
|
+
<ANCHOR id="GstMultiFdSink-remove" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-remove">
|
458
|
+
<ANCHOR id="GstMultiFdSink-client-fd-removed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-client-fd-removed">
|
459
|
+
<ANCHOR id="GstMultiFdSink-add-full" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-add-full">
|
460
|
+
<ANCHOR id="GstMultiFdSink-remove-flush" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-remove-flush">
|
461
|
+
<ANCHOR id="gst-plugins-base-plugins-multifdsink.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html#gst-plugins-base-plugins-multifdsink.see-also">
|
462
|
+
<ANCHOR id="gst-plugins-base-plugins-oggdemux" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html">
|
463
|
+
<ANCHOR id="gst-plugins-base-plugins-oggdemux.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html#gst-plugins-base-plugins-oggdemux.synopsis">
|
464
|
+
<ANCHOR id="GstOggDemux" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html#GstOggDemux">
|
465
|
+
<ANCHOR id="gst-plugins-base-plugins-oggdemux.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html#gst-plugins-base-plugins-oggdemux.object-hierarchy">
|
466
|
+
<ANCHOR id="gst-plugins-base-plugins-oggdemux.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html#gst-plugins-base-plugins-oggdemux.description">
|
467
|
+
<ANCHOR id="gst-plugins-base-plugins-oggdemux.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html#gst-plugins-base-plugins-oggdemux.details">
|
468
|
+
<ANCHOR id="GstOggDemux-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html#GstOggDemux-struct">
|
469
|
+
<ANCHOR id="gst-plugins-base-plugins-oggdemux.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html#gst-plugins-base-plugins-oggdemux.see-also">
|
470
|
+
<ANCHOR id="gst-plugins-base-plugins-oggmux" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html">
|
471
|
+
<ANCHOR id="gst-plugins-base-plugins-oggmux.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#gst-plugins-base-plugins-oggmux.synopsis">
|
472
|
+
<ANCHOR id="GstOggMux" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#GstOggMux">
|
473
|
+
<ANCHOR id="gst-plugins-base-plugins-oggmux.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#gst-plugins-base-plugins-oggmux.object-hierarchy">
|
474
|
+
<ANCHOR id="gst-plugins-base-plugins-oggmux.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#gst-plugins-base-plugins-oggmux.implemented-interfaces">
|
475
|
+
<ANCHOR id="gst-plugins-base-plugins-oggmux.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#gst-plugins-base-plugins-oggmux.properties">
|
476
|
+
<ANCHOR id="gst-plugins-base-plugins-oggmux.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#gst-plugins-base-plugins-oggmux.description">
|
477
|
+
<ANCHOR id="gst-plugins-base-plugins-oggmux.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#gst-plugins-base-plugins-oggmux.details">
|
478
|
+
<ANCHOR id="GstOggMux-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#GstOggMux-struct">
|
479
|
+
<ANCHOR id="gst-plugins-base-plugins-oggmux.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#gst-plugins-base-plugins-oggmux.property-details">
|
480
|
+
<ANCHOR id="GstOggMux--max-delay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#GstOggMux--max-delay">
|
481
|
+
<ANCHOR id="GstOggMux--max-page-delay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#GstOggMux--max-page-delay">
|
482
|
+
<ANCHOR id="gst-plugins-base-plugins-oggmux.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html#gst-plugins-base-plugins-oggmux.see-also">
|
483
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html">
|
484
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#gst-plugins-base-plugins-playbin.synopsis">
|
485
|
+
<ANCHOR id="GstPlayBin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#GstPlayBin">
|
486
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#gst-plugins-base-plugins-playbin.object-hierarchy">
|
487
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#gst-plugins-base-plugins-playbin.implemented-interfaces">
|
488
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#gst-plugins-base-plugins-playbin.properties">
|
489
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#gst-plugins-base-plugins-playbin.description">
|
490
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#gst-plugins-base-plugins-playbin.details">
|
491
|
+
<ANCHOR id="GstPlayBin-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#GstPlayBin-struct">
|
492
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#gst-plugins-base-plugins-playbin.property-details">
|
493
|
+
<ANCHOR id="GstPlayBin--audio-sink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#GstPlayBin--audio-sink">
|
494
|
+
<ANCHOR id="GstPlayBin--frame" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#GstPlayBin--frame">
|
495
|
+
<ANCHOR id="GstPlayBin--subtitle-font-desc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#GstPlayBin--subtitle-font-desc">
|
496
|
+
<ANCHOR id="GstPlayBin--video-sink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#GstPlayBin--video-sink">
|
497
|
+
<ANCHOR id="GstPlayBin--vis-plugin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#GstPlayBin--vis-plugin">
|
498
|
+
<ANCHOR id="GstPlayBin--volume" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#GstPlayBin--volume">
|
499
|
+
<ANCHOR id="GstPlayBin--connection-speed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html#GstPlayBin--connection-speed">
|
500
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html">
|
501
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#gst-plugins-base-plugins-playbin2.synopsis">
|
502
|
+
<ANCHOR id="GstPlayBin2" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2">
|
503
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#gst-plugins-base-plugins-playbin2.object-hierarchy">
|
504
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#gst-plugins-base-plugins-playbin2.implemented-interfaces">
|
505
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#gst-plugins-base-plugins-playbin2.properties">
|
506
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#gst-plugins-base-plugins-playbin2.signals">
|
507
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#gst-plugins-base-plugins-playbin2.description">
|
508
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#gst-plugins-base-plugins-playbin2.details">
|
509
|
+
<ANCHOR id="GstPlayBin2-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-struct">
|
510
|
+
<ANCHOR id="GstPlayFlags" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayFlags">
|
511
|
+
<ANCHOR id="GST-PLAY-FLAG-VIDEO:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-VIDEO:CAPS">
|
512
|
+
<ANCHOR id="GST-PLAY-FLAG-AUDIO:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-AUDIO:CAPS">
|
513
|
+
<ANCHOR id="GST-PLAY-FLAG-TEXT:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-TEXT:CAPS">
|
514
|
+
<ANCHOR id="GST-PLAY-FLAG-VIS:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-VIS:CAPS">
|
515
|
+
<ANCHOR id="GST-PLAY-FLAG-SOFT-VOLUME:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-SOFT-VOLUME:CAPS">
|
516
|
+
<ANCHOR id="GST-PLAY-FLAG-NATIVE-AUDIO:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-NATIVE-AUDIO:CAPS">
|
517
|
+
<ANCHOR id="GST-PLAY-FLAG-NATIVE-VIDEO:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-NATIVE-VIDEO:CAPS">
|
518
|
+
<ANCHOR id="GST-PLAY-FLAG-DOWNLOAD:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-DOWNLOAD:CAPS">
|
519
|
+
<ANCHOR id="GST-PLAY-FLAG-BUFFERING:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-BUFFERING:CAPS">
|
520
|
+
<ANCHOR id="GST-PLAY-FLAG-DEINTERLACE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GST-PLAY-FLAG-DEINTERLACE:CAPS">
|
521
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#gst-plugins-base-plugins-playbin2.property-details">
|
522
|
+
<ANCHOR id="GstPlayBin2--audio-sink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--audio-sink">
|
523
|
+
<ANCHOR id="GstPlayBin2--connection-speed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--connection-speed">
|
524
|
+
<ANCHOR id="GstPlayBin2--current-audio" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--current-audio">
|
525
|
+
<ANCHOR id="GstPlayBin2--current-text" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--current-text">
|
526
|
+
<ANCHOR id="GstPlayBin2--current-video" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--current-video">
|
527
|
+
<ANCHOR id="GstPlayBin2--flags" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--flags">
|
528
|
+
<ANCHOR id="GstPlayBin2--frame" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--frame">
|
529
|
+
<ANCHOR id="GstPlayBin2--n-audio" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--n-audio">
|
530
|
+
<ANCHOR id="GstPlayBin2--n-text" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--n-text">
|
531
|
+
<ANCHOR id="GstPlayBin2--n-video" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--n-video">
|
532
|
+
<ANCHOR id="GstPlayBin2--source" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--source">
|
533
|
+
<ANCHOR id="GstPlayBin2--subtitle-encoding" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--subtitle-encoding">
|
534
|
+
<ANCHOR id="GstPlayBin2--subtitle-font-desc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--subtitle-font-desc">
|
535
|
+
<ANCHOR id="GstPlayBin2--suburi" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--suburi">
|
536
|
+
<ANCHOR id="GstPlayBin2--uri" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--uri">
|
537
|
+
<ANCHOR id="GstPlayBin2--video-sink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--video-sink">
|
538
|
+
<ANCHOR id="GstPlayBin2--vis-plugin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--vis-plugin">
|
539
|
+
<ANCHOR id="GstPlayBin2--volume" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--volume">
|
540
|
+
<ANCHOR id="GstPlayBin2--mute" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--mute">
|
541
|
+
<ANCHOR id="GstPlayBin2--buffer-duration" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--buffer-duration">
|
542
|
+
<ANCHOR id="GstPlayBin2--buffer-size" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--buffer-size">
|
543
|
+
<ANCHOR id="GstPlayBin2--text-sink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--text-sink">
|
544
|
+
<ANCHOR id="GstPlayBin2--subpic-sink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--subpic-sink">
|
545
|
+
<ANCHOR id="GstPlayBin2--av-offset" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--av-offset">
|
546
|
+
<ANCHOR id="GstPlayBin2--ring-buffer-max-size" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2--ring-buffer-max-size">
|
547
|
+
<ANCHOR id="gst-plugins-base-plugins-playbin2.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#gst-plugins-base-plugins-playbin2.signal-details">
|
548
|
+
<ANCHOR id="GstPlayBin2-about-to-finish" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-about-to-finish">
|
549
|
+
<ANCHOR id="GstPlayBin2-audio-changed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-audio-changed">
|
550
|
+
<ANCHOR id="GstPlayBin2-get-audio-tags" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-get-audio-tags">
|
551
|
+
<ANCHOR id="GstPlayBin2-get-text-tags" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-get-text-tags">
|
552
|
+
<ANCHOR id="GstPlayBin2-get-video-tags" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-get-video-tags">
|
553
|
+
<ANCHOR id="GstPlayBin2-text-changed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-text-changed">
|
554
|
+
<ANCHOR id="GstPlayBin2-video-changed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-video-changed">
|
555
|
+
<ANCHOR id="GstPlayBin2-convert-frame" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-convert-frame">
|
556
|
+
<ANCHOR id="GstPlayBin2-get-audio-pad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-get-audio-pad">
|
557
|
+
<ANCHOR id="GstPlayBin2-get-text-pad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-get-text-pad">
|
558
|
+
<ANCHOR id="GstPlayBin2-get-video-pad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-get-video-pad">
|
559
|
+
<ANCHOR id="GstPlayBin2-audio-tags-changed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-audio-tags-changed">
|
560
|
+
<ANCHOR id="GstPlayBin2-text-tags-changed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-text-tags-changed">
|
561
|
+
<ANCHOR id="GstPlayBin2-video-tags-changed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-video-tags-changed">
|
562
|
+
<ANCHOR id="GstPlayBin2-source-setup" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html#GstPlayBin2-source-setup">
|
563
|
+
<ANCHOR id="gst-plugins-base-plugins-subtitleoverlay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html">
|
564
|
+
<ANCHOR id="gst-plugins-base-plugins-subtitleoverlay.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#gst-plugins-base-plugins-subtitleoverlay.synopsis">
|
565
|
+
<ANCHOR id="GstSubtitleOverlay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#GstSubtitleOverlay">
|
566
|
+
<ANCHOR id="gst-plugins-base-plugins-subtitleoverlay.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#gst-plugins-base-plugins-subtitleoverlay.object-hierarchy">
|
567
|
+
<ANCHOR id="gst-plugins-base-plugins-subtitleoverlay.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#gst-plugins-base-plugins-subtitleoverlay.implemented-interfaces">
|
568
|
+
<ANCHOR id="gst-plugins-base-plugins-subtitleoverlay.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#gst-plugins-base-plugins-subtitleoverlay.properties">
|
569
|
+
<ANCHOR id="gst-plugins-base-plugins-subtitleoverlay.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#gst-plugins-base-plugins-subtitleoverlay.description">
|
570
|
+
<ANCHOR id="gst-plugins-base-plugins-subtitleoverlay.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#gst-plugins-base-plugins-subtitleoverlay.details">
|
571
|
+
<ANCHOR id="GstSubtitleOverlay-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#GstSubtitleOverlay-struct">
|
572
|
+
<ANCHOR id="gst-plugins-base-plugins-subtitleoverlay.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#gst-plugins-base-plugins-subtitleoverlay.property-details">
|
573
|
+
<ANCHOR id="GstSubtitleOverlay--font-desc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#GstSubtitleOverlay--font-desc">
|
574
|
+
<ANCHOR id="GstSubtitleOverlay--silent" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#GstSubtitleOverlay--silent">
|
575
|
+
<ANCHOR id="GstSubtitleOverlay--subtitle-encoding" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html#GstSubtitleOverlay--subtitle-encoding">
|
576
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html">
|
577
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#gst-plugins-base-plugins-tcpclientsrc.synopsis">
|
578
|
+
<ANCHOR id="GstTCPClientSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#GstTCPClientSrc">
|
579
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#gst-plugins-base-plugins-tcpclientsrc.object-hierarchy">
|
580
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#gst-plugins-base-plugins-tcpclientsrc.properties">
|
581
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#gst-plugins-base-plugins-tcpclientsrc.description">
|
582
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#gst-plugins-base-plugins-tcpclientsrc.details">
|
583
|
+
<ANCHOR id="GstTCPClientSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#GstTCPClientSrc-struct">
|
584
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#gst-plugins-base-plugins-tcpclientsrc.property-details">
|
585
|
+
<ANCHOR id="GstTCPClientSrc--host" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#GstTCPClientSrc--host">
|
586
|
+
<ANCHOR id="GstTCPClientSrc--port" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#GstTCPClientSrc--port">
|
587
|
+
<ANCHOR id="GstTCPClientSrc--protocol" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#GstTCPClientSrc--protocol">
|
588
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsrc.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html#gst-plugins-base-plugins-tcpclientsrc.see-also">
|
589
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html">
|
590
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#gst-plugins-base-plugins-tcpclientsink.synopsis">
|
591
|
+
<ANCHOR id="GstTCPClientSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#GstTCPClientSink">
|
592
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#gst-plugins-base-plugins-tcpclientsink.object-hierarchy">
|
593
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#gst-plugins-base-plugins-tcpclientsink.properties">
|
594
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#gst-plugins-base-plugins-tcpclientsink.description">
|
595
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#gst-plugins-base-plugins-tcpclientsink.details">
|
596
|
+
<ANCHOR id="GstTCPClientSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#GstTCPClientSink-struct">
|
597
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#gst-plugins-base-plugins-tcpclientsink.property-details">
|
598
|
+
<ANCHOR id="GstTCPClientSink--host" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#GstTCPClientSink--host">
|
599
|
+
<ANCHOR id="GstTCPClientSink--port" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#GstTCPClientSink--port">
|
600
|
+
<ANCHOR id="GstTCPClientSink--protocol" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#GstTCPClientSink--protocol">
|
601
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpclientsink.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html#gst-plugins-base-plugins-tcpclientsink.see-also">
|
602
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html">
|
603
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#gst-plugins-base-plugins-tcpserversrc.synopsis">
|
604
|
+
<ANCHOR id="GstTCPServerSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc">
|
605
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#gst-plugins-base-plugins-tcpserversrc.object-hierarchy">
|
606
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#gst-plugins-base-plugins-tcpserversrc.properties">
|
607
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#gst-plugins-base-plugins-tcpserversrc.description">
|
608
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#gst-plugins-base-plugins-tcpserversrc.details">
|
609
|
+
<ANCHOR id="GstTCPServerSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc-struct">
|
610
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#gst-plugins-base-plugins-tcpserversrc.property-details">
|
611
|
+
<ANCHOR id="GstTCPServerSrc--host" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc--host">
|
612
|
+
<ANCHOR id="GstTCPServerSrc--port" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc--port">
|
613
|
+
<ANCHOR id="GstTCPServerSrc--protocol" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc--protocol">
|
614
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversrc.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html#gst-plugins-base-plugins-tcpserversrc.see-also">
|
615
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html">
|
616
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#gst-plugins-base-plugins-tcpserversink.synopsis">
|
617
|
+
<ANCHOR id="GstTCPServerSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#GstTCPServerSink">
|
618
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#gst-plugins-base-plugins-tcpserversink.object-hierarchy">
|
619
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#gst-plugins-base-plugins-tcpserversink.properties">
|
620
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#gst-plugins-base-plugins-tcpserversink.description">
|
621
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#gst-plugins-base-plugins-tcpserversink.details">
|
622
|
+
<ANCHOR id="GstTCPServerSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#GstTCPServerSink-struct">
|
623
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#gst-plugins-base-plugins-tcpserversink.property-details">
|
624
|
+
<ANCHOR id="GstTCPServerSink--host" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#GstTCPServerSink--host">
|
625
|
+
<ANCHOR id="GstTCPServerSink--port" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#GstTCPServerSink--port">
|
626
|
+
<ANCHOR id="gst-plugins-base-plugins-tcpserversink.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html#gst-plugins-base-plugins-tcpserversink.see-also">
|
627
|
+
<ANCHOR id="gst-plugins-base-plugins-textoverlay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html">
|
628
|
+
<ANCHOR id="gst-plugins-base-plugins-textoverlay.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#gst-plugins-base-plugins-textoverlay.synopsis">
|
629
|
+
<ANCHOR id="GstTextOverlay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay">
|
630
|
+
<ANCHOR id="gst-plugins-base-plugins-textoverlay.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#gst-plugins-base-plugins-textoverlay.object-hierarchy">
|
631
|
+
<ANCHOR id="gst-plugins-base-plugins-textoverlay.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#gst-plugins-base-plugins-textoverlay.properties">
|
632
|
+
<ANCHOR id="gst-plugins-base-plugins-textoverlay.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#gst-plugins-base-plugins-textoverlay.description">
|
633
|
+
<ANCHOR id="gst-plugins-base-plugins-textoverlay.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#gst-plugins-base-plugins-textoverlay.details">
|
634
|
+
<ANCHOR id="GstTextOverlay-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay-struct">
|
635
|
+
<ANCHOR id="GstTextOverlayVAlign" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlayVAlign">
|
636
|
+
<ANCHOR id="GST-TEXT-OVERLAY-VALIGN-BASELINE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-VALIGN-BASELINE:CAPS">
|
637
|
+
<ANCHOR id="GST-TEXT-OVERLAY-VALIGN-BOTTOM:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-VALIGN-BOTTOM:CAPS">
|
638
|
+
<ANCHOR id="GST-TEXT-OVERLAY-VALIGN-TOP:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-VALIGN-TOP:CAPS">
|
639
|
+
<ANCHOR id="GST-TEXT-OVERLAY-VALIGN-POS:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-VALIGN-POS:CAPS">
|
640
|
+
<ANCHOR id="GST-TEXT-OVERLAY-VALIGN-CENTER:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-VALIGN-CENTER:CAPS">
|
641
|
+
<ANCHOR id="GstTextOverlayHAlign" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlayHAlign">
|
642
|
+
<ANCHOR id="GST-TEXT-OVERLAY-HALIGN-LEFT:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-HALIGN-LEFT:CAPS">
|
643
|
+
<ANCHOR id="GST-TEXT-OVERLAY-HALIGN-CENTER:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-HALIGN-CENTER:CAPS">
|
644
|
+
<ANCHOR id="GST-TEXT-OVERLAY-HALIGN-RIGHT:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-HALIGN-RIGHT:CAPS">
|
645
|
+
<ANCHOR id="GST-TEXT-OVERLAY-HALIGN-UNUSED:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-HALIGN-UNUSED:CAPS">
|
646
|
+
<ANCHOR id="GST-TEXT-OVERLAY-HALIGN-POS:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-HALIGN-POS:CAPS">
|
647
|
+
<ANCHOR id="GstTextOverlayWrapMode" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlayWrapMode">
|
648
|
+
<ANCHOR id="GST-TEXT-OVERLAY-WRAP-MODE-NONE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-WRAP-MODE-NONE:CAPS">
|
649
|
+
<ANCHOR id="GST-TEXT-OVERLAY-WRAP-MODE-WORD:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-WRAP-MODE-WORD:CAPS">
|
650
|
+
<ANCHOR id="GST-TEXT-OVERLAY-WRAP-MODE-CHAR:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-WRAP-MODE-CHAR:CAPS">
|
651
|
+
<ANCHOR id="GST-TEXT-OVERLAY-WRAP-MODE-WORD-CHAR:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GST-TEXT-OVERLAY-WRAP-MODE-WORD-CHAR:CAPS">
|
652
|
+
<ANCHOR id="gst-plugins-base-plugins-textoverlay.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#gst-plugins-base-plugins-textoverlay.property-details">
|
653
|
+
<ANCHOR id="GstTextOverlay--deltax" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--deltax">
|
654
|
+
<ANCHOR id="GstTextOverlay--deltay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--deltay">
|
655
|
+
<ANCHOR id="GstTextOverlay--font-desc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--font-desc">
|
656
|
+
<ANCHOR id="GstTextOverlay--halign" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--halign">
|
657
|
+
<ANCHOR id="GstTextOverlay--shaded-background" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--shaded-background">
|
658
|
+
<ANCHOR id="GstTextOverlay--text" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--text">
|
659
|
+
<ANCHOR id="GstTextOverlay--valign" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--valign">
|
660
|
+
<ANCHOR id="GstTextOverlay--wrap-mode" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--wrap-mode">
|
661
|
+
<ANCHOR id="GstTextOverlay--xpad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--xpad">
|
662
|
+
<ANCHOR id="GstTextOverlay--ypad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--ypad">
|
663
|
+
<ANCHOR id="GstTextOverlay--halignment" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--halignment">
|
664
|
+
<ANCHOR id="GstTextOverlay--valignment" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--valignment">
|
665
|
+
<ANCHOR id="GstTextOverlay--line-alignment" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--line-alignment">
|
666
|
+
<ANCHOR id="GstTextOverlay--silent" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--silent">
|
667
|
+
<ANCHOR id="GstTextOverlay--wait-text" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--wait-text">
|
668
|
+
<ANCHOR id="GstTextOverlay--auto-resize" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--auto-resize">
|
669
|
+
<ANCHOR id="GstTextOverlay--vertical-render" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--vertical-render">
|
670
|
+
<ANCHOR id="GstTextOverlay--color" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--color">
|
671
|
+
<ANCHOR id="GstTextOverlay--xpos" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--xpos">
|
672
|
+
<ANCHOR id="GstTextOverlay--ypos" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--ypos">
|
673
|
+
<ANCHOR id="gst-plugins-base-plugins-textoverlay.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html#gst-plugins-base-plugins-textoverlay.see-also">
|
674
|
+
<ANCHOR id="gst-plugins-base-plugins-textrender" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html">
|
675
|
+
<ANCHOR id="gst-plugins-base-plugins-textrender.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#gst-plugins-base-plugins-textrender.synopsis">
|
676
|
+
<ANCHOR id="GstTextRender" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#GstTextRender">
|
677
|
+
<ANCHOR id="gst-plugins-base-plugins-textrender.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#gst-plugins-base-plugins-textrender.object-hierarchy">
|
678
|
+
<ANCHOR id="gst-plugins-base-plugins-textrender.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#gst-plugins-base-plugins-textrender.properties">
|
679
|
+
<ANCHOR id="gst-plugins-base-plugins-textrender.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#gst-plugins-base-plugins-textrender.description">
|
680
|
+
<ANCHOR id="gst-plugins-base-plugins-textrender.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#gst-plugins-base-plugins-textrender.details">
|
681
|
+
<ANCHOR id="GstTextRender-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#GstTextRender-struct">
|
682
|
+
<ANCHOR id="gst-plugins-base-plugins-textrender.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#gst-plugins-base-plugins-textrender.property-details">
|
683
|
+
<ANCHOR id="GstTextRender--font-desc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#GstTextRender--font-desc">
|
684
|
+
<ANCHOR id="GstTextRender--halignment" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#GstTextRender--halignment">
|
685
|
+
<ANCHOR id="GstTextRender--line-alignment" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#GstTextRender--line-alignment">
|
686
|
+
<ANCHOR id="GstTextRender--valignment" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#GstTextRender--valignment">
|
687
|
+
<ANCHOR id="GstTextRender--xpad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#GstTextRender--xpad">
|
688
|
+
<ANCHOR id="GstTextRender--ypad" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#GstTextRender--ypad">
|
689
|
+
<ANCHOR id="gst-plugins-base-plugins-textrender.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html#gst-plugins-base-plugins-textrender.see-also">
|
690
|
+
<ANCHOR id="gst-plugins-base-plugins-theoradec" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html">
|
691
|
+
<ANCHOR id="gst-plugins-base-plugins-theoradec.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#gst-plugins-base-plugins-theoradec.synopsis">
|
692
|
+
<ANCHOR id="GstTheoraDec" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#GstTheoraDec">
|
693
|
+
<ANCHOR id="gst-plugins-base-plugins-theoradec.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#gst-plugins-base-plugins-theoradec.object-hierarchy">
|
694
|
+
<ANCHOR id="gst-plugins-base-plugins-theoradec.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#gst-plugins-base-plugins-theoradec.properties">
|
695
|
+
<ANCHOR id="gst-plugins-base-plugins-theoradec.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#gst-plugins-base-plugins-theoradec.description">
|
696
|
+
<ANCHOR id="gst-plugins-base-plugins-theoradec.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#gst-plugins-base-plugins-theoradec.details">
|
697
|
+
<ANCHOR id="GstTheoraDec-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#GstTheoraDec-struct">
|
698
|
+
<ANCHOR id="gst-plugins-base-plugins-theoradec.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#gst-plugins-base-plugins-theoradec.property-details">
|
699
|
+
<ANCHOR id="GstTheoraDec--crop" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#GstTheoraDec--crop">
|
700
|
+
<ANCHOR id="gst-plugins-base-plugins-theoradec.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html#gst-plugins-base-plugins-theoradec.see-also">
|
701
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraenc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html">
|
702
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraenc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#gst-plugins-base-plugins-theoraenc.synopsis">
|
703
|
+
<ANCHOR id="GstTheoraEnc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc">
|
704
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraenc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#gst-plugins-base-plugins-theoraenc.object-hierarchy">
|
705
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraenc.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#gst-plugins-base-plugins-theoraenc.implemented-interfaces">
|
706
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraenc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#gst-plugins-base-plugins-theoraenc.properties">
|
707
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraenc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#gst-plugins-base-plugins-theoraenc.description">
|
708
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraenc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#gst-plugins-base-plugins-theoraenc.details">
|
709
|
+
<ANCHOR id="GstTheoraEnc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc-struct">
|
710
|
+
<ANCHOR id="GstTheoraEncBorderMode" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEncBorderMode">
|
711
|
+
<ANCHOR id="BORDER-NONE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#BORDER-NONE:CAPS">
|
712
|
+
<ANCHOR id="BORDER-BLACK:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#BORDER-BLACK:CAPS">
|
713
|
+
<ANCHOR id="BORDER-MIRROR:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#BORDER-MIRROR:CAPS">
|
714
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraenc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#gst-plugins-base-plugins-theoraenc.property-details">
|
715
|
+
<ANCHOR id="GstTheoraEnc--bitrate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--bitrate">
|
716
|
+
<ANCHOR id="GstTheoraEnc--border" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--border">
|
717
|
+
<ANCHOR id="GstTheoraEnc--center" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--center">
|
718
|
+
<ANCHOR id="GstTheoraEnc--keyframe-auto" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--keyframe-auto">
|
719
|
+
<ANCHOR id="GstTheoraEnc--keyframe-force" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--keyframe-force">
|
720
|
+
<ANCHOR id="GstTheoraEnc--keyframe-freq" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--keyframe-freq">
|
721
|
+
<ANCHOR id="GstTheoraEnc--keyframe-mindistance" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--keyframe-mindistance">
|
722
|
+
<ANCHOR id="GstTheoraEnc--keyframe-threshold" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--keyframe-threshold">
|
723
|
+
<ANCHOR id="GstTheoraEnc--noise-sensitivity" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--noise-sensitivity">
|
724
|
+
<ANCHOR id="GstTheoraEnc--quality" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--quality">
|
725
|
+
<ANCHOR id="GstTheoraEnc--quick" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--quick">
|
726
|
+
<ANCHOR id="GstTheoraEnc--sharpness" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--sharpness">
|
727
|
+
<ANCHOR id="GstTheoraEnc--speed-level" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--speed-level">
|
728
|
+
<ANCHOR id="GstTheoraEnc--cap-overflow" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--cap-overflow">
|
729
|
+
<ANCHOR id="GstTheoraEnc--cap-underflow" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--cap-underflow">
|
730
|
+
<ANCHOR id="GstTheoraEnc--drop-frames" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--drop-frames">
|
731
|
+
<ANCHOR id="GstTheoraEnc--rate-buffer" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--rate-buffer">
|
732
|
+
<ANCHOR id="GstTheoraEnc--vp3-compatible" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--vp3-compatible">
|
733
|
+
<ANCHOR id="GstTheoraEnc--multipass-cache-file" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--multipass-cache-file">
|
734
|
+
<ANCHOR id="GstTheoraEnc--multipass-mode" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--multipass-mode">
|
735
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraenc.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html#gst-plugins-base-plugins-theoraenc.see-also">
|
736
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraparse" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html">
|
737
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraparse.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#gst-plugins-base-plugins-theoraparse.synopsis">
|
738
|
+
<ANCHOR id="GstTheoraParse" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#GstTheoraParse">
|
739
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraparse.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#gst-plugins-base-plugins-theoraparse.object-hierarchy">
|
740
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraparse.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#gst-plugins-base-plugins-theoraparse.properties">
|
741
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraparse.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#gst-plugins-base-plugins-theoraparse.description">
|
742
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraparse.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#gst-plugins-base-plugins-theoraparse.details">
|
743
|
+
<ANCHOR id="GstTheoraParse-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#GstTheoraParse-struct">
|
744
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraparse.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#gst-plugins-base-plugins-theoraparse.property-details">
|
745
|
+
<ANCHOR id="GstTheoraParse--synchronization-points" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#GstTheoraParse--synchronization-points">
|
746
|
+
<ANCHOR id="gst-plugins-base-plugins-theoraparse.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html#gst-plugins-base-plugins-theoraparse.see-also">
|
747
|
+
<ANCHOR id="gst-plugins-base-plugins-timeoverlay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html">
|
748
|
+
<ANCHOR id="gst-plugins-base-plugins-timeoverlay.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html#gst-plugins-base-plugins-timeoverlay.synopsis">
|
749
|
+
<ANCHOR id="GstTimeOverlay" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html#GstTimeOverlay">
|
750
|
+
<ANCHOR id="gst-plugins-base-plugins-timeoverlay.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html#gst-plugins-base-plugins-timeoverlay.object-hierarchy">
|
751
|
+
<ANCHOR id="gst-plugins-base-plugins-timeoverlay.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html#gst-plugins-base-plugins-timeoverlay.description">
|
752
|
+
<ANCHOR id="gst-plugins-base-plugins-timeoverlay.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html#gst-plugins-base-plugins-timeoverlay.details">
|
753
|
+
<ANCHOR id="GstTimeOverlay-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html#GstTimeOverlay-struct">
|
754
|
+
<ANCHOR id="gst-plugins-base-plugins-timeoverlay.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html#gst-plugins-base-plugins-timeoverlay.see-also">
|
755
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html">
|
756
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#gst-plugins-base-plugins-uridecodebin.synopsis">
|
757
|
+
<ANCHOR id="GstURIDecodeBin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin">
|
758
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#gst-plugins-base-plugins-uridecodebin.object-hierarchy">
|
759
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#gst-plugins-base-plugins-uridecodebin.implemented-interfaces">
|
760
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#gst-plugins-base-plugins-uridecodebin.properties">
|
761
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin.signals" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#gst-plugins-base-plugins-uridecodebin.signals">
|
762
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#gst-plugins-base-plugins-uridecodebin.description">
|
763
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#gst-plugins-base-plugins-uridecodebin.details">
|
764
|
+
<ANCHOR id="GstURIDecodeBin-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-struct">
|
765
|
+
<ANCHOR id="GstAutoplugSelectResult" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstAutoplugSelectResult">
|
766
|
+
<ANCHOR id="GST-AUTOPLUG-SELECT-TRY:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GST-AUTOPLUG-SELECT-TRY:CAPS">
|
767
|
+
<ANCHOR id="GST-AUTOPLUG-SELECT-EXPOSE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GST-AUTOPLUG-SELECT-EXPOSE:CAPS">
|
768
|
+
<ANCHOR id="GST-AUTOPLUG-SELECT-SKIP:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GST-AUTOPLUG-SELECT-SKIP:CAPS">
|
769
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#gst-plugins-base-plugins-uridecodebin.property-details">
|
770
|
+
<ANCHOR id="GstURIDecodeBin--uri" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--uri">
|
771
|
+
<ANCHOR id="GstURIDecodeBin--connection-speed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--connection-speed">
|
772
|
+
<ANCHOR id="GstURIDecodeBin--caps" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--caps">
|
773
|
+
<ANCHOR id="GstURIDecodeBin--subtitle-encoding" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--subtitle-encoding">
|
774
|
+
<ANCHOR id="GstURIDecodeBin--source" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--source">
|
775
|
+
<ANCHOR id="GstURIDecodeBin--buffer-duration" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--buffer-duration">
|
776
|
+
<ANCHOR id="GstURIDecodeBin--buffer-size" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--buffer-size">
|
777
|
+
<ANCHOR id="GstURIDecodeBin--download" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--download">
|
778
|
+
<ANCHOR id="GstURIDecodeBin--use-buffering" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--use-buffering">
|
779
|
+
<ANCHOR id="GstURIDecodeBin--expose-all-streams" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--expose-all-streams">
|
780
|
+
<ANCHOR id="GstURIDecodeBin--ring-buffer-max-size" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--ring-buffer-max-size">
|
781
|
+
<ANCHOR id="gst-plugins-base-plugins-uridecodebin.signal-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#gst-plugins-base-plugins-uridecodebin.signal-details">
|
782
|
+
<ANCHOR id="GstURIDecodeBin-autoplug-continue" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-autoplug-continue">
|
783
|
+
<ANCHOR id="GstURIDecodeBin-autoplug-factories" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-autoplug-factories">
|
784
|
+
<ANCHOR id="GstURIDecodeBin-autoplug-select" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-autoplug-select">
|
785
|
+
<ANCHOR id="GstURIDecodeBin-unknown-type" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-unknown-type">
|
786
|
+
<ANCHOR id="GstURIDecodeBin-drained" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-drained">
|
787
|
+
<ANCHOR id="GstURIDecodeBin-autoplug-sort" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-autoplug-sort">
|
788
|
+
<ANCHOR id="GstURIDecodeBin-source-setup" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-source-setup">
|
789
|
+
<ANCHOR id="gst-plugins-base-plugins-videorate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html">
|
790
|
+
<ANCHOR id="gst-plugins-base-plugins-videorate.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#gst-plugins-base-plugins-videorate.synopsis">
|
791
|
+
<ANCHOR id="GstVideoRate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#GstVideoRate">
|
792
|
+
<ANCHOR id="gst-plugins-base-plugins-videorate.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#gst-plugins-base-plugins-videorate.object-hierarchy">
|
793
|
+
<ANCHOR id="gst-plugins-base-plugins-videorate.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#gst-plugins-base-plugins-videorate.properties">
|
794
|
+
<ANCHOR id="gst-plugins-base-plugins-videorate.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#gst-plugins-base-plugins-videorate.description">
|
795
|
+
<ANCHOR id="gst-plugins-base-plugins-videorate.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#gst-plugins-base-plugins-videorate.details">
|
796
|
+
<ANCHOR id="GstVideoRate-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#GstVideoRate-struct">
|
797
|
+
<ANCHOR id="gst-plugins-base-plugins-videorate.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#gst-plugins-base-plugins-videorate.property-details">
|
798
|
+
<ANCHOR id="GstVideoRate--drop" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#GstVideoRate--drop">
|
799
|
+
<ANCHOR id="GstVideoRate--duplicate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#GstVideoRate--duplicate">
|
800
|
+
<ANCHOR id="GstVideoRate--in" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#GstVideoRate--in">
|
801
|
+
<ANCHOR id="GstVideoRate--new-pref" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#GstVideoRate--new-pref">
|
802
|
+
<ANCHOR id="GstVideoRate--out" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#GstVideoRate--out">
|
803
|
+
<ANCHOR id="GstVideoRate--silent" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#GstVideoRate--silent">
|
804
|
+
<ANCHOR id="GstVideoRate--skip-to-first" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html#GstVideoRate--skip-to-first">
|
805
|
+
<ANCHOR id="gst-plugins-base-plugins-videoscale" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html">
|
806
|
+
<ANCHOR id="gst-plugins-base-plugins-videoscale.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#gst-plugins-base-plugins-videoscale.synopsis">
|
807
|
+
<ANCHOR id="GstVideoScale" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#GstVideoScale">
|
808
|
+
<ANCHOR id="gst-plugins-base-plugins-videoscale.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#gst-plugins-base-plugins-videoscale.object-hierarchy">
|
809
|
+
<ANCHOR id="gst-plugins-base-plugins-videoscale.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#gst-plugins-base-plugins-videoscale.properties">
|
810
|
+
<ANCHOR id="gst-plugins-base-plugins-videoscale.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#gst-plugins-base-plugins-videoscale.description">
|
811
|
+
<ANCHOR id="gst-plugins-base-plugins-videoscale.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#gst-plugins-base-plugins-videoscale.details">
|
812
|
+
<ANCHOR id="GstVideoScale-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#GstVideoScale-struct">
|
813
|
+
<ANCHOR id="GstVideoScaleMethod" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#GstVideoScaleMethod">
|
814
|
+
<ANCHOR id="GST-VIDEO-SCALE-NEAREST:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#GST-VIDEO-SCALE-NEAREST:CAPS">
|
815
|
+
<ANCHOR id="GST-VIDEO-SCALE-BILINEAR:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#GST-VIDEO-SCALE-BILINEAR:CAPS">
|
816
|
+
<ANCHOR id="GST-VIDEO-SCALE-4TAP:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#GST-VIDEO-SCALE-4TAP:CAPS">
|
817
|
+
<ANCHOR id="gst-plugins-base-plugins-videoscale.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#gst-plugins-base-plugins-videoscale.property-details">
|
818
|
+
<ANCHOR id="GstVideoScale--method" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#GstVideoScale--method">
|
819
|
+
<ANCHOR id="GstVideoScale--add-borders" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#GstVideoScale--add-borders">
|
820
|
+
<ANCHOR id="gst-plugins-base-plugins-videoscale.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html#gst-plugins-base-plugins-videoscale.see-also">
|
821
|
+
<ANCHOR id="gst-plugins-base-plugins-videotestsrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html">
|
822
|
+
<ANCHOR id="gst-plugins-base-plugins-videotestsrc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#gst-plugins-base-plugins-videotestsrc.synopsis">
|
823
|
+
<ANCHOR id="GstVideoTestSrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc">
|
824
|
+
<ANCHOR id="gst-plugins-base-plugins-videotestsrc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#gst-plugins-base-plugins-videotestsrc.object-hierarchy">
|
825
|
+
<ANCHOR id="gst-plugins-base-plugins-videotestsrc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#gst-plugins-base-plugins-videotestsrc.properties">
|
826
|
+
<ANCHOR id="gst-plugins-base-plugins-videotestsrc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#gst-plugins-base-plugins-videotestsrc.description">
|
827
|
+
<ANCHOR id="gst-plugins-base-plugins-videotestsrc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#gst-plugins-base-plugins-videotestsrc.details">
|
828
|
+
<ANCHOR id="GstVideoTestSrc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc-struct">
|
829
|
+
<ANCHOR id="GstVideoTestSrcPattern" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrcPattern">
|
830
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-SMPTE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-SMPTE:CAPS">
|
831
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-SNOW:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-SNOW:CAPS">
|
832
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-BLACK:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-BLACK:CAPS">
|
833
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-WHITE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-WHITE:CAPS">
|
834
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-RED:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-RED:CAPS">
|
835
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-GREEN:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-GREEN:CAPS">
|
836
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-BLUE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-BLUE:CAPS">
|
837
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-CHECKERS1:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-CHECKERS1:CAPS">
|
838
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-CHECKERS2:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-CHECKERS2:CAPS">
|
839
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-CHECKERS4:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-CHECKERS4:CAPS">
|
840
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-CHECKERS8:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-CHECKERS8:CAPS">
|
841
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-CIRCULAR:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-CIRCULAR:CAPS">
|
842
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-BLINK:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-BLINK:CAPS">
|
843
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-SMPTE75:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-SMPTE75:CAPS">
|
844
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-ZONE-PLATE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-ZONE-PLATE:CAPS">
|
845
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-GAMUT:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-GAMUT:CAPS">
|
846
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-CHROMA-ZONE-PLATE:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-CHROMA-ZONE-PLATE:CAPS">
|
847
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-SOLID:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-SOLID:CAPS">
|
848
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-BALL:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-BALL:CAPS">
|
849
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-SMPTE100:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-SMPTE100:CAPS">
|
850
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-BAR:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-BAR:CAPS">
|
851
|
+
<ANCHOR id="GstVideoTestSrcColorSpec" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrcColorSpec">
|
852
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-BT601:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-BT601:CAPS">
|
853
|
+
<ANCHOR id="GST-VIDEO-TEST-SRC-BT709:CAPS" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GST-VIDEO-TEST-SRC-BT709:CAPS">
|
854
|
+
<ANCHOR id="gst-plugins-base-plugins-videotestsrc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#gst-plugins-base-plugins-videotestsrc.property-details">
|
855
|
+
<ANCHOR id="GstVideoTestSrc--pattern" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--pattern">
|
856
|
+
<ANCHOR id="GstVideoTestSrc--timestamp-offset" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--timestamp-offset">
|
857
|
+
<ANCHOR id="GstVideoTestSrc--is-live" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--is-live">
|
858
|
+
<ANCHOR id="GstVideoTestSrc--peer-alloc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--peer-alloc">
|
859
|
+
<ANCHOR id="GstVideoTestSrc--colorspec" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--colorspec">
|
860
|
+
<ANCHOR id="GstVideoTestSrc--k0" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--k0">
|
861
|
+
<ANCHOR id="GstVideoTestSrc--kt" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--kt">
|
862
|
+
<ANCHOR id="GstVideoTestSrc--kt2" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--kt2">
|
863
|
+
<ANCHOR id="GstVideoTestSrc--kx" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--kx">
|
864
|
+
<ANCHOR id="GstVideoTestSrc--kx2" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--kx2">
|
865
|
+
<ANCHOR id="GstVideoTestSrc--kxt" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--kxt">
|
866
|
+
<ANCHOR id="GstVideoTestSrc--kxy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--kxy">
|
867
|
+
<ANCHOR id="GstVideoTestSrc--ky" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--ky">
|
868
|
+
<ANCHOR id="GstVideoTestSrc--ky2" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--ky2">
|
869
|
+
<ANCHOR id="GstVideoTestSrc--kyt" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--kyt">
|
870
|
+
<ANCHOR id="GstVideoTestSrc--xoffset" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--xoffset">
|
871
|
+
<ANCHOR id="GstVideoTestSrc--yoffset" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--yoffset">
|
872
|
+
<ANCHOR id="GstVideoTestSrc--background-color" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--background-color">
|
873
|
+
<ANCHOR id="GstVideoTestSrc--foreground-color" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--foreground-color">
|
874
|
+
<ANCHOR id="GstVideoTestSrc--horizontal-speed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--horizontal-speed">
|
875
|
+
<ANCHOR id="gst-plugins-base-plugins-volume" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html">
|
876
|
+
<ANCHOR id="gst-plugins-base-plugins-volume.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#gst-plugins-base-plugins-volume.synopsis">
|
877
|
+
<ANCHOR id="GstVolume" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#GstVolume">
|
878
|
+
<ANCHOR id="gst-plugins-base-plugins-volume.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#gst-plugins-base-plugins-volume.object-hierarchy">
|
879
|
+
<ANCHOR id="gst-plugins-base-plugins-volume.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#gst-plugins-base-plugins-volume.implemented-interfaces">
|
880
|
+
<ANCHOR id="gst-plugins-base-plugins-volume.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#gst-plugins-base-plugins-volume.properties">
|
881
|
+
<ANCHOR id="gst-plugins-base-plugins-volume.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#gst-plugins-base-plugins-volume.description">
|
882
|
+
<ANCHOR id="gst-plugins-base-plugins-volume.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#gst-plugins-base-plugins-volume.details">
|
883
|
+
<ANCHOR id="GstVolume-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#GstVolume-struct">
|
884
|
+
<ANCHOR id="gst-plugins-base-plugins-volume.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#gst-plugins-base-plugins-volume.property-details">
|
885
|
+
<ANCHOR id="GstVolume--mute" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#GstVolume--mute">
|
886
|
+
<ANCHOR id="GstVolume--volume" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html#GstVolume--volume">
|
887
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisdec" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html">
|
888
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisdec.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html#gst-plugins-base-plugins-vorbisdec.synopsis">
|
889
|
+
<ANCHOR id="GstVorbisDec" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html#GstVorbisDec">
|
890
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisdec.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html#gst-plugins-base-plugins-vorbisdec.object-hierarchy">
|
891
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisdec.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html#gst-plugins-base-plugins-vorbisdec.description">
|
892
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisdec.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html#gst-plugins-base-plugins-vorbisdec.details">
|
893
|
+
<ANCHOR id="GstVorbisDec-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html#GstVorbisDec-struct">
|
894
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisdec.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html#gst-plugins-base-plugins-vorbisdec.see-also">
|
895
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisenc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html">
|
896
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisenc.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#gst-plugins-base-plugins-vorbisenc.synopsis">
|
897
|
+
<ANCHOR id="GstVorbisEnc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc">
|
898
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisenc.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#gst-plugins-base-plugins-vorbisenc.object-hierarchy">
|
899
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisenc.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#gst-plugins-base-plugins-vorbisenc.implemented-interfaces">
|
900
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisenc.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#gst-plugins-base-plugins-vorbisenc.properties">
|
901
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisenc.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#gst-plugins-base-plugins-vorbisenc.description">
|
902
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisenc.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#gst-plugins-base-plugins-vorbisenc.details">
|
903
|
+
<ANCHOR id="GstVorbisEnc-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc-struct">
|
904
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisenc.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#gst-plugins-base-plugins-vorbisenc.property-details">
|
905
|
+
<ANCHOR id="GstVorbisEnc--bitrate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--bitrate">
|
906
|
+
<ANCHOR id="GstVorbisEnc--last-message" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--last-message">
|
907
|
+
<ANCHOR id="GstVorbisEnc--managed" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--managed">
|
908
|
+
<ANCHOR id="GstVorbisEnc--max-bitrate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--max-bitrate">
|
909
|
+
<ANCHOR id="GstVorbisEnc--min-bitrate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--min-bitrate">
|
910
|
+
<ANCHOR id="GstVorbisEnc--quality" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--quality">
|
911
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisenc.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html#gst-plugins-base-plugins-vorbisenc.see-also">
|
912
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisparse" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html">
|
913
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisparse.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html#gst-plugins-base-plugins-vorbisparse.synopsis">
|
914
|
+
<ANCHOR id="GstVorbisParse" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html#GstVorbisParse">
|
915
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisparse.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html#gst-plugins-base-plugins-vorbisparse.object-hierarchy">
|
916
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisparse.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html#gst-plugins-base-plugins-vorbisparse.description">
|
917
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisparse.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html#gst-plugins-base-plugins-vorbisparse.details">
|
918
|
+
<ANCHOR id="GstVorbisParse-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html#GstVorbisParse-struct">
|
919
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbisparse.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html#gst-plugins-base-plugins-vorbisparse.see-also">
|
920
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbistag" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html">
|
921
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbistag.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html#gst-plugins-base-plugins-vorbistag.synopsis">
|
922
|
+
<ANCHOR id="GstVorbisTag" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html#GstVorbisTag">
|
923
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbistag.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html#gst-plugins-base-plugins-vorbistag.object-hierarchy">
|
924
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbistag.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html#gst-plugins-base-plugins-vorbistag.implemented-interfaces">
|
925
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbistag.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html#gst-plugins-base-plugins-vorbistag.description">
|
926
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbistag.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html#gst-plugins-base-plugins-vorbistag.details">
|
927
|
+
<ANCHOR id="GstVorbisTag-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html#GstVorbisTag-struct">
|
928
|
+
<ANCHOR id="gst-plugins-base-plugins-vorbistag.see-also" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html#gst-plugins-base-plugins-vorbistag.see-also">
|
929
|
+
<ANCHOR id="gst-plugins-base-plugins-ximagesink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html">
|
930
|
+
<ANCHOR id="gst-plugins-base-plugins-ximagesink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#gst-plugins-base-plugins-ximagesink.synopsis">
|
931
|
+
<ANCHOR id="GstXImageSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink">
|
932
|
+
<ANCHOR id="gst-plugins-base-plugins-ximagesink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#gst-plugins-base-plugins-ximagesink.object-hierarchy">
|
933
|
+
<ANCHOR id="gst-plugins-base-plugins-ximagesink.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#gst-plugins-base-plugins-ximagesink.implemented-interfaces">
|
934
|
+
<ANCHOR id="gst-plugins-base-plugins-ximagesink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#gst-plugins-base-plugins-ximagesink.properties">
|
935
|
+
<ANCHOR id="gst-plugins-base-plugins-ximagesink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#gst-plugins-base-plugins-ximagesink.description">
|
936
|
+
<ANCHOR id="gst-plugins-base-plugins-ximagesink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#gst-plugins-base-plugins-ximagesink.details">
|
937
|
+
<ANCHOR id="GstXImageSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink-struct">
|
938
|
+
<ANCHOR id="gst-plugins-base-plugins-ximagesink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#gst-plugins-base-plugins-ximagesink.property-details">
|
939
|
+
<ANCHOR id="GstXImageSink--display" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink--display">
|
940
|
+
<ANCHOR id="GstXImageSink--pixel-aspect-ratio" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink--pixel-aspect-ratio">
|
941
|
+
<ANCHOR id="GstXImageSink--synchronous" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink--synchronous">
|
942
|
+
<ANCHOR id="GstXImageSink--force-aspect-ratio" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink--force-aspect-ratio">
|
943
|
+
<ANCHOR id="GstXImageSink--handle-events" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink--handle-events">
|
944
|
+
<ANCHOR id="GstXImageSink--handle-expose" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink--handle-expose">
|
945
|
+
<ANCHOR id="GstXImageSink--window-height" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink--window-height">
|
946
|
+
<ANCHOR id="GstXImageSink--window-width" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html#GstXImageSink--window-width">
|
947
|
+
<ANCHOR id="gst-plugins-base-plugins-xvimagesink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html">
|
948
|
+
<ANCHOR id="gst-plugins-base-plugins-xvimagesink.synopsis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#gst-plugins-base-plugins-xvimagesink.synopsis">
|
949
|
+
<ANCHOR id="GstXvImageSink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink">
|
950
|
+
<ANCHOR id="gst-plugins-base-plugins-xvimagesink.object-hierarchy" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#gst-plugins-base-plugins-xvimagesink.object-hierarchy">
|
951
|
+
<ANCHOR id="gst-plugins-base-plugins-xvimagesink.implemented-interfaces" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#gst-plugins-base-plugins-xvimagesink.implemented-interfaces">
|
952
|
+
<ANCHOR id="gst-plugins-base-plugins-xvimagesink.properties" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#gst-plugins-base-plugins-xvimagesink.properties">
|
953
|
+
<ANCHOR id="gst-plugins-base-plugins-xvimagesink.description" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#gst-plugins-base-plugins-xvimagesink.description">
|
954
|
+
<ANCHOR id="gst-plugins-base-plugins-xvimagesink.details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#gst-plugins-base-plugins-xvimagesink.details">
|
955
|
+
<ANCHOR id="GstXvImageSink-struct" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink-struct">
|
956
|
+
<ANCHOR id="gst-plugins-base-plugins-xvimagesink.property-details" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#gst-plugins-base-plugins-xvimagesink.property-details">
|
957
|
+
<ANCHOR id="GstXvImageSink--brightness" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--brightness">
|
958
|
+
<ANCHOR id="GstXvImageSink--contrast" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--contrast">
|
959
|
+
<ANCHOR id="GstXvImageSink--display" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--display">
|
960
|
+
<ANCHOR id="GstXvImageSink--hue" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--hue">
|
961
|
+
<ANCHOR id="GstXvImageSink--pixel-aspect-ratio" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--pixel-aspect-ratio">
|
962
|
+
<ANCHOR id="GstXvImageSink--saturation" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--saturation">
|
963
|
+
<ANCHOR id="GstXvImageSink--synchronous" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--synchronous">
|
964
|
+
<ANCHOR id="GstXvImageSink--force-aspect-ratio" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--force-aspect-ratio">
|
965
|
+
<ANCHOR id="GstXvImageSink--device" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--device">
|
966
|
+
<ANCHOR id="GstXvImageSink--device-name" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--device-name">
|
967
|
+
<ANCHOR id="GstXvImageSink--handle-events" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--handle-events">
|
968
|
+
<ANCHOR id="GstXvImageSink--double-buffer" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--double-buffer">
|
969
|
+
<ANCHOR id="GstXvImageSink--handle-expose" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--handle-expose">
|
970
|
+
<ANCHOR id="GstXvImageSink--autopaint-colorkey" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--autopaint-colorkey">
|
971
|
+
<ANCHOR id="GstXvImageSink--colorkey" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--colorkey">
|
972
|
+
<ANCHOR id="GstXvImageSink--draw-borders" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--draw-borders">
|
973
|
+
<ANCHOR id="GstXvImageSink--window-height" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--window-height">
|
974
|
+
<ANCHOR id="GstXvImageSink--window-width" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--window-width">
|
975
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-adder" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-adder.html">
|
976
|
+
<ANCHOR id="plugin-adder" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-adder.html#plugin-adder">
|
977
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-alsa" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-alsa.html">
|
978
|
+
<ANCHOR id="plugin-alsa" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-alsa.html#plugin-alsa">
|
979
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-app" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-app.html">
|
980
|
+
<ANCHOR id="plugin-app" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-app.html#plugin-app">
|
981
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-audioconvert" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioconvert.html">
|
982
|
+
<ANCHOR id="plugin-audioconvert" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioconvert.html#plugin-audioconvert">
|
983
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-audiorate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiorate.html">
|
984
|
+
<ANCHOR id="plugin-audiorate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiorate.html#plugin-audiorate">
|
985
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-audioresample" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioresample.html">
|
986
|
+
<ANCHOR id="plugin-audioresample" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioresample.html#plugin-audioresample">
|
987
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-audiotestsrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiotestsrc.html">
|
988
|
+
<ANCHOR id="plugin-audiotestsrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiotestsrc.html#plugin-audiotestsrc">
|
989
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-cdparanoia" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-cdparanoia.html">
|
990
|
+
<ANCHOR id="plugin-cdparanoia" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-cdparanoia.html#plugin-cdparanoia">
|
991
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-decodebin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-decodebin.html">
|
992
|
+
<ANCHOR id="plugin-decodebin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-decodebin.html#plugin-decodebin">
|
993
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-encoding" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-encoding.html">
|
994
|
+
<ANCHOR id="plugin-encoding" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-encoding.html#plugin-encoding">
|
995
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-ffmpegcolorspace" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ffmpegcolorspace.html">
|
996
|
+
<ANCHOR id="plugin-ffmpegcolorspace" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ffmpegcolorspace.html#plugin-ffmpegcolorspace">
|
997
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-gdp" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gdp.html">
|
998
|
+
<ANCHOR id="plugin-gdp" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gdp.html#plugin-gdp">
|
999
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-gio" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gio.html">
|
1000
|
+
<ANCHOR id="plugin-gio" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gio.html#plugin-gio">
|
1001
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-gnomevfs" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gnomevfs.html">
|
1002
|
+
<ANCHOR id="plugin-gnomevfs" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gnomevfs.html#plugin-gnomevfs">
|
1003
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-libvisual" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-libvisual.html">
|
1004
|
+
<ANCHOR id="plugin-libvisual" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-libvisual.html#plugin-libvisual">
|
1005
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-ogg" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ogg.html">
|
1006
|
+
<ANCHOR id="plugin-ogg" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ogg.html#plugin-ogg">
|
1007
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-pango" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-pango.html">
|
1008
|
+
<ANCHOR id="plugin-pango" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-pango.html#plugin-pango">
|
1009
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-playback" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-playback.html">
|
1010
|
+
<ANCHOR id="plugin-playback" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-playback.html#plugin-playback">
|
1011
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-subparse" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-subparse.html">
|
1012
|
+
<ANCHOR id="plugin-subparse" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-subparse.html#plugin-subparse">
|
1013
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-tcp" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-tcp.html">
|
1014
|
+
<ANCHOR id="plugin-tcp" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-tcp.html#plugin-tcp">
|
1015
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-theora" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-theora.html">
|
1016
|
+
<ANCHOR id="plugin-theora" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-theora.html#plugin-theora">
|
1017
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-typefindfunctions" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-typefindfunctions.html">
|
1018
|
+
<ANCHOR id="plugin-typefindfunctions" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-typefindfunctions.html#plugin-typefindfunctions">
|
1019
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-uridecodebin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-uridecodebin.html">
|
1020
|
+
<ANCHOR id="plugin-uridecodebin" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-uridecodebin.html#plugin-uridecodebin">
|
1021
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-video4linux" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-video4linux.html">
|
1022
|
+
<ANCHOR id="plugin-video4linux" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-video4linux.html#plugin-video4linux">
|
1023
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-videorate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videorate.html">
|
1024
|
+
<ANCHOR id="plugin-videorate" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videorate.html#plugin-videorate">
|
1025
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-videoscale" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videoscale.html">
|
1026
|
+
<ANCHOR id="plugin-videoscale" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videoscale.html#plugin-videoscale">
|
1027
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-videotestsrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videotestsrc.html">
|
1028
|
+
<ANCHOR id="plugin-videotestsrc" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videotestsrc.html#plugin-videotestsrc">
|
1029
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-volume" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-volume.html">
|
1030
|
+
<ANCHOR id="plugin-volume" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-volume.html#plugin-volume">
|
1031
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-vorbis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-vorbis.html">
|
1032
|
+
<ANCHOR id="plugin-vorbis" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-vorbis.html#plugin-vorbis">
|
1033
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-ximagesink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ximagesink.html">
|
1034
|
+
<ANCHOR id="plugin-ximagesink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ximagesink.html#plugin-ximagesink">
|
1035
|
+
<ANCHOR id="gst-plugins-base-plugins-plugin-xvimagesink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-xvimagesink.html">
|
1036
|
+
<ANCHOR id="plugin-xvimagesink" href="gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-xvimagesink.html#plugin-xvimagesink">
|
1037
|
+
<ANCHOR id="GstPlayBaseBin" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html">
|
1038
|
+
<ANCHOR id="GstPlayBaseBin.synopsis" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin.synopsis">
|
1039
|
+
<ANCHOR id="GstPlayBaseBin.object-hierarchy" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin.object-hierarchy">
|
1040
|
+
<ANCHOR id="GstPlayBaseBin.implemented-interfaces" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin.implemented-interfaces">
|
1041
|
+
<ANCHOR id="GstPlayBaseBin.properties" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin.properties">
|
1042
|
+
<ANCHOR id="GstPlayBaseBin.description" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin.description">
|
1043
|
+
<ANCHOR id="GstPlayBaseBin.details" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin.details">
|
1044
|
+
<ANCHOR id="GstPlayBaseBin-struct" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin-struct">
|
1045
|
+
<ANCHOR id="GstPlayBaseBin.property-details" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin.property-details">
|
1046
|
+
<ANCHOR id="GstPlayBaseBin--connection-speed" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--connection-speed">
|
1047
|
+
<ANCHOR id="GstPlayBaseBin--current-audio" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--current-audio">
|
1048
|
+
<ANCHOR id="GstPlayBaseBin--current-text" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--current-text">
|
1049
|
+
<ANCHOR id="GstPlayBaseBin--current-video" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--current-video">
|
1050
|
+
<ANCHOR id="GstPlayBaseBin--nstreams" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--nstreams">
|
1051
|
+
<ANCHOR id="GstPlayBaseBin--queue-min-threshold" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--queue-min-threshold">
|
1052
|
+
<ANCHOR id="GstPlayBaseBin--queue-size" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--queue-size">
|
1053
|
+
<ANCHOR id="GstPlayBaseBin--queue-threshold" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--queue-threshold">
|
1054
|
+
<ANCHOR id="GstPlayBaseBin--source" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--source">
|
1055
|
+
<ANCHOR id="GstPlayBaseBin--stream-info" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--stream-info">
|
1056
|
+
<ANCHOR id="GstPlayBaseBin--stream-info-value-array" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--stream-info-value-array">
|
1057
|
+
<ANCHOR id="GstPlayBaseBin--subtitle-encoding" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--subtitle-encoding">
|
1058
|
+
<ANCHOR id="GstPlayBaseBin--suburi" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--suburi">
|
1059
|
+
<ANCHOR id="GstPlayBaseBin--uri" href="gst-plugins-base-plugins-0.10/GstPlayBaseBin.html#GstPlayBaseBin--uri">
|