gstreamer 1.1.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +33 -0
- data/Rakefile +213 -0
- data/ext/gstreamer/depend +5 -0
- data/ext/gstreamer/extconf.rb +69 -0
- data/ext/gstreamer/misc.c +63 -0
- data/ext/gstreamer/rbgst-bin.c +458 -0
- data/ext/gstreamer/rbgst-buffer.c +365 -0
- data/ext/gstreamer/rbgst-bus.c +92 -0
- data/ext/gstreamer/rbgst-caps.c +448 -0
- data/ext/gstreamer/rbgst-child-proxy.c +34 -0
- data/ext/gstreamer/rbgst-clock.c +110 -0
- data/ext/gstreamer/rbgst-element-factory.c +249 -0
- data/ext/gstreamer/rbgst-element.c +1088 -0
- data/ext/gstreamer/rbgst-event.c +351 -0
- data/ext/gstreamer/rbgst-ghost-pad.c +45 -0
- data/ext/gstreamer/rbgst-index-factory.c +69 -0
- data/ext/gstreamer/rbgst-install-plugins-context.c +86 -0
- data/ext/gstreamer/rbgst-install-plugins-return.c +45 -0
- data/ext/gstreamer/rbgst-install-plugins.c +125 -0
- data/ext/gstreamer/rbgst-message.c +787 -0
- data/ext/gstreamer/rbgst-mini-object.c +220 -0
- data/ext/gstreamer/rbgst-object.c +83 -0
- data/ext/gstreamer/rbgst-pad-template.c +125 -0
- data/ext/gstreamer/rbgst-pad.c +338 -0
- data/ext/gstreamer/rbgst-pipeline.c +91 -0
- data/ext/gstreamer/rbgst-plugin-feature.c +133 -0
- data/ext/gstreamer/rbgst-plugin.c +162 -0
- data/ext/gstreamer/rbgst-private.c +88 -0
- data/ext/gstreamer/rbgst-private.h +97 -0
- data/ext/gstreamer/rbgst-query.c +291 -0
- data/ext/gstreamer/rbgst-seek.c +39 -0
- data/ext/gstreamer/rbgst-static-caps.c +51 -0
- data/ext/gstreamer/rbgst-static-pad-template.c +65 -0
- data/ext/gstreamer/rbgst-structure.c +302 -0
- data/ext/gstreamer/rbgst-system-clock.c +48 -0
- data/ext/gstreamer/rbgst-type-find-factory.c +125 -0
- data/ext/gstreamer/rbgst-value.c +529 -0
- data/ext/gstreamer/rbgst-x-overlay.c +133 -0
- data/ext/gstreamer/rbgst.c +237 -0
- data/ext/gstreamer/rbgst.h +197 -0
- data/ext/gstreamer/rbgstclockentry.c +271 -0
- data/ext/gstreamer/rbgstformat.c +162 -0
- data/ext/gstreamer/rbgstindex.c +317 -0
- data/ext/gstreamer/rbgstindexentry.c +99 -0
- data/ext/gstreamer/rbgstparse.c +69 -0
- data/ext/gstreamer/rbgstquerytype.c +162 -0
- data/ext/gstreamer/rbgstregistry.c +288 -0
- data/ext/gstreamer/rbgsttag.c +113 -0
- data/ext/gstreamer/rbgsttagsetter.c +53 -0
- data/ext/gstreamer/rbgstxml.c +192 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gstreamer.so +0 -0
- data/lib/1.9/gstreamer.so +0 -0
- data/lib/gst.rb +33 -0
- data/sample/audio-player.rb +54 -0
- data/sample/gst-inspect.rb +417 -0
- data/sample/install-plugins.rb +40 -0
- data/sample/media-type.rb +55 -0
- data/sample/media-type2.rb +268 -0
- data/sample/ogg-audio-player.rb +54 -0
- data/sample/type-find.rb +46 -0
- data/sample/video-player.rb +57 -0
- data/sample/xml-player.rb +60 -0
- data/test/gst-test-utils.rb +18 -0
- data/test/run-test.rb +25 -0
- data/test/test_bin.rb +167 -0
- data/test/test_buffer.rb +177 -0
- data/test/test_caps.rb +24 -0
- data/test/test_element.rb +85 -0
- data/test/test_element_factory.rb +28 -0
- data/test/test_event.rb +10 -0
- data/test/test_index_factory.rb +7 -0
- data/test/test_install-plugins.rb +18 -0
- data/test/test_message.rb +191 -0
- data/test/test_mini_object.rb +38 -0
- data/test/test_object.rb +10 -0
- data/test/test_pad.rb +68 -0
- data/test/test_plugin.rb +6 -0
- data/test/test_plugin_feature.rb +20 -0
- data/test/test_seek.rb +17 -0
- data/test/test_static_caps.rb +18 -0
- data/test/test_static_pad_template.rb +16 -0
- data/test/test_structure.rb +159 -0
- data/test/test_thread_handling.rb +58 -0
- data/test/test_type_find_factory.rb +8 -0
- data/test/test_value.rb +69 -0
- data/vendor/local/bin/cjpeg.exe +0 -0
- data/vendor/local/bin/djpeg.exe +0 -0
- data/vendor/local/bin/gst-discoverer-0.10.exe +0 -0
- data/vendor/local/bin/gst-feedback-0.10 +115 -0
- data/vendor/local/bin/gst-feedback.exe +0 -0
- data/vendor/local/bin/gst-inspect-0.10.exe +0 -0
- data/vendor/local/bin/gst-inspect.exe +0 -0
- data/vendor/local/bin/gst-launch-0.10.exe +0 -0
- data/vendor/local/bin/gst-launch.exe +0 -0
- data/vendor/local/bin/gst-typefind-0.10.exe +0 -0
- data/vendor/local/bin/gst-typefind.exe +0 -0
- data/vendor/local/bin/gst-visualise-0.10 +77 -0
- data/vendor/local/bin/gst-xmlinspect-0.10.exe +0 -0
- data/vendor/local/bin/gst-xmlinspect.exe +0 -0
- data/vendor/local/bin/gst-xmllaunch-0.10.exe +0 -0
- data/vendor/local/bin/gst-xmllaunch.exe +0 -0
- data/vendor/local/bin/jpegtran.exe +0 -0
- data/vendor/local/bin/libgstapp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstaudio-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstbase-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstbasevideo-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstcdda-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstcheck-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstcontroller-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstdataprotocol-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstfft-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstinterfaces-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstnet-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstnetbuffer-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstpbutils-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstphotography-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstreamer-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstriff-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstrtp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstrtsp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstsdp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstsignalprocessor-0.10-0.dll +0 -0
- data/vendor/local/bin/libgsttag-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstvideo-0.10-0.dll +0 -0
- data/vendor/local/bin/libjpeg-8.dll +0 -0
- data/vendor/local/bin/libogg-0.dll +0 -0
- data/vendor/local/bin/libsoup-2.4-1.dll +0 -0
- data/vendor/local/bin/libspeex-1.dll +0 -0
- data/vendor/local/bin/libspeexdsp-1.dll +0 -0
- data/vendor/local/bin/libtheora-0.dll +0 -0
- data/vendor/local/bin/libtheoradec-1.dll +0 -0
- data/vendor/local/bin/libtheoraenc-1.dll +0 -0
- data/vendor/local/bin/libvorbis-0.dll +0 -0
- data/vendor/local/bin/libvorbisenc-2.dll +0 -0
- data/vendor/local/bin/libvorbisfile-3.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/rdjpgcom.exe +0 -0
- data/vendor/local/bin/speexdec.exe +0 -0
- data/vendor/local/bin/speexenc.exe +0 -0
- data/vendor/local/bin/wrjpgcom.exe +0 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/include/gstreamer-0.10/gst/app/gstappbuffer.h +64 -0
- data/vendor/local/include/gstreamer-0.10/gst/app/gstappsink.h +141 -0
- data/vendor/local/include/gstreamer-0.10/gst/app/gstappsrc.h +153 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/audio-enumtypes.h +29 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/audio.h +185 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudioclock.h +108 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiofilter.h +96 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosink.h +102 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosrc.h +99 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosink.h +177 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosrc.h +146 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstringbuffer.h +408 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/mixerutils.h +50 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/multichannel.h +115 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstadapter.h +106 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbaseparse.h +314 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesink.h +247 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesrc.h +261 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbasetransform.h +277 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbitreader.h +314 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbytereader.h +527 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbytewriter.h +361 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstcollectpads.h +223 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstdataqueue.h +184 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstpushsrc.h +68 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gsttypefindhelper.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/cdda/gstcddabasesrc.h +157 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/gstbufferstraw.h +35 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/gstcheck.h +427 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/gstconsistencychecker.h +48 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/internal-check.h +418 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontroller.h +155 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontrolsource.h +163 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstinterpolationcontrolsource.h +109 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstlfocontrolsource.h +102 -0
- data/vendor/local/include/gstreamer-0.10/gst/dataprotocol/dataprotocol.h +196 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstfft.h +49 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf32.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf64.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts16.h +74 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts32.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/floatcast/floatcast.h +102 -0
- data/vendor/local/include/gstreamer-0.10/gst/glib-compat.h +37 -0
- data/vendor/local/include/gstreamer-0.10/gst/gst.h +106 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstatomicqueue.h +55 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbin.h +190 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbuffer.h +510 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbufferlist.h +243 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbus.h +192 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstcaps.h +296 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstchildproxy.h +91 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstclock.h +570 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstcompat.h +43 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstconfig.h +235 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstdatetime.h +66 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstdebugutils.h +109 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstelement.h +827 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstelementfactory.h +314 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstenumtypes.h +211 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsterror.h +255 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstevent.h +522 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstfilter.h +44 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstformat.h +113 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstghostpad.h +111 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstindex.h +426 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstindexfactory.h +76 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstinfo.h +1549 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstinterface.h +81 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstiterator.h +267 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstmacros.h +54 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstmarshal.h +164 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstmessage.h +534 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstminiobject.h +223 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstobject.h +354 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpad.h +1032 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpadtemplate.h +196 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstparamspecs.h +128 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstparse.h +119 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpipeline.h +115 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstplugin.h +411 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpluginfeature.h +171 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpoll.h +97 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpreset.h +99 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstquery.h +342 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstregistry.h +237 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstsegment.h +109 -0
- data/vendor/local/include/gstreamer-0.10/gst/gststructure.h +254 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstsystemclock.h +89 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttaglist.h +1034 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttagsetter.h +100 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttask.h +205 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttaskpool.h +103 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttrace.h +251 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttypefind.h +122 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttypefindfactory.h +81 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsturi.h +156 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstutils.h +1198 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstvalue.h +594 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstversion.h +90 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstxml.h +113 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalance.h +112 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalancechannel.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/interfaces-enumtypes.h +49 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixer.h +231 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixeroptions.h +91 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixertrack.h +134 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/navigation.h +257 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography-enumtypes.h +37 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography.h +387 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/propertyprobe.h +115 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/streamvolume.h +87 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/tuner.h +128 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunerchannel.h +113 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunernorm.h +67 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/videoorientation.h +94 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/xoverlay.h +121 -0
- data/vendor/local/include/gstreamer-0.10/gst/math-compat.h +84 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnet.h +30 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnetclientclock.h +105 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimepacket.h +78 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimeprovider.h +110 -0
- data/vendor/local/include/gstreamer-0.10/gst/netbuffer/gstnetbuffer.h +129 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/codec-utils.h +63 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/descriptions.h +58 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-profile.h +187 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-target.h +147 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstdiscoverer.h +266 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstpluginsbaseversion.h +86 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/install-plugins.h +144 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/missing-plugins.h +77 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils-enumtypes.h +23 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils.h +42 -0
- data/vendor/local/include/gstreamer-0.10/gst/riff/riff-ids.h +517 -0
- data/vendor/local/include/gstreamer-0.10/gst/riff/riff-media.h +65 -0
- data/vendor/local/include/gstreamer-0.10/gst/riff/riff-read.h +87 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpaudiopayload.h +98 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpdepayload.h +141 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertppayload.h +162 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtcpbuffer.h +286 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtpbuffer.h +166 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtppayloads.h +193 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsp-enumtypes.h +35 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspbase64.h +37 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspconnection.h +209 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspdefs.h +397 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspextension.h +97 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspmessage.h +187 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsprange.h +121 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsptransport.h +174 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspurl.h +103 -0
- data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdp.h +58 -0
- data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdpmessage.h +423 -0
- data/vendor/local/include/gstreamer-0.10/gst/signalprocessor/gstsignalprocessor.h +142 -0
- data/vendor/local/include/gstreamer-0.10/gst/tag/gsttagdemux.h +144 -0
- data/vendor/local/include/gstreamer-0.10/gst/tag/tag.h +549 -0
- data/vendor/local/include/gstreamer-0.10/gst/tag/xmpwriter.h +68 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideocodec.h +195 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideodecoder.h +182 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideoencoder.h +128 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstvideofilter.h +58 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstvideosink.h +132 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/video-enumtypes.h +19 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/video.h +501 -0
- data/vendor/local/include/jconfig.h +46 -0
- data/vendor/local/include/jerror.h +304 -0
- data/vendor/local/include/jmorecfg.h +371 -0
- data/vendor/local/include/jpeglib.h +1158 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-address.h +102 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-basic.h +56 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-digest.h +59 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain.h +99 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth.h +90 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar-text.h +44 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar.h +68 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie.h +81 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-date.h +64 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-enum-types.h +63 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-form.h +53 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-headers.h +59 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-logger.h +80 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-message-body.h +81 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-message-headers.h +133 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-message.h +163 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-method.h +77 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-misc.h +52 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-multipart.h +51 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-portability.h +28 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-resolver.h +57 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h +57 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-server.h +113 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session-async.h +44 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session-feature.h +51 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session-sync.h +44 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session.h +109 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-socket.h +115 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-status.h +102 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-types.h +32 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-uri.h +90 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-value-utils.h +84 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-xmlrpc.h +83 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup.h +45 -0
- data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +304 -0
- data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
- data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
- data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
- data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
- data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
- data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
- data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
- data/vendor/local/include/libxml2/libxml/dict.h +69 -0
- data/vendor/local/include/libxml2/libxml/encoding.h +226 -0
- data/vendor/local/include/libxml2/libxml/entities.h +150 -0
- data/vendor/local/include/libxml2/libxml/globals.h +502 -0
- data/vendor/local/include/libxml2/libxml/hash.h +233 -0
- data/vendor/local/include/libxml2/libxml/list.h +137 -0
- data/vendor/local/include/libxml2/libxml/nanoftp.h +143 -0
- data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
- data/vendor/local/include/libxml2/libxml/parser.h +1235 -0
- data/vendor/local/include/libxml2/libxml/parserInternals.h +611 -0
- data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
- data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
- data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
- data/vendor/local/include/libxml2/libxml/threads.h +84 -0
- data/vendor/local/include/libxml2/libxml/tree.h +1252 -0
- data/vendor/local/include/libxml2/libxml/uri.h +94 -0
- data/vendor/local/include/libxml2/libxml/valid.h +458 -0
- data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
- data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
- data/vendor/local/include/libxml2/libxml/xmlIO.h +360 -0
- data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
- data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
- data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
- data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
- data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
- data/vendor/local/include/libxml2/libxml/xmlreader.h +424 -0
- data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
- data/vendor/local/include/libxml2/libxml/xmlsave.h +87 -0
- data/vendor/local/include/libxml2/libxml/xmlschemas.h +218 -0
- data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
- data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
- data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
- data/vendor/local/include/libxml2/libxml/xmlversion.h +458 -0
- data/vendor/local/include/libxml2/libxml/xmlwriter.h +485 -0
- data/vendor/local/include/libxml2/libxml/xpath.h +546 -0
- data/vendor/local/include/libxml2/libxml/xpathInternals.h +630 -0
- data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
- data/vendor/local/include/ogg/config_types.h +25 -0
- data/vendor/local/include/ogg/ogg.h +210 -0
- data/vendor/local/include/ogg/os_types.h +147 -0
- data/vendor/local/include/speex/speex.h +424 -0
- data/vendor/local/include/speex/speex_bits.h +174 -0
- data/vendor/local/include/speex/speex_buffer.h +68 -0
- data/vendor/local/include/speex/speex_callbacks.h +134 -0
- data/vendor/local/include/speex/speex_config_types.h +11 -0
- data/vendor/local/include/speex/speex_echo.h +170 -0
- data/vendor/local/include/speex/speex_header.h +94 -0
- data/vendor/local/include/speex/speex_jitter.h +197 -0
- data/vendor/local/include/speex/speex_preprocess.h +219 -0
- data/vendor/local/include/speex/speex_resampler.h +340 -0
- data/vendor/local/include/speex/speex_stereo.h +91 -0
- data/vendor/local/include/speex/speex_types.h +126 -0
- data/vendor/local/include/theora/codec.h +591 -0
- data/vendor/local/include/theora/theora.h +784 -0
- data/vendor/local/include/theora/theoradec.h +325 -0
- data/vendor/local/include/theora/theoraenc.h +486 -0
- data/vendor/local/include/vorbis/codec.h +243 -0
- data/vendor/local/include/vorbis/vorbisenc.h +436 -0
- data/vendor/local/include/vorbis/vorbisfile.h +206 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadder.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadder.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadder.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaiff.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalaw.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalpha.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstannodex.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapetag.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstasfmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstauparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautodetect.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstavi.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstavi.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstavi.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstbayer.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcairo.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcog.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcog.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcog.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcutter.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebug.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdtmf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsteffectv.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstencodebin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstequalizer.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfestival.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflv.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflv.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflv.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflxdec.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfragmented.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfreeze.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgio.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgio.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgio.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsth264parse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsticydemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3demux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3tag.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterlace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterleave.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstisomp4.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstivfparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpeg.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlevel.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstliveadder.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmatroska.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmulaw.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultifile.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultipart.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmve.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmve.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmve.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmxf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnsf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstogg.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstogg.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstogg.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpango.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpango.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpango.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstplaybin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpng.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpng.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpng.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpnm.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpostproc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrawparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreal.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreal.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreal.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtsp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdi.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsiren.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsmpte.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspectrum.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeed.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeex.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgststereo.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgststereo.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgststereo.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubenc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttheora.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttta.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttta.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttta.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstudp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstudp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstudp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideobox.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideorate.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvmnc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvolume.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvorbis.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavenc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4menc.la +41 -0
- data/vendor/local/lib/libgstapp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstapp-0.10.la +41 -0
- data/vendor/local/lib/libgstaudio-0.10.a +0 -0
- data/vendor/local/lib/libgstaudio-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstaudio-0.10.la +41 -0
- data/vendor/local/lib/libgstbase-0.10.a +0 -0
- data/vendor/local/lib/libgstbase-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstbase-0.10.la +41 -0
- data/vendor/local/lib/libgstbasevideo-0.10.a +0 -0
- data/vendor/local/lib/libgstbasevideo-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstbasevideo-0.10.la +41 -0
- data/vendor/local/lib/libgstcdda-0.10.a +0 -0
- data/vendor/local/lib/libgstcdda-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstcdda-0.10.la +41 -0
- data/vendor/local/lib/libgstcheck-0.10.a +0 -0
- data/vendor/local/lib/libgstcheck-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstcheck-0.10.la +41 -0
- data/vendor/local/lib/libgstcontroller-0.10.a +0 -0
- data/vendor/local/lib/libgstcontroller-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstcontroller-0.10.la +41 -0
- data/vendor/local/lib/libgstdataprotocol-0.10.a +0 -0
- data/vendor/local/lib/libgstdataprotocol-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstdataprotocol-0.10.la +41 -0
- data/vendor/local/lib/libgstfft-0.10.a +0 -0
- data/vendor/local/lib/libgstfft-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstfft-0.10.la +41 -0
- data/vendor/local/lib/libgstinterfaces-0.10.a +0 -0
- data/vendor/local/lib/libgstinterfaces-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstinterfaces-0.10.la +41 -0
- data/vendor/local/lib/libgstnet-0.10.a +0 -0
- data/vendor/local/lib/libgstnet-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstnet-0.10.la +41 -0
- data/vendor/local/lib/libgstnetbuffer-0.10.a +0 -0
- data/vendor/local/lib/libgstnetbuffer-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstnetbuffer-0.10.la +41 -0
- data/vendor/local/lib/libgstpbutils-0.10.a +0 -0
- data/vendor/local/lib/libgstpbutils-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstpbutils-0.10.la +41 -0
- data/vendor/local/lib/libgstphotography-0.10.a +0 -0
- data/vendor/local/lib/libgstphotography-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstphotography-0.10.la +41 -0
- data/vendor/local/lib/libgstreamer-0.10.a +0 -0
- data/vendor/local/lib/libgstreamer-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstreamer-0.10.la +41 -0
- data/vendor/local/lib/libgstriff-0.10.a +0 -0
- data/vendor/local/lib/libgstriff-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstriff-0.10.la +41 -0
- data/vendor/local/lib/libgstrtp-0.10.a +0 -0
- data/vendor/local/lib/libgstrtp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstrtp-0.10.la +41 -0
- data/vendor/local/lib/libgstrtsp-0.10.a +0 -0
- data/vendor/local/lib/libgstrtsp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstrtsp-0.10.la +41 -0
- data/vendor/local/lib/libgstsdp-0.10.a +0 -0
- data/vendor/local/lib/libgstsdp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstsdp-0.10.la +41 -0
- data/vendor/local/lib/libgstsignalprocessor-0.10.a +0 -0
- data/vendor/local/lib/libgstsignalprocessor-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstsignalprocessor-0.10.la +41 -0
- data/vendor/local/lib/libgsttag-0.10.a +0 -0
- data/vendor/local/lib/libgsttag-0.10.dll.a +0 -0
- data/vendor/local/lib/libgsttag-0.10.la +41 -0
- data/vendor/local/lib/libgstvideo-0.10.a +0 -0
- data/vendor/local/lib/libgstvideo-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstvideo-0.10.la +41 -0
- data/vendor/local/lib/libjpeg.dll.a +0 -0
- data/vendor/local/lib/libogg.a +0 -0
- data/vendor/local/lib/libogg.dll.a +0 -0
- data/vendor/local/lib/libogg.la +41 -0
- data/vendor/local/lib/libsoup-2.4.dll.a +0 -0
- data/vendor/local/lib/libspeex.a +0 -0
- data/vendor/local/lib/libspeex.dll.a +0 -0
- data/vendor/local/lib/libspeex.la +35 -0
- data/vendor/local/lib/libspeexdsp.a +0 -0
- data/vendor/local/lib/libspeexdsp.dll.a +0 -0
- data/vendor/local/lib/libspeexdsp.la +35 -0
- data/vendor/local/lib/libtheora.a +0 -0
- data/vendor/local/lib/libtheora.dll.a +0 -0
- data/vendor/local/lib/libtheora.la +41 -0
- data/vendor/local/lib/libtheoradec.a +0 -0
- data/vendor/local/lib/libtheoradec.dll.a +0 -0
- data/vendor/local/lib/libtheoradec.la +41 -0
- data/vendor/local/lib/libtheoraenc.a +0 -0
- data/vendor/local/lib/libtheoraenc.dll.a +0 -0
- data/vendor/local/lib/libtheoraenc.la +41 -0
- data/vendor/local/lib/libvorbis.a +0 -0
- data/vendor/local/lib/libvorbis.dll.a +0 -0
- data/vendor/local/lib/libvorbis.la +41 -0
- data/vendor/local/lib/libvorbisenc.a +0 -0
- data/vendor/local/lib/libvorbisenc.dll.a +0 -0
- data/vendor/local/lib/libvorbisenc.la +41 -0
- data/vendor/local/lib/libvorbisfile.a +0 -0
- data/vendor/local/lib/libvorbisfile.dll.a +0 -0
- data/vendor/local/lib/libvorbisfile.la +41 -0
- data/vendor/local/lib/libxml2.def +1657 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.lib +0 -0
- data/vendor/local/lib/pkgconfig/gstreamer-0.10.pc +17 -0
- data/vendor/local/lib/pkgconfig/gstreamer-app-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-audio-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-base-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-cdda-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-check-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-controller-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-dataprotocol-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-fft-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-floatcast-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-interfaces-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-net-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-netbuffer-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-pbutils-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-plugins-bad-0.10.pc +12 -0
- data/vendor/local/lib/pkgconfig/gstreamer-plugins-base-0.10.pc +14 -0
- data/vendor/local/lib/pkgconfig/gstreamer-riff-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-rtp-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-rtsp-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-sdp-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-tag-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-video-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/libsoup-2.4.pc +12 -0
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/ogg.pc +14 -0
- data/vendor/local/lib/pkgconfig/speex.pc +15 -0
- data/vendor/local/lib/pkgconfig/speexdsp.pc +15 -0
- data/vendor/local/lib/pkgconfig/theora.pc +14 -0
- data/vendor/local/lib/pkgconfig/theoradec.pc +14 -0
- data/vendor/local/lib/pkgconfig/theoraenc.pc +14 -0
- data/vendor/local/lib/pkgconfig/vorbis.pc +14 -0
- data/vendor/local/lib/pkgconfig/vorbisenc.pc +14 -0
- data/vendor/local/lib/pkgconfig/vorbisfile.pc +14 -0
- data/vendor/local/libexec/gstreamer-0.10/gst-plugin-scanner.exe +0 -0
- data/vendor/local/manifest/jpeg-dev_8-1_win32.mft +18 -0
- data/vendor/local/manifest/jpeg_8-1_win32.mft +2 -0
- data/vendor/local/manifest/libsoup-dev_2.26.3-1_win32.mft +41 -0
- data/vendor/local/manifest/libsoup_2.26.3-1_win32.mft +2 -0
- data/vendor/local/manifest/libxml2-dev_2.7.7-1_win32.mft +267 -0
- data/vendor/local/manifest/libxml2_2.7.7-1_win32.mft +2 -0
- data/vendor/local/share/aclocal/gst-element-check-0.10.m4 +23 -0
- data/vendor/local/share/aclocal/libxml.m4 +188 -0
- data/vendor/local/share/aclocal/ogg.m4 +116 -0
- data/vendor/local/share/aclocal/speex.m4 +104 -0
- data/vendor/local/share/aclocal/vorbis.m4 +136 -0
- data/vendor/local/share/doc/libogg-1.3.0/framing.html +429 -0
- data/vendor/local/share/doc/libogg-1.3.0/index.html +105 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg-multiplex.html +446 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/bitpacking.html +103 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/datastructures.html +59 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/decoding.html +104 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/encoding.html +76 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/general.html +109 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/index.html +39 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet.html +75 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet_clear.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page.html +75 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_bos.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_checksum_set.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_continued.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_eos.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_granulepos.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_packets.html +75 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_pageno.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_serialno.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_version.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_clear.html +61 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_destroy.html +71 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_eos.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_flush.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_init.html +66 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetin.html +72 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetout.html +85 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetpeek.html +85 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pagein.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout.html +84 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout_fill.html +89 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset.html +61 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset_serialno.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_state.html +121 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_buffer.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_clear.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_destroy.html +68 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_init.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageout.html +77 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageseek.html +68 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_reset.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_state.html +77 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_wrote.html +73 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv1.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bits.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_buffer.html +66 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bytes.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_get_buffer.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look.html +66 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look1.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read1.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_readinit.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_reset.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_write.html +68 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writealign.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeclear.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writecopy.html +69 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeinit.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writetrunc.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/overview.html +44 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/reference.html +98 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/style.css +7 -0
- data/vendor/local/share/doc/libogg-1.3.0/oggstream.html +594 -0
- data/vendor/local/share/doc/libogg-1.3.0/rfc3533.txt +843 -0
- data/vendor/local/share/doc/libogg-1.3.0/rfc5334.txt +787 -0
- data/vendor/local/share/doc/libogg-1.3.0/skeleton.html +222 -0
- data/vendor/local/share/doc/libogg-1.3.0/stream.png +0 -0
- data/vendor/local/share/doc/libogg-1.3.0/vorbisword2.png +0 -0
- data/vendor/local/share/doc/libogg-1.3.0/white-ogg.png +0 -0
- data/vendor/local/share/doc/libogg-1.3.0/white-xifish.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/color.html +602 -0
- data/vendor/local/share/doc/libtheora-1.1.1/doxygen-build.stamp +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.txt +1400 -0
- data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.xml +1146 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/annotated.html +82 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/bc_s.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/classes.html +79 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/closed.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h.html +469 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h_source.html +233 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.css +949 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/files.html +75 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/functions.html +385 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/functions_vars.html +385 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals.html +502 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_defs.html +247 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_enum.html +90 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_eval.html +129 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_func.html +247 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_type.html +102 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_vars.html +84 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__basefuncs.html +568 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__decfuncs.html +402 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__encfuncs.html +352 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__oldfuncs.html +1662 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/index.html +76 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/modules.html +69 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/nav_f.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/nav_h.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/open.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__comment.html +158 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__huff__code.html +122 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__img__plane.html +155 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__info.html +397 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__info.html +171 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__ranges.html +139 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__stripe__callback.html +121 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__comment.html +157 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__info.html +527 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__state.html +142 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structyuv__buffer.html +243 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_a.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.gif +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_h.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_l.gif +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_r.gif +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_s.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tabs.css +59 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h.html +258 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h_source.html +283 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h.html +405 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h_source.html +146 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h.html +716 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h_source.html +155 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/Makefile +39 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/annotated.tex +14 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/codec_8h.tex +273 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/doxygen.sty +482 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/files.tex +7 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__basefuncs.tex +336 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__decfuncs.tex +223 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__encfuncs.tex +195 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__oldfuncs.tex +1046 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/index.tex +12 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/modules.tex +7 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/refman.tex +76 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__comment.tex +67 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__huff__code.tex +45 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__img__plane.tex +63 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__info.tex +189 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__info.tex +95 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__ranges.tex +54 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__stripe__callback.tex +45 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__comment.tex +67 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__info.tex +233 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__state.tex +45 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structyuv__buffer.tex +114 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/theora_8h.tex +191 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/theoradec_8h.tex +251 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/theoraenc_8h.tex +512 -0
- data/vendor/local/share/doc/libtheora-1.1.1/vp3-format.txt +1305 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/doxygen-build.stamp +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/eightphase.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/evenlsp.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/fish_xiph_org.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/floor1_inverse_dB_table.html +154 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/floorval.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/fourphase.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/framing.html +431 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/helper.html +239 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/index.html +114 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/index.html +44 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/overview.html +136 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/reference.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/return.html +79 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/style.css +7 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_blockout.html +79 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_buffer.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_headerout.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_init.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_wrote.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_addblock.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_flushpacket.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block.html +60 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_clear.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_init.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add.html +70 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add_tag.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_clear.html +69 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_init.html +72 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query.html +72 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query_count.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_commentheader_out.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_clear.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_state.html +57 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_granule_time.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_blocksize.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_clear.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_init.html +62 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_packet_blocksize.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis.html +70 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_blockin.html +69 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate.html +68 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate_p.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_headerin.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_idheader.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_init.html +69 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_lapout.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_pcmout.html +75 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_read.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_restart.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_trackonly.html +71 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_version_string.html +56 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/lspmap.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/oddlsp.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/oggstream.html +234 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/programming.html +554 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.txt +1459 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.xml +1176 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/squarepolar.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/stereo.html +419 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/stream.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/v-comment.html +285 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-clip.txt +139 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-errors.txt +103 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-fidelity.html +180 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis.html +234 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/changes.html +104 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/examples.html +133 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/index.html +40 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage2_arg.html +92 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage_arg.html +92 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/overview.html +382 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/reference.html +54 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/style.css +7 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_ctl.html +183 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init.html +88 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init_vbr.html +81 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_init.html +88 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_managed.html +102 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_vbr.html +90 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/OggVorbis_File.html +137 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/callbacks.html +121 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chaining_example_c.html +90 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chainingexample.html +175 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/crosslap.html +121 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/datastructures.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/decoding.html +92 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/example.html +208 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/exampleindex.html +39 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/fileinfo.html +95 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/index.html +49 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/initialization.html +118 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate.html +72 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate_instant.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_callbacks.html +117 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_clear.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_comment.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_crosslap.html +100 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_fopen.html +124 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_info.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open.html +183 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open_callbacks.html +147 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_lap.html +103 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page.html +84 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page_lap.html +112 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_tell.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_total.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek_lap.html +110 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_tell.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_total.html +68 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read.html +148 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_filter.html +114 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_float.html +105 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_seekable.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_serialnumber.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_streams.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test.html +101 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_callbacks.html +111 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_open.html +82 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek.html +82 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_lap.html +105 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page_lap.html +112 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_tell.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_total.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/overview.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/reference.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekexample.html +152 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking.html +107 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_example_c.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_test_c.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekingexample.html +203 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/style.css +7 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/threads.html +50 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/vorbisfile_example_c.html +106 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisword2.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/wait.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/white-xifish.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/Copyright +27 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/testHTML.c +880 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/testSAX.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/testXPath.c +227 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/xmllint.c +3722 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/DOM.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/FAQ.html +282 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/encoding.html +206 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xml +751 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xsl +174 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/book1.html +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/index.html +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/left.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-DOCBparser.html +51 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLparser.html +182 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLtree.html +73 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX.html +125 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX2.html +128 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-c14n.html +38 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-catalog.html +142 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-chvalid.html +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-debugXML.html +120 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-dict.html +49 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-encoding.html +118 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-entities.html +79 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-globals.html +152 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-hash.html +116 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-lib.html +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-list.html +120 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanoftp.html +92 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanohttp.html +65 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parser.html +555 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parserInternals.html +319 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-pattern.html +76 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-relaxng.html +162 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schemasInternals.html +373 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schematron.html +81 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-threads.html +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-tree.html +958 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-uri.html +73 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-valid.html +289 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xinclude.html +59 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xlink.html +82 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlIO.html +206 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlautomata.html +85 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlerror.html +862 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlexports.html +20 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmemory.html +107 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmodule.html +38 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlreader.html +327 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlregexp.html +143 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlsave.html +59 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemas.html +173 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemastypes.html +123 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlstring.html +108 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlunicode.html +512 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlversion.html +60 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlwriter.html +258 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpath.html +307 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpathInternals.html +394 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpointer.html +83 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/right.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io1.c +166 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io2.c +58 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io2.res +2 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/libxml.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse1.c +56 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse2.c +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse3.c +60 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse4.c +143 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.c +107 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.res +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader2.c +122 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.c +120 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.res +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.c +122 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.res +3 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/redhat.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/structure.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/test1.xml +1 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/test2.xml +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/test3.xml +39 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/testWriter.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.c +94 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.res +4 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.c +118 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.res +18 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tst.xml +7 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apa.html +8 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apb.html +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apc.html +82 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apd.html +76 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ape.html +78 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apf.html +67 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apg.html +75 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/aph.html +76 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/api.html +4 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s02.html +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s03.html +47 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s04.html +54 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s05.html +55 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s06.html +35 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s07.html +30 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s08.html +38 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s09.html +63 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddattribute.c +64 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddkeyword.c +75 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeconvert.c +73 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includegetattribute.c +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includekeyword.c +79 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includexpath.c +74 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ix01.html +1 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/xmltutorial.pdf +1336 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/w3c.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/writer.xml +2 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xml.html +5344 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.c +250 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.c +190 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.res +30 -0
- data/vendor/local/share/doc/speex/manual.pdf +0 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/glib-2.0/schemas/org.freedesktop.gstreamer-0.10.default-elements.gschema.xml +94 -0
- data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer10Bands.prs +174 -0
- data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer3Bands.prs +14 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/annotation-glossary.html +77 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-deprecated.html +132 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-full.html +5106 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/compiling.html +64 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp +1398 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp2 +1723 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsink.html +568 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsrc.html +664 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-encoding-profile.html +1606 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudio.html +400 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudioclock.html +317 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiofilter.html +165 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiomixerutils.html +144 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosink.html +202 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosrc.html +203 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosink.html +447 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosrc.html +402 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpaudiopayload.html +377 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpdepayload.html +260 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertppayload.html +469 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcddabasesrc.html +283 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalance.html +346 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalancechannel.html +156 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstdiscoverer.html +1457 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfft.html +130 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf32.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf64.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts16.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts32.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfloatcast.html +105 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixer.html +956 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixeroptions.html +108 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixertrack.html +259 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmultichannel.html +398 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnavigation.html +1166 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnetbuffer.html +498 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutils.html +225 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilscodecutils.html +469 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsdescriptions.html +297 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsinstallplugins.html +821 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsmissingplugins.html +510 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpropertyprobe.html +449 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstriff.html +2092 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstringbuffer.html +1480 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtcpbuffer.html +1985 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtpbuffer.html +1959 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtppayloads.html +391 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspbase64.html +121 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspconnection.html +1421 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspdefs.html +879 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspextension.html +104 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspmessage.html +988 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsprange.html +269 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsptransport.html +499 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspurl.html +315 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstsdpmessage.html +2802 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gststreamvolume.html +308 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttag.html +829 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagdemux.html +248 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagid3.html +252 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttaglanguagecodes.html +243 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagvorbis.html +272 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagxmp.html +119 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttuner.html +723 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunerchannel.html +264 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunernorm.html +99 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideo.html +1942 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideofilter.html +95 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideoorientation.html +406 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideosink.html +253 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstxoverlay.html +864 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-app.html +48 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-audio.html +68 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-base-utils.html +60 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-cdda.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-ffft.html +57 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-floatcast.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-interfaces.html +82 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-libs-hierarchy.html +76 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-netbuffer.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-plugins-base.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-riff.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtp.html +55 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtsp.html +61 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-sdp.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-tag.html +59 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-video.html +46 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.html +284 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.sgml +1973 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/GstPlayBaseBin.html +219 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch01.html +185 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch02.html +125 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch03.html +33 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp +684 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp2 +782 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html +215 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html +151 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html +216 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html +213 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html +463 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html +405 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html +338 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html +280 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html +233 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html +321 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html +257 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html +270 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html +303 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html +642 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html +375 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html +296 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html +171 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html +204 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html +233 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html +228 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html +216 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html +215 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html +256 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html +269 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html +976 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html +177 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html +255 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html +463 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html +1204 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-adder.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-alsa.html +84 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-app.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioconvert.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiorate.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioresample.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiotestsrc.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-cdparanoia.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-decodebin.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-encoding.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ffmpegcolorspace.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gdp.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gio.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gnomevfs.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-libvisual.html +104 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ogg.html +100 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-pango.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-playback.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-subparse.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-tcp.html +92 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-theora.html +84 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-typefindfunctions.html +71 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-uridecodebin.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-video4linux.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videorate.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videoscale.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videotestsrc.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-volume.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-vorbis.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ximagesink.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-xvimagesink.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html +233 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html +186 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html +187 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html +180 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html +187 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html +651 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html +243 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html +194 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html +416 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html +222 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html +253 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html +608 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html +320 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html +489 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html +663 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html +236 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html +176 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html +257 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html +199 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html +194 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html +332 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html +460 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.html +288 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.sgml +1059 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBin.html +1180 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBus.html +1127 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstChildProxy.html +575 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstClock.html +1846 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElement.html +3919 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElementFactory.html +1180 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstGhostPad.html +337 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstImplementsInterface.html +179 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndex.html +1449 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndexFactory.html +205 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstObject.html +1498 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPad.html +5192 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPadTemplate.html +624 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPipeline.html +626 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPlugin.html +1285 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPluginFeature.html +529 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPreset.html +437 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstRegistry.html +1021 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstSystemClock.html +161 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTagSetter.html +504 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTask.html +766 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTaskPool.html +291 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTypeFindFactory.html +290 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstXML.html +453 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/annotation-glossary.html +101 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-deprecated.html +188 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-full.html +7056 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-building.html +109 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-running.html +205 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp +1814 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp2 +2190 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-Gst.html +538 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstAtomicQueue.html +231 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBuffer.html +1458 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBufferList.html +1043 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstCaps.html +1646 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstDateTime.html +584 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstEvent.html +2195 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFilter.html +174 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFormat.html +349 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstGError.html +645 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstInfo.html +2466 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstIterator.html +1019 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMessage.html +3301 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMiniObject.html +662 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParamSpec.html +252 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParse.html +539 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstPoll.html +719 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstQuery.html +1963 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstSegment.html +816 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstStructure.html +2196 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTagList.html +3477 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTrace.html +591 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTypeFind.html +403 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUriHandler.html +635 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUtils.html +2334 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstValue.html +2442 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstVersion.html +140 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-gstconfig.html +175 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-hierarchy.html +60 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-support.html +42 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer.html +57 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.html +224 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.sgml +2441 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/libgstreamer.html +201 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstAdapter.html +745 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSink.html +1298 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSrc.html +844 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseTransform.html +875 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstCollectPads.html +1002 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstControlSource.html +407 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstController.html +936 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstInterpolationControlSource.html +363 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstLFOControlSource.html +222 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetClientClock.html +174 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetTimeProvider.html +172 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstPushSrc.html +108 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/annotation-glossary.html +89 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-deprecated.html +75 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-full.html +2227 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gdp-header.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-base.html +74 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-check.html +45 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-control.html +51 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-dataprotocol.html +33 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-hierarchy.html +49 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp +589 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp2 +615 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBaseParse.html +1004 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBitReader.html +1008 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBufferStraw.html +169 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteReader.html +3668 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteWriter.html +2233 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstCheck.html +585 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstControllerGObject.html +464 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstDataQueue.html +544 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstNetTimePacket.html +249 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstStreamConsistency.html +130 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstTypeFindHelper.html +364 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-gstdataprotocol.html +818 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs.html +132 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-net.html +47 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.html +129 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.sgml +707 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch01.html +83 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch02.html +38 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp +214 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp2 +244 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-capsfilter.html +184 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesink.html +358 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesrc.html +525 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsink.html +166 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsrc.html +210 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesink.html +202 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesrc.html +230 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-funnel.html +156 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-identity.html +310 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-input-selector.html +327 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-multiqueue.html +397 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-output-selector.html +183 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreelements.html +140 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreindexers.html +70 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue.html +425 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue2.html +308 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-tee.html +273 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-typefind.html +243 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-valve.html +179 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.html +95 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.sgml +338 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
- data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
- data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +371 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +119 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +208 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +177 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +762 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +673 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1542 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +337 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +950 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +560 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +132 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +299 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +277 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +474 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +529 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3529 -0
- data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
- data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
- data/vendor/local/share/license/gst-ffmpeg/AUTHORS +1 -0
- data/vendor/local/share/license/gst-ffmpeg/COPYING +339 -0
- data/vendor/local/share/license/gst-ffmpeg/COPYING.LIB +481 -0
- data/vendor/local/share/license/gst-plugins-bad/AUTHORS +21 -0
- data/vendor/local/share/license/gst-plugins-bad/COPYING +340 -0
- data/vendor/local/share/license/gst-plugins-bad/COPYING.LIB +481 -0
- data/vendor/local/share/license/gst-plugins-base/AUTHORS +23 -0
- data/vendor/local/share/license/gst-plugins-base/COPYING +340 -0
- data/vendor/local/share/license/gst-plugins-base/COPYING.LIB +481 -0
- data/vendor/local/share/license/gst-plugins-good/AUTHORS +21 -0
- data/vendor/local/share/license/gst-plugins-good/COPYING +504 -0
- data/vendor/local/share/license/gstreamer/AUTHORS +32 -0
- data/vendor/local/share/license/gstreamer/COPYING +481 -0
- data/vendor/local/share/license/libav/COPYING.GPLv2 +339 -0
- data/vendor/local/share/license/libav/COPYING.GPLv3 +674 -0
- data/vendor/local/share/license/libav/COPYING.LGPLv2.1 +504 -0
- data/vendor/local/share/license/libav/COPYING.LGPLv3 +165 -0
- data/vendor/local/share/license/libav/CREDITS +55 -0
- data/vendor/local/share/license/libav/LICENSE +46 -0
- data/vendor/local/share/license/libogg/AUTHORS +7 -0
- data/vendor/local/share/license/libogg/COPYING +28 -0
- data/vendor/local/share/license/libtheora/AUTHORS +49 -0
- data/vendor/local/share/license/libtheora/COPYING +28 -0
- data/vendor/local/share/license/libvorbis/AUTHORS +3 -0
- data/vendor/local/share/license/libvorbis/COPYING +28 -0
- data/vendor/local/share/license/speex/AUTHORS +18 -0
- data/vendor/local/share/license/speex/COPYING +35 -0
- data/vendor/local/share/man/man1/cjpeg.1 +325 -0
- data/vendor/local/share/man/man1/djpeg.1 +252 -0
- data/vendor/local/share/man/man1/gst-feedback-0.10.1 +38 -0
- data/vendor/local/share/man/man1/gst-inspect-0.10.1 +58 -0
- data/vendor/local/share/man/man1/gst-launch-0.10.1 +475 -0
- data/vendor/local/share/man/man1/gst-typefind-0.10.1 +40 -0
- data/vendor/local/share/man/man1/gst-visualise-0.10.1 +32 -0
- data/vendor/local/share/man/man1/gst-xmlinspect-0.10.1 +51 -0
- data/vendor/local/share/man/man1/gst-xmllaunch-0.10.1 +69 -0
- data/vendor/local/share/man/man1/jpegtran.1 +285 -0
- data/vendor/local/share/man/man1/rdjpgcom.1 +63 -0
- data/vendor/local/share/man/man1/speexdec.1 +78 -0
- data/vendor/local/share/man/man1/speexenc.1 +105 -0
- data/vendor/local/share/man/man1/wrjpgcom.1 +103 -0
- data/vendor/local/share/man/man1/xml2-config.1 +31 -0
- data/vendor/local/share/man/man1/xmlcatalog.1 +229 -0
- data/vendor/local/share/man/man1/xmllint.1 +427 -0
- data/vendor/local/share/man/man3/libxml.3 +71 -0
- data/vendor/local/src/tml/packaging/jpeg_8-1_win32.log +248 -0
- data/vendor/local/src/tml/packaging/jpeg_8-1_win32.sh +44 -0
- data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.log +1518 -0
- data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.sh +60 -0
- data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.log +1244 -0
- data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.sh +66 -0
- metadata +2025 -0
@@ -0,0 +1,2466 @@
|
|
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>GstInfo</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
+
<link rel="home" href="index.html" title="GStreamer 0.10 Core Reference Manual">
|
8
|
+
<link rel="up" href="gstreamer-support.html" title="GStreamer Core Support">
|
9
|
+
<link rel="prev" href="gstreamer-support.html" title="GStreamer Core Support">
|
10
|
+
<link rel="next" href="gstreamer-GstTrace.html" title="GstTrace">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="gstreamer-support.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="gstreamer-support.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">GStreamer 0.10 Core Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="gstreamer-GstTrace.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a href="#gstreamer-GstInfo.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#gstreamer-GstInfo.description" class="shortcut">Description</a>
|
27
|
+
</td></tr>
|
28
|
+
</table>
|
29
|
+
<div class="refentry">
|
30
|
+
<a name="gstreamer-GstInfo"></a><div class="titlepage"></div>
|
31
|
+
<div class="refnamediv"><table width="100%"><tr>
|
32
|
+
<td valign="top">
|
33
|
+
<h2><span class="refentrytitle"><a name="gstreamer-GstInfo.top_of_page"></a>GstInfo</span></h2>
|
34
|
+
<p>GstInfo — Debugging and logging facilities</p>
|
35
|
+
</td>
|
36
|
+
<td valign="top" align="right"></td>
|
37
|
+
</tr></table></div>
|
38
|
+
<div class="refsynopsisdiv">
|
39
|
+
<a name="gstreamer-GstInfo.synopsis"></a><h2>Synopsis</h2>
|
40
|
+
<pre class="synopsis">
|
41
|
+
#include <gst/gst.h>
|
42
|
+
|
43
|
+
enum <a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel">GstDebugLevel</a>;
|
44
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-LEVEL-DEFAULT:CAPS" title="GST_LEVEL_DEFAULT">GST_LEVEL_DEFAULT</a>
|
45
|
+
enum <a class="link" href="gstreamer-GstInfo.html#GstDebugColorFlags" title="enum GstDebugColorFlags">GstDebugColorFlags</a>;
|
46
|
+
struct <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory">GstDebugCategory</a>;
|
47
|
+
enum <a class="link" href="gstreamer-GstInfo.html#GstDebugGraphDetails" title="enum GstDebugGraphDetails">GstDebugGraphDetails</a>;
|
48
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-STR-NULL:CAPS" title="GST_STR_NULL()">GST_STR_NULL</a> (str)
|
49
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-PAD-NAME:CAPS" title="GST_DEBUG_PAD_NAME()">GST_DEBUG_PAD_NAME</a> (pad)
|
50
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-FUNCTION:CAPS" title="GST_FUNCTION">GST_FUNCTION</a>
|
51
|
+
<span class="returnvalue">void</span> (<a class="link" href="gstreamer-GstInfo.html#GstLogFunction" title="GstLogFunction ()">*GstLogFunction</a>) (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
52
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>,
|
53
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
|
54
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
|
55
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>,
|
56
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
57
|
+
<em class="parameter"><code><span class="type">GstDebugMessage</span> *message</code></em>,
|
58
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
|
59
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-log" title="gst_debug_log ()">gst_debug_log</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
60
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>,
|
61
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
|
62
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
|
63
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>,
|
64
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
65
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
|
66
|
+
<em class="parameter"><code>...</code></em>);
|
67
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-log-valist" title="gst_debug_log_valist ()">gst_debug_log_valist</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
68
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>,
|
69
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
|
70
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
|
71
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>,
|
72
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
73
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
|
74
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>);
|
75
|
+
const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gstreamer-GstInfo.html#gst-debug-message-get" title="gst_debug_message_get ()">gst_debug_message_get</a> (<em class="parameter"><code><span class="type">GstDebugMessage</span> *message</code></em>);
|
76
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-log-default" title="gst_debug_log_default ()">gst_debug_log_default</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
77
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>,
|
78
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
|
79
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
|
80
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>,
|
81
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
82
|
+
<em class="parameter"><code><span class="type">GstDebugMessage</span> *message</code></em>,
|
83
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> unused</code></em>);
|
84
|
+
const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gstreamer-GstInfo.html#gst-debug-level-get-name" title="gst_debug_level_get_name ()">gst_debug_level_get_name</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>);
|
85
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-add-log-function" title="gst_debug_add_log_function ()">gst_debug_add_log_function</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstLogFunction" title="GstLogFunction ()"><span class="type">GstLogFunction</span></a> func</code></em>,
|
86
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
|
87
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="gstreamer-GstInfo.html#gst-debug-remove-log-function" title="gst_debug_remove_log_function ()">gst_debug_remove_log_function</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstLogFunction" title="GstLogFunction ()"><span class="type">GstLogFunction</span></a> func</code></em>);
|
88
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="gstreamer-GstInfo.html#gst-debug-remove-log-function-by-data" title="gst_debug_remove_log_function_by_data ()">gst_debug_remove_log_function_by_data</a>
|
89
|
+
(<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
|
90
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-set-active" title="gst_debug_set_active ()">gst_debug_set_active</a> (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> active</code></em>);
|
91
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gstreamer-GstInfo.html#gst-debug-is-active" title="gst_debug_is_active ()">gst_debug_is_active</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
92
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-set-colored" title="gst_debug_set_colored ()">gst_debug_set_colored</a> (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> colored</code></em>);
|
93
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gstreamer-GstInfo.html#gst-debug-is-colored" title="gst_debug_is_colored ()">gst_debug_is_colored</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
94
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-set-default-threshold" title="gst_debug_set_default_threshold ()">gst_debug_set_default_threshold</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>);
|
95
|
+
<a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="returnvalue">GstDebugLevel</span></a> <a class="link" href="gstreamer-GstInfo.html#gst-debug-get-default-threshold" title="gst_debug_get_default_threshold ()">gst_debug_get_default_threshold</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
96
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-set-threshold-for-name" title="gst_debug_set_threshold_for_name ()">gst_debug_set_threshold_for_name</a> (<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
|
97
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>);
|
98
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-unset-threshold-for-name" title="gst_debug_unset_threshold_for_name ()">gst_debug_unset_threshold_for_name</a> (<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
|
99
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY:CAPS" title="GST_DEBUG_CATEGORY()">GST_DEBUG_CATEGORY</a> (cat)
|
100
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-EXTERN:CAPS" title="GST_DEBUG_CATEGORY_EXTERN()">GST_DEBUG_CATEGORY_EXTERN</a> (cat)
|
101
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-STATIC:CAPS" title="GST_DEBUG_CATEGORY_STATIC()">GST_DEBUG_CATEGORY_STATIC</a> (cat)
|
102
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-INIT:CAPS" title="GST_DEBUG_CATEGORY_INIT()">GST_DEBUG_CATEGORY_INIT</a> (cat,
|
103
|
+
name,
|
104
|
+
color,
|
105
|
+
description)
|
106
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-GET:CAPS" title="GST_DEBUG_CATEGORY_GET()">GST_DEBUG_CATEGORY_GET</a> (cat,
|
107
|
+
name)
|
108
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-category-free" title="gst_debug_category_free ()">gst_debug_category_free</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);
|
109
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-category-set-threshold" title="gst_debug_category_set_threshold ()">gst_debug_category_set_threshold</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
110
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>);
|
111
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-category-reset-threshold" title="gst_debug_category_reset_threshold ()">gst_debug_category_reset_threshold</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);
|
112
|
+
<a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="returnvalue">GstDebugLevel</span></a> <a class="link" href="gstreamer-GstInfo.html#gst-debug-category-get-threshold" title="gst_debug_category_get_threshold ()">gst_debug_category_get_threshold</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);
|
113
|
+
const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gstreamer-GstInfo.html#gst-debug-category-get-name" title="gst_debug_category_get_name ()">gst_debug_category_get_name</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);
|
114
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="gstreamer-GstInfo.html#gst-debug-category-get-color" title="gst_debug_category_get_color ()">gst_debug_category_get_color</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);
|
115
|
+
const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gstreamer-GstInfo.html#gst-debug-category-get-description" title="gst_debug_category_get_description ()">gst_debug_category_get_description</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);
|
116
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="returnvalue">GSList</span></a> * <a class="link" href="gstreamer-GstInfo.html#gst-debug-get-all-categories" title="gst_debug_get_all_categories ()">gst_debug_get_all_categories</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
117
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gstreamer-GstInfo.html#gst-debug-construct-term-color" title="gst_debug_construct_term_color ()">gst_debug_construct_term_color</a> (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> colorinfo</code></em>);
|
118
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="gstreamer-GstInfo.html#gst-debug-construct-win-color" title="gst_debug_construct_win_color ()">gst_debug_construct_win_color</a> (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> colorinfo</code></em>);
|
119
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-LEVEL-LOG:CAPS" title="GST_CAT_LEVEL_LOG()">GST_CAT_LEVEL_LOG</a> (cat,
|
120
|
+
level,
|
121
|
+
object,
|
122
|
+
...)
|
123
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-ERROR-OBJECT:CAPS" title="GST_CAT_ERROR_OBJECT()">GST_CAT_ERROR_OBJECT</a> (cat,
|
124
|
+
obj,
|
125
|
+
...)
|
126
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-WARNING-OBJECT:CAPS" title="GST_CAT_WARNING_OBJECT()">GST_CAT_WARNING_OBJECT</a> (cat,
|
127
|
+
obj,
|
128
|
+
...)
|
129
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-INFO-OBJECT:CAPS" title="GST_CAT_INFO_OBJECT()">GST_CAT_INFO_OBJECT</a> (cat,
|
130
|
+
obj,
|
131
|
+
...)
|
132
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-DEBUG-OBJECT:CAPS" title="GST_CAT_DEBUG_OBJECT()">GST_CAT_DEBUG_OBJECT</a> (cat,
|
133
|
+
obj,
|
134
|
+
...)
|
135
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-LOG-OBJECT:CAPS" title="GST_CAT_LOG_OBJECT()">GST_CAT_LOG_OBJECT</a> (cat,
|
136
|
+
obj,
|
137
|
+
...)
|
138
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-FIXME-OBJECT:CAPS" title="GST_CAT_FIXME_OBJECT()">GST_CAT_FIXME_OBJECT</a> (cat,
|
139
|
+
obj,
|
140
|
+
...)
|
141
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-TRACE-OBJECT:CAPS" title="GST_CAT_TRACE_OBJECT()">GST_CAT_TRACE_OBJECT</a> (cat,
|
142
|
+
obj,
|
143
|
+
...)
|
144
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-MEMDUMP-OBJECT:CAPS" title="GST_CAT_MEMDUMP_OBJECT()">GST_CAT_MEMDUMP_OBJECT</a> (cat,
|
145
|
+
obj,
|
146
|
+
msg,
|
147
|
+
data,
|
148
|
+
length)
|
149
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-ERROR:CAPS" title="GST_CAT_ERROR()">GST_CAT_ERROR</a> (cat,
|
150
|
+
...)
|
151
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-WARNING:CAPS" title="GST_CAT_WARNING()">GST_CAT_WARNING</a> (cat,
|
152
|
+
...)
|
153
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-INFO:CAPS" title="GST_CAT_INFO()">GST_CAT_INFO</a> (cat,
|
154
|
+
...)
|
155
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-DEBUG:CAPS" title="GST_CAT_DEBUG()">GST_CAT_DEBUG</a> (cat,
|
156
|
+
...)
|
157
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-LOG:CAPS" title="GST_CAT_LOG()">GST_CAT_LOG</a> (cat,
|
158
|
+
...)
|
159
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-FIXME:CAPS" title="GST_CAT_FIXME()">GST_CAT_FIXME</a> (cat,
|
160
|
+
...)
|
161
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-TRACE:CAPS" title="GST_CAT_TRACE()">GST_CAT_TRACE</a> (cat,
|
162
|
+
...)
|
163
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-CAT-MEMDUMP:CAPS" title="GST_CAT_MEMDUMP()">GST_CAT_MEMDUMP</a> (cat,
|
164
|
+
msg,
|
165
|
+
data,
|
166
|
+
length)
|
167
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-ERROR-OBJECT:CAPS" title="GST_ERROR_OBJECT()">GST_ERROR_OBJECT</a> (obj,
|
168
|
+
...)
|
169
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-WARNING-OBJECT:CAPS" title="GST_WARNING_OBJECT()">GST_WARNING_OBJECT</a> (obj,
|
170
|
+
...)
|
171
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-INFO-OBJECT:CAPS" title="GST_INFO_OBJECT()">GST_INFO_OBJECT</a> (obj,
|
172
|
+
...)
|
173
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-OBJECT:CAPS" title="GST_DEBUG_OBJECT()">GST_DEBUG_OBJECT</a> (obj,
|
174
|
+
...)
|
175
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-LOG-OBJECT:CAPS" title="GST_LOG_OBJECT()">GST_LOG_OBJECT</a> (obj,
|
176
|
+
...)
|
177
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-FIXME-OBJECT:CAPS" title="GST_FIXME_OBJECT()">GST_FIXME_OBJECT</a> (obj,
|
178
|
+
...)
|
179
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-TRACE-OBJECT:CAPS" title="GST_TRACE_OBJECT()">GST_TRACE_OBJECT</a> (obj,
|
180
|
+
...)
|
181
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-MEMDUMP-OBJECT:CAPS" title="GST_MEMDUMP_OBJECT()">GST_MEMDUMP_OBJECT</a> (obj,
|
182
|
+
msg,
|
183
|
+
data,
|
184
|
+
length)
|
185
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-ERROR:CAPS" title="GST_ERROR()">GST_ERROR</a> (...)
|
186
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-WARNING:CAPS" title="GST_WARNING()">GST_WARNING</a> (...)
|
187
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-INFO:CAPS" title="GST_INFO()">GST_INFO</a> (...)
|
188
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG:CAPS" title="GST_DEBUG()">GST_DEBUG</a> (...)
|
189
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-LOG:CAPS" title="GST_LOG()">GST_LOG</a> (...)
|
190
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-FIXME:CAPS" title="GST_FIXME()">GST_FIXME</a> (...)
|
191
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-TRACE:CAPS" title="GST_TRACE()">GST_TRACE</a> (...)
|
192
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-MEMDUMP:CAPS" title="GST_MEMDUMP()">GST_MEMDUMP</a> (msg,
|
193
|
+
data,
|
194
|
+
length)
|
195
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-REGISTER-FUNCPTR:CAPS" title="GST_DEBUG_REGISTER_FUNCPTR()">GST_DEBUG_REGISTER_FUNCPTR</a> (ptr)
|
196
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-FUNCPTR:CAPS" title="GST_DEBUG_FUNCPTR()">GST_DEBUG_FUNCPTR</a> (ptr)
|
197
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-FUNCPTR-NAME:CAPS" title="GST_DEBUG_FUNCPTR_NAME()">GST_DEBUG_FUNCPTR_NAME</a> (ptr)
|
198
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-BIN-TO-DOT-FILE:CAPS" title="GST_DEBUG_BIN_TO_DOT_FILE()">GST_DEBUG_BIN_TO_DOT_FILE</a> (bin,
|
199
|
+
details,
|
200
|
+
file_name)
|
201
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-BIN-TO-DOT-FILE-WITH-TS:CAPS" title="GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS()">GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS</a> (bin,
|
202
|
+
details,
|
203
|
+
file_name)
|
204
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstInfo.html#gst-debug-print-stack-trace" title="gst_debug_print_stack_trace ()">gst_debug_print_stack_trace</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
205
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-TIME-FORMAT:CAPS" title="GST_TIME_FORMAT">GST_TIME_FORMAT</a>
|
206
|
+
#define <a class="link" href="gstreamer-GstInfo.html#GST-TIME-ARGS:CAPS" title="GST_TIME_ARGS()">GST_TIME_ARGS</a> (t)
|
207
|
+
</pre>
|
208
|
+
</div>
|
209
|
+
<div class="refsect1">
|
210
|
+
<a name="gstreamer-GstInfo.description"></a><h2>Description</h2>
|
211
|
+
<p>
|
212
|
+
GStreamer's debugging subsystem is an easy way to get information about what
|
213
|
+
the application is doing. It is not meant for programming errors. Use GLib
|
214
|
+
methods (g_warning and friends) for that.
|
215
|
+
</p>
|
216
|
+
<p>
|
217
|
+
The debugging subsystem works only after GStreamer has been initialized
|
218
|
+
- for example by calling <a class="link" href="gstreamer-Gst.html#gst-init" title="gst_init ()"><code class="function">gst_init()</code></a>.
|
219
|
+
</p>
|
220
|
+
<p>
|
221
|
+
The debugging subsystem is used to log informational messages while the
|
222
|
+
application runs. Each messages has some properties attached to it. Among
|
223
|
+
these properties are the debugging category, the severity (called "level"
|
224
|
+
here) and an optional <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> it belongs to. Each of these messages is sent
|
225
|
+
to all registered debugging handlers, which then handle the messages.
|
226
|
+
GStreamer attaches a default handler on startup, which outputs requested
|
227
|
+
messages to stderr.
|
228
|
+
</p>
|
229
|
+
<p>
|
230
|
+
Messages are output by using shortcut macros like <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG:CAPS" title="GST_DEBUG()"><span class="type">GST_DEBUG</span></a>,
|
231
|
+
<a class="link" href="gstreamer-GstInfo.html#GST-CAT-ERROR-OBJECT:CAPS" title="GST_CAT_ERROR_OBJECT()"><span class="type">GST_CAT_ERROR_OBJECT</span></a> or similar. These all expand to calling <a class="link" href="gstreamer-GstInfo.html#gst-debug-log" title="gst_debug_log ()"><code class="function">gst_debug_log()</code></a>
|
232
|
+
with the right parameters.
|
233
|
+
The only thing a developer will probably want to do is define his own
|
234
|
+
categories. This is easily done with 3 lines. At the top of your code,
|
235
|
+
declare
|
236
|
+
the variables and set the default category.
|
237
|
+
</p>
|
238
|
+
<div class="informalexample">
|
239
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
240
|
+
<tbody>
|
241
|
+
<tr>
|
242
|
+
<td class="listing_lines" align="right"><pre>1
|
243
|
+
2</pre></td>
|
244
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-STATIC:CAPS">GST_DEBUG_CATEGORY_STATIC</a></span> <span class="gtkdoc opt">(</span>my_category<span class="gtkdoc opt">);</span> <span class="gtkdoc slc">// define category (statically)</span>
|
245
|
+
<span class="gtkdoc ppc">#define GST_CAT_DEFAULT my_category</span> <span class="gtkdoc slc">// set as default</span><span class="gtkdoc ppc"></span></pre></td>
|
246
|
+
</tr>
|
247
|
+
</tbody>
|
248
|
+
</table>
|
249
|
+
</div>
|
250
|
+
|
251
|
+
<p>
|
252
|
+
After that you only need to initialize the category.
|
253
|
+
</p>
|
254
|
+
<div class="informalexample">
|
255
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
256
|
+
<tbody>
|
257
|
+
<tr>
|
258
|
+
<td class="listing_lines" align="right"><pre>1
|
259
|
+
2</pre></td>
|
260
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-INIT:CAPS">GST_DEBUG_CATEGORY_INIT</a></span> <span class="gtkdoc opt">(</span>my_category<span class="gtkdoc opt">,</span> <span class="string">"my category"</span><span class="gtkdoc opt">,</span>
|
261
|
+
<span class="number">0</span><span class="gtkdoc opt">,</span> <span class="string">"This is my very own"</span><span class="gtkdoc opt">);</span></pre></td>
|
262
|
+
</tr>
|
263
|
+
</tbody>
|
264
|
+
</table>
|
265
|
+
</div>
|
266
|
+
|
267
|
+
<p>
|
268
|
+
Initialization must be done before the category is used first.
|
269
|
+
Plugins do this
|
270
|
+
in their plugin_init function, libraries and applications should do that
|
271
|
+
during their initialization.
|
272
|
+
</p>
|
273
|
+
<p>
|
274
|
+
The whole debugging subsystem can be disabled at build time with passing the
|
275
|
+
--disable-gst-debug switch to configure. If this is done, every function,
|
276
|
+
macro and even structs described in this file evaluate to default values or
|
277
|
+
nothing at all.
|
278
|
+
So don't take addresses of these functions or use other tricks.
|
279
|
+
If you must do that for some reason, there is still an option.
|
280
|
+
If the debugging
|
281
|
+
subsystem was compiled out, <a class="link" href="gstreamer-gstconfig.html#GST-DISABLE-GST-DEBUG:CAPS" title="GST_DISABLE_GST_DEBUG"><span class="type">GST_DISABLE_GST_DEBUG</span></a> is defined in
|
282
|
+
<gst/gst.h>,
|
283
|
+
so you can check that before doing your trick.
|
284
|
+
Disabling the debugging subsystem will give you a slight (read: unnoticeable)
|
285
|
+
speed increase and will reduce the size of your compiled code. The GStreamer
|
286
|
+
library itself becomes around 10% smaller.
|
287
|
+
</p>
|
288
|
+
<p>
|
289
|
+
Please note that there are naming conventions for the names of debugging
|
290
|
+
categories. These are explained at <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-INIT:CAPS" title="GST_DEBUG_CATEGORY_INIT()"><code class="function">GST_DEBUG_CATEGORY_INIT()</code></a>.
|
291
|
+
</p>
|
292
|
+
</div>
|
293
|
+
<div class="refsect1">
|
294
|
+
<a name="gstreamer-GstInfo.details"></a><h2>Details</h2>
|
295
|
+
<div class="refsect2">
|
296
|
+
<a name="GstDebugLevel"></a><h3>enum GstDebugLevel</h3>
|
297
|
+
<pre class="programlisting">typedef enum {
|
298
|
+
GST_LEVEL_NONE = 0,
|
299
|
+
GST_LEVEL_ERROR,
|
300
|
+
GST_LEVEL_WARNING,
|
301
|
+
GST_LEVEL_INFO,
|
302
|
+
GST_LEVEL_DEBUG,
|
303
|
+
GST_LEVEL_LOG,
|
304
|
+
GST_LEVEL_FIXME = 6,
|
305
|
+
GST_LEVEL_TRACE = 7,
|
306
|
+
/* add more */
|
307
|
+
GST_LEVEL_MEMDUMP = 9,
|
308
|
+
/* add more */
|
309
|
+
GST_LEVEL_COUNT
|
310
|
+
} GstDebugLevel;
|
311
|
+
</pre>
|
312
|
+
<p>
|
313
|
+
The level defines the importance of a debugging message. The more important a
|
314
|
+
message is, the greater the probability that the debugging system outputs it.
|
315
|
+
</p>
|
316
|
+
<div class="variablelist"><table border="0">
|
317
|
+
<col align="left" valign="top">
|
318
|
+
<tbody>
|
319
|
+
<tr>
|
320
|
+
<td><p><a name="GST-LEVEL-NONE:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_NONE</code></span></p></td>
|
321
|
+
<td>No debugging level specified or desired. Used to deactivate
|
322
|
+
debugging output.
|
323
|
+
</td>
|
324
|
+
</tr>
|
325
|
+
<tr>
|
326
|
+
<td><p><a name="GST-LEVEL-ERROR:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_ERROR</code></span></p></td>
|
327
|
+
<td>Error messages are to be used only when an error occured
|
328
|
+
that stops the application from keeping working correctly.
|
329
|
+
An examples is gst_element_error, which outputs a message with this priority.
|
330
|
+
It does not mean that the application is terminating as with g_errror.
|
331
|
+
</td>
|
332
|
+
</tr>
|
333
|
+
<tr>
|
334
|
+
<td><p><a name="GST-LEVEL-WARNING:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_WARNING</code></span></p></td>
|
335
|
+
<td>Warning messages are to inform about abnormal behaviour
|
336
|
+
that could lead to problems or weird behaviour later on. An example of this
|
337
|
+
would be clocking issues ("your computer is pretty slow") or broken input
|
338
|
+
data ("Can't synchronize to stream.")
|
339
|
+
</td>
|
340
|
+
</tr>
|
341
|
+
<tr>
|
342
|
+
<td><p><a name="GST-LEVEL-INFO:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_INFO</code></span></p></td>
|
343
|
+
<td>Informational messages should be used to keep the developer
|
344
|
+
updated about what is happening.
|
345
|
+
Examples where this should be used are when a typefind function has
|
346
|
+
successfully determined the type of the stream or when an mp3 plugin detects
|
347
|
+
the format to be used. ("This file has mono sound.")
|
348
|
+
</td>
|
349
|
+
</tr>
|
350
|
+
<tr>
|
351
|
+
<td><p><a name="GST-LEVEL-DEBUG:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_DEBUG</code></span></p></td>
|
352
|
+
<td>Debugging messages should be used when something common
|
353
|
+
happens that is not the expected default behavior, or something that's
|
354
|
+
useful to know but doesn't happen all the time (ie. per loop iteration or
|
355
|
+
buffer processed or event handled).
|
356
|
+
An example would be notifications about state changes or receiving/sending
|
357
|
+
of events.
|
358
|
+
</td>
|
359
|
+
</tr>
|
360
|
+
<tr>
|
361
|
+
<td><p><a name="GST-LEVEL-LOG:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_LOG</code></span></p></td>
|
362
|
+
<td>Log messages are messages that are very common but might be
|
363
|
+
useful to know. As a rule of thumb a pipeline that is iterating as expected
|
364
|
+
should never output anything else but LOG messages. Use this log level to
|
365
|
+
log recurring information in chain functions and loop functions, for
|
366
|
+
example.
|
367
|
+
</td>
|
368
|
+
</tr>
|
369
|
+
<tr>
|
370
|
+
<td><p><a name="GST-LEVEL-FIXME:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_FIXME</code></span></p></td>
|
371
|
+
<td>Fixme messages are messages that indicate that something
|
372
|
+
in the executed code path is not fully implemented or handled yet. Note
|
373
|
+
that this does not replace proper error handling in any way, the purpose
|
374
|
+
of this message is to make it easier to spot incomplete/unfinished pieces
|
375
|
+
of code when reading the debug log. (Since: 0.10.23)
|
376
|
+
</td>
|
377
|
+
</tr>
|
378
|
+
<tr>
|
379
|
+
<td><p><a name="GST-LEVEL-TRACE:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_TRACE</code></span></p></td>
|
380
|
+
<td>Tracing-related messages (Since: 0.10.30)
|
381
|
+
Examples for this are referencing/dereferencing of objects.
|
382
|
+
</td>
|
383
|
+
</tr>
|
384
|
+
<tr>
|
385
|
+
<td><p><a name="GST-LEVEL-MEMDUMP:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_MEMDUMP</code></span></p></td>
|
386
|
+
<td>memory dump messages are used to log (small) chunks of
|
387
|
+
data as memory dumps in the log. They will be displayed as hexdump with
|
388
|
+
ASCII characters. (Since: 0.10.23)
|
389
|
+
</td>
|
390
|
+
</tr>
|
391
|
+
<tr>
|
392
|
+
<td><p><a name="GST-LEVEL-COUNT:CAPS"></a><span class="term"><code class="literal">GST_LEVEL_COUNT</code></span></p></td>
|
393
|
+
<td>The number of defined debugging levels.
|
394
|
+
</td>
|
395
|
+
</tr>
|
396
|
+
</tbody>
|
397
|
+
</table></div>
|
398
|
+
</div>
|
399
|
+
<hr>
|
400
|
+
<div class="refsect2">
|
401
|
+
<a name="GST-LEVEL-DEFAULT:CAPS"></a><h3>GST_LEVEL_DEFAULT</h3>
|
402
|
+
<pre class="programlisting">#define GST_LEVEL_DEFAULT GST_LEVEL_NONE
|
403
|
+
</pre>
|
404
|
+
<p>
|
405
|
+
Defines the default debugging level to be used with GStreamer. It is normally
|
406
|
+
set to <a class="link" href="gstreamer-GstInfo.html#GST-LEVEL-NONE:CAPS"><span class="type">GST_LEVEL_NONE</span></a> so nothing get printed.
|
407
|
+
As it can be configured at compile time, developer builds may chose to
|
408
|
+
override that though.
|
409
|
+
You can use this as an argument to <a class="link" href="gstreamer-GstInfo.html#gst-debug-set-default-threshold" title="gst_debug_set_default_threshold ()"><code class="function">gst_debug_set_default_threshold()</code></a> to
|
410
|
+
reset the debugging output to default behaviour.
|
411
|
+
</p>
|
412
|
+
</div>
|
413
|
+
<hr>
|
414
|
+
<div class="refsect2">
|
415
|
+
<a name="GstDebugColorFlags"></a><h3>enum GstDebugColorFlags</h3>
|
416
|
+
<pre class="programlisting">typedef enum {
|
417
|
+
/* colors */
|
418
|
+
GST_DEBUG_FG_BLACK = 0x0000,
|
419
|
+
GST_DEBUG_FG_RED = 0x0001,
|
420
|
+
GST_DEBUG_FG_GREEN = 0x0002,
|
421
|
+
GST_DEBUG_FG_YELLOW = 0x0003,
|
422
|
+
GST_DEBUG_FG_BLUE = 0x0004,
|
423
|
+
GST_DEBUG_FG_MAGENTA = 0x0005,
|
424
|
+
GST_DEBUG_FG_CYAN = 0x0006,
|
425
|
+
GST_DEBUG_FG_WHITE = 0x0007,
|
426
|
+
/* background colors */
|
427
|
+
GST_DEBUG_BG_BLACK = 0x0000,
|
428
|
+
GST_DEBUG_BG_RED = 0x0010,
|
429
|
+
GST_DEBUG_BG_GREEN = 0x0020,
|
430
|
+
GST_DEBUG_BG_YELLOW = 0x0030,
|
431
|
+
GST_DEBUG_BG_BLUE = 0x0040,
|
432
|
+
GST_DEBUG_BG_MAGENTA = 0x0050,
|
433
|
+
GST_DEBUG_BG_CYAN = 0x0060,
|
434
|
+
GST_DEBUG_BG_WHITE = 0x0070,
|
435
|
+
/* other formats */
|
436
|
+
GST_DEBUG_BOLD = 0x0100,
|
437
|
+
GST_DEBUG_UNDERLINE = 0x0200
|
438
|
+
} GstDebugColorFlags;
|
439
|
+
</pre>
|
440
|
+
<p>
|
441
|
+
These are some terminal style flags you can use when creating your
|
442
|
+
debugging categories to make them stand out in debugging output.
|
443
|
+
</p>
|
444
|
+
<div class="variablelist"><table border="0">
|
445
|
+
<col align="left" valign="top">
|
446
|
+
<tbody>
|
447
|
+
<tr>
|
448
|
+
<td><p><a name="GST-DEBUG-FG-BLACK:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_FG_BLACK</code></span></p></td>
|
449
|
+
<td>Use black as foreground color.
|
450
|
+
</td>
|
451
|
+
</tr>
|
452
|
+
<tr>
|
453
|
+
<td><p><a name="GST-DEBUG-FG-RED:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_FG_RED</code></span></p></td>
|
454
|
+
<td>Use red as foreground color.
|
455
|
+
</td>
|
456
|
+
</tr>
|
457
|
+
<tr>
|
458
|
+
<td><p><a name="GST-DEBUG-FG-GREEN:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_FG_GREEN</code></span></p></td>
|
459
|
+
<td>Use green as foreground color.
|
460
|
+
</td>
|
461
|
+
</tr>
|
462
|
+
<tr>
|
463
|
+
<td><p><a name="GST-DEBUG-FG-YELLOW:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_FG_YELLOW</code></span></p></td>
|
464
|
+
<td>Use yellow as foreground color.
|
465
|
+
</td>
|
466
|
+
</tr>
|
467
|
+
<tr>
|
468
|
+
<td><p><a name="GST-DEBUG-FG-BLUE:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_FG_BLUE</code></span></p></td>
|
469
|
+
<td>Use blue as foreground color.
|
470
|
+
</td>
|
471
|
+
</tr>
|
472
|
+
<tr>
|
473
|
+
<td><p><a name="GST-DEBUG-FG-MAGENTA:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_FG_MAGENTA</code></span></p></td>
|
474
|
+
<td>Use magenta as foreground color.
|
475
|
+
</td>
|
476
|
+
</tr>
|
477
|
+
<tr>
|
478
|
+
<td><p><a name="GST-DEBUG-FG-CYAN:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_FG_CYAN</code></span></p></td>
|
479
|
+
<td>Use cyan as foreground color.
|
480
|
+
</td>
|
481
|
+
</tr>
|
482
|
+
<tr>
|
483
|
+
<td><p><a name="GST-DEBUG-FG-WHITE:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_FG_WHITE</code></span></p></td>
|
484
|
+
<td>Use white as foreground color.
|
485
|
+
</td>
|
486
|
+
</tr>
|
487
|
+
<tr>
|
488
|
+
<td><p><a name="GST-DEBUG-BG-BLACK:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_BG_BLACK</code></span></p></td>
|
489
|
+
<td>Use black as background color.
|
490
|
+
</td>
|
491
|
+
</tr>
|
492
|
+
<tr>
|
493
|
+
<td><p><a name="GST-DEBUG-BG-RED:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_BG_RED</code></span></p></td>
|
494
|
+
<td>Use red as background color.
|
495
|
+
</td>
|
496
|
+
</tr>
|
497
|
+
<tr>
|
498
|
+
<td><p><a name="GST-DEBUG-BG-GREEN:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_BG_GREEN</code></span></p></td>
|
499
|
+
<td>Use green as background color.
|
500
|
+
</td>
|
501
|
+
</tr>
|
502
|
+
<tr>
|
503
|
+
<td><p><a name="GST-DEBUG-BG-YELLOW:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_BG_YELLOW</code></span></p></td>
|
504
|
+
<td>Use yellow as background color.
|
505
|
+
</td>
|
506
|
+
</tr>
|
507
|
+
<tr>
|
508
|
+
<td><p><a name="GST-DEBUG-BG-BLUE:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_BG_BLUE</code></span></p></td>
|
509
|
+
<td>Use blue as background color.
|
510
|
+
</td>
|
511
|
+
</tr>
|
512
|
+
<tr>
|
513
|
+
<td><p><a name="GST-DEBUG-BG-MAGENTA:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_BG_MAGENTA</code></span></p></td>
|
514
|
+
<td>Use magenta as background color.
|
515
|
+
</td>
|
516
|
+
</tr>
|
517
|
+
<tr>
|
518
|
+
<td><p><a name="GST-DEBUG-BG-CYAN:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_BG_CYAN</code></span></p></td>
|
519
|
+
<td>Use cyan as background color.
|
520
|
+
</td>
|
521
|
+
</tr>
|
522
|
+
<tr>
|
523
|
+
<td><p><a name="GST-DEBUG-BG-WHITE:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_BG_WHITE</code></span></p></td>
|
524
|
+
<td>Use white as background color.
|
525
|
+
</td>
|
526
|
+
</tr>
|
527
|
+
<tr>
|
528
|
+
<td><p><a name="GST-DEBUG-BOLD:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_BOLD</code></span></p></td>
|
529
|
+
<td>Make the output bold.
|
530
|
+
</td>
|
531
|
+
</tr>
|
532
|
+
<tr>
|
533
|
+
<td><p><a name="GST-DEBUG-UNDERLINE:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_UNDERLINE</code></span></p></td>
|
534
|
+
<td>Underline the output.
|
535
|
+
</td>
|
536
|
+
</tr>
|
537
|
+
</tbody>
|
538
|
+
</table></div>
|
539
|
+
</div>
|
540
|
+
<hr>
|
541
|
+
<div class="refsect2">
|
542
|
+
<a name="GstDebugCategory"></a><h3>struct GstDebugCategory</h3>
|
543
|
+
<pre class="programlisting">struct GstDebugCategory {
|
544
|
+
};
|
545
|
+
</pre>
|
546
|
+
<p>
|
547
|
+
This is the struct that describes the categories. Once initialized with
|
548
|
+
<a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-INIT:CAPS" title="GST_DEBUG_CATEGORY_INIT()"><span class="type">GST_DEBUG_CATEGORY_INIT</span></a>, its values can't be changed anymore.
|
549
|
+
</p>
|
550
|
+
</div>
|
551
|
+
<hr>
|
552
|
+
<div class="refsect2">
|
553
|
+
<a name="GstDebugGraphDetails"></a><h3>enum GstDebugGraphDetails</h3>
|
554
|
+
<pre class="programlisting">typedef enum {
|
555
|
+
GST_DEBUG_GRAPH_SHOW_MEDIA_TYPE = (1<<0),
|
556
|
+
GST_DEBUG_GRAPH_SHOW_CAPS_DETAILS = (1<<1),
|
557
|
+
GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS = (1<<2),
|
558
|
+
GST_DEBUG_GRAPH_SHOW_STATES = (1<<3),
|
559
|
+
GST_DEBUG_GRAPH_SHOW_ALL = ((1<<4)-1)
|
560
|
+
} GstDebugGraphDetails;
|
561
|
+
</pre>
|
562
|
+
<p>
|
563
|
+
Available details for pipeline graphs produced by <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-BIN-TO-DOT-FILE:CAPS" title="GST_DEBUG_BIN_TO_DOT_FILE()"><code class="function">GST_DEBUG_BIN_TO_DOT_FILE()</code></a>
|
564
|
+
and <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-BIN-TO-DOT-FILE-WITH-TS:CAPS" title="GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS()"><code class="function">GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS()</code></a>.
|
565
|
+
</p>
|
566
|
+
<div class="variablelist"><table border="0">
|
567
|
+
<col align="left" valign="top">
|
568
|
+
<tbody>
|
569
|
+
<tr>
|
570
|
+
<td><p><a name="GST-DEBUG-GRAPH-SHOW-MEDIA-TYPE:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_GRAPH_SHOW_MEDIA_TYPE</code></span></p></td>
|
571
|
+
<td>show caps-name on edges
|
572
|
+
</td>
|
573
|
+
</tr>
|
574
|
+
<tr>
|
575
|
+
<td><p><a name="GST-DEBUG-GRAPH-SHOW-CAPS-DETAILS:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_GRAPH_SHOW_CAPS_DETAILS</code></span></p></td>
|
576
|
+
<td>show caps-details on edges
|
577
|
+
</td>
|
578
|
+
</tr>
|
579
|
+
<tr>
|
580
|
+
<td><p><a name="GST-DEBUG-GRAPH-SHOW-NON-DEFAULT-PARAMS:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS</code></span></p></td>
|
581
|
+
<td>show modified parameters on elements
|
582
|
+
</td>
|
583
|
+
</tr>
|
584
|
+
<tr>
|
585
|
+
<td><p><a name="GST-DEBUG-GRAPH-SHOW-STATES:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_GRAPH_SHOW_STATES</code></span></p></td>
|
586
|
+
<td>show element states
|
587
|
+
</td>
|
588
|
+
</tr>
|
589
|
+
<tr>
|
590
|
+
<td><p><a name="GST-DEBUG-GRAPH-SHOW-ALL:CAPS"></a><span class="term"><code class="literal">GST_DEBUG_GRAPH_SHOW_ALL</code></span></p></td>
|
591
|
+
<td>show all details
|
592
|
+
</td>
|
593
|
+
</tr>
|
594
|
+
</tbody>
|
595
|
+
</table></div>
|
596
|
+
<p class="since">Since 0.10.15</p>
|
597
|
+
</div>
|
598
|
+
<hr>
|
599
|
+
<div class="refsect2">
|
600
|
+
<a name="GST-STR-NULL:CAPS"></a><h3>GST_STR_NULL()</h3>
|
601
|
+
<pre class="programlisting">#define GST_STR_NULL(str) ((str) ? (str) : "(NULL)")
|
602
|
+
</pre>
|
603
|
+
<p>
|
604
|
+
Macro to use when a string must not be NULL, but may be NULL. If the string
|
605
|
+
is NULL, "(NULL)" is printed instead.
|
606
|
+
In GStreamer printf string arguments may not be NULL, because on some
|
607
|
+
platforms (ie Solaris) the libc crashes in that case. This includes debugging
|
608
|
+
strings.
|
609
|
+
</p>
|
610
|
+
<div class="variablelist"><table border="0">
|
611
|
+
<col align="left" valign="top">
|
612
|
+
<tbody><tr>
|
613
|
+
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
|
614
|
+
<td>The string to check.</td>
|
615
|
+
</tr></tbody>
|
616
|
+
</table></div>
|
617
|
+
</div>
|
618
|
+
<hr>
|
619
|
+
<div class="refsect2">
|
620
|
+
<a name="GST-DEBUG-PAD-NAME:CAPS"></a><h3>GST_DEBUG_PAD_NAME()</h3>
|
621
|
+
<pre class="programlisting">#define GST_DEBUG_PAD_NAME(pad)</pre>
|
622
|
+
<p>
|
623
|
+
Evaluates to 2 strings, that describe the pad. Often used in debugging
|
624
|
+
statements.
|
625
|
+
</p>
|
626
|
+
<div class="variablelist"><table border="0">
|
627
|
+
<col align="left" valign="top">
|
628
|
+
<tbody><tr>
|
629
|
+
<td><p><span class="term"><em class="parameter"><code>pad</code></em> :</span></p></td>
|
630
|
+
<td>The pad to debug.</td>
|
631
|
+
</tr></tbody>
|
632
|
+
</table></div>
|
633
|
+
</div>
|
634
|
+
<hr>
|
635
|
+
<div class="refsect2">
|
636
|
+
<a name="GST-FUNCTION:CAPS"></a><h3>GST_FUNCTION</h3>
|
637
|
+
<pre class="programlisting"># define GST_FUNCTION ((const char*) (__FUNCTION__))
|
638
|
+
</pre>
|
639
|
+
<p>
|
640
|
+
This macro should evaluate to the name of the current function and be should
|
641
|
+
be defined when configuring your project, as it is compiler dependant. If it
|
642
|
+
is not defined, some default value is used. It is used to provide debugging
|
643
|
+
output with the function name of the message.
|
644
|
+
</p>
|
645
|
+
<p>
|
646
|
+
Note that this is different from G_STRFUNC as we do not want the full
|
647
|
+
function signature in C++ code.
|
648
|
+
</p>
|
649
|
+
</div>
|
650
|
+
<hr>
|
651
|
+
<div class="refsect2">
|
652
|
+
<a name="GstLogFunction"></a><h3>GstLogFunction ()</h3>
|
653
|
+
<pre class="programlisting"><span class="returnvalue">void</span> (*GstLogFunction) (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
654
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>,
|
655
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
|
656
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
|
657
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>,
|
658
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
659
|
+
<em class="parameter"><code><span class="type">GstDebugMessage</span> *message</code></em>,
|
660
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
661
|
+
<p>
|
662
|
+
Function prototype for a logging function that can be registered with
|
663
|
+
<a class="link" href="gstreamer-GstInfo.html#gst-debug-add-log-function" title="gst_debug_add_log_function ()"><code class="function">gst_debug_add_log_function()</code></a>.
|
664
|
+
Use G_GNUC_NO_INSTRUMENT on that function.
|
665
|
+
</p>
|
666
|
+
<div class="variablelist"><table border="0">
|
667
|
+
<col align="left" valign="top">
|
668
|
+
<tbody>
|
669
|
+
<tr>
|
670
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
671
|
+
<td>a <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a>
|
672
|
+
</td>
|
673
|
+
</tr>
|
674
|
+
<tr>
|
675
|
+
<td><p><span class="term"><em class="parameter"><code>level</code></em> :</span></p></td>
|
676
|
+
<td>a <a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a>
|
677
|
+
</td>
|
678
|
+
</tr>
|
679
|
+
<tr>
|
680
|
+
<td><p><span class="term"><em class="parameter"><code>file</code></em> :</span></p></td>
|
681
|
+
<td>file name</td>
|
682
|
+
</tr>
|
683
|
+
<tr>
|
684
|
+
<td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
|
685
|
+
<td>function name</td>
|
686
|
+
</tr>
|
687
|
+
<tr>
|
688
|
+
<td><p><span class="term"><em class="parameter"><code>line</code></em> :</span></p></td>
|
689
|
+
<td>line number</td>
|
690
|
+
</tr>
|
691
|
+
<tr>
|
692
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
693
|
+
<td>a <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>
|
694
|
+
</td>
|
695
|
+
</tr>
|
696
|
+
<tr>
|
697
|
+
<td><p><span class="term"><em class="parameter"><code>message</code></em> :</span></p></td>
|
698
|
+
<td>the message</td>
|
699
|
+
</tr>
|
700
|
+
<tr>
|
701
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
702
|
+
<td>user data for the log function</td>
|
703
|
+
</tr>
|
704
|
+
</tbody>
|
705
|
+
</table></div>
|
706
|
+
</div>
|
707
|
+
<hr>
|
708
|
+
<div class="refsect2">
|
709
|
+
<a name="gst-debug-log"></a><h3>gst_debug_log ()</h3>
|
710
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_log (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
711
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>,
|
712
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
|
713
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
|
714
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>,
|
715
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
716
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
|
717
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
718
|
+
<p>
|
719
|
+
Logs the given message using the currently registered debugging handlers.
|
720
|
+
</p>
|
721
|
+
<div class="variablelist"><table border="0">
|
722
|
+
<col align="left" valign="top">
|
723
|
+
<tbody>
|
724
|
+
<tr>
|
725
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
726
|
+
<td>category to log</td>
|
727
|
+
</tr>
|
728
|
+
<tr>
|
729
|
+
<td><p><span class="term"><em class="parameter"><code>level</code></em> :</span></p></td>
|
730
|
+
<td>level of the message is in</td>
|
731
|
+
</tr>
|
732
|
+
<tr>
|
733
|
+
<td><p><span class="term"><em class="parameter"><code>file</code></em> :</span></p></td>
|
734
|
+
<td>the file that emitted the message, usually the __FILE__ identifier</td>
|
735
|
+
</tr>
|
736
|
+
<tr>
|
737
|
+
<td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
|
738
|
+
<td>the function that emitted the message</td>
|
739
|
+
</tr>
|
740
|
+
<tr>
|
741
|
+
<td><p><span class="term"><em class="parameter"><code>line</code></em> :</span></p></td>
|
742
|
+
<td>the line from that the message was emitted, usually __LINE__</td>
|
743
|
+
</tr>
|
744
|
+
<tr>
|
745
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
746
|
+
<td>the object this message relates to,
|
747
|
+
or NULL if none. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
748
|
+
</td>
|
749
|
+
</tr>
|
750
|
+
<tr>
|
751
|
+
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
752
|
+
<td>a printf style format string</td>
|
753
|
+
</tr>
|
754
|
+
<tr>
|
755
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
756
|
+
<td>optional arguments for the format</td>
|
757
|
+
</tr>
|
758
|
+
</tbody>
|
759
|
+
</table></div>
|
760
|
+
</div>
|
761
|
+
<hr>
|
762
|
+
<div class="refsect2">
|
763
|
+
<a name="gst-debug-log-valist"></a><h3>gst_debug_log_valist ()</h3>
|
764
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_log_valist (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
765
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>,
|
766
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
|
767
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
|
768
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>,
|
769
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
770
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
|
771
|
+
<em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
|
772
|
+
<p>
|
773
|
+
Logs the given message using the currently registered debugging handlers.
|
774
|
+
</p>
|
775
|
+
<div class="variablelist"><table border="0">
|
776
|
+
<col align="left" valign="top">
|
777
|
+
<tbody>
|
778
|
+
<tr>
|
779
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
780
|
+
<td>category to log</td>
|
781
|
+
</tr>
|
782
|
+
<tr>
|
783
|
+
<td><p><span class="term"><em class="parameter"><code>level</code></em> :</span></p></td>
|
784
|
+
<td>level of the message is in</td>
|
785
|
+
</tr>
|
786
|
+
<tr>
|
787
|
+
<td><p><span class="term"><em class="parameter"><code>file</code></em> :</span></p></td>
|
788
|
+
<td>the file that emitted the message, usually the __FILE__ identifier</td>
|
789
|
+
</tr>
|
790
|
+
<tr>
|
791
|
+
<td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
|
792
|
+
<td>the function that emitted the message</td>
|
793
|
+
</tr>
|
794
|
+
<tr>
|
795
|
+
<td><p><span class="term"><em class="parameter"><code>line</code></em> :</span></p></td>
|
796
|
+
<td>the line from that the message was emitted, usually __LINE__</td>
|
797
|
+
</tr>
|
798
|
+
<tr>
|
799
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
800
|
+
<td>the object this message relates to,
|
801
|
+
or NULL if none. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
802
|
+
</td>
|
803
|
+
</tr>
|
804
|
+
<tr>
|
805
|
+
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
806
|
+
<td>a printf style format string</td>
|
807
|
+
</tr>
|
808
|
+
<tr>
|
809
|
+
<td><p><span class="term"><em class="parameter"><code>args</code></em> :</span></p></td>
|
810
|
+
<td>optional arguments for the format</td>
|
811
|
+
</tr>
|
812
|
+
</tbody>
|
813
|
+
</table></div>
|
814
|
+
</div>
|
815
|
+
<hr>
|
816
|
+
<div class="refsect2">
|
817
|
+
<a name="gst-debug-message-get"></a><h3>gst_debug_message_get ()</h3>
|
818
|
+
<pre class="programlisting">const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gst_debug_message_get (<em class="parameter"><code><span class="type">GstDebugMessage</span> *message</code></em>);</pre>
|
819
|
+
<p>
|
820
|
+
Gets the string representation of a <span class="type">GstDebugMessage</span>. This function is used
|
821
|
+
in debug handlers to extract the message.
|
822
|
+
</p>
|
823
|
+
<div class="variablelist"><table border="0">
|
824
|
+
<col align="left" valign="top">
|
825
|
+
<tbody>
|
826
|
+
<tr>
|
827
|
+
<td><p><span class="term"><em class="parameter"><code>message</code></em> :</span></p></td>
|
828
|
+
<td>a debug message</td>
|
829
|
+
</tr>
|
830
|
+
<tr>
|
831
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
832
|
+
<td>the string representation of a <span class="type">GstDebugMessage</span>.</td>
|
833
|
+
</tr>
|
834
|
+
</tbody>
|
835
|
+
</table></div>
|
836
|
+
</div>
|
837
|
+
<hr>
|
838
|
+
<div class="refsect2">
|
839
|
+
<a name="gst-debug-log-default"></a><h3>gst_debug_log_default ()</h3>
|
840
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_log_default (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
841
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>,
|
842
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
|
843
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
|
844
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>,
|
845
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
846
|
+
<em class="parameter"><code><span class="type">GstDebugMessage</span> *message</code></em>,
|
847
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> unused</code></em>);</pre>
|
848
|
+
<p>
|
849
|
+
The default logging handler used by GStreamer. Logging functions get called
|
850
|
+
whenever a macro like GST_DEBUG or similar is used. This function outputs the
|
851
|
+
message and additional info to stderr (or the log file specified via the
|
852
|
+
GST_DEBUG_FILE environment variable).
|
853
|
+
</p>
|
854
|
+
<p>
|
855
|
+
You can add other handlers by using <a class="link" href="gstreamer-GstInfo.html#gst-debug-add-log-function" title="gst_debug_add_log_function ()"><code class="function">gst_debug_add_log_function()</code></a>.
|
856
|
+
And you can remove this handler by calling
|
857
|
+
gst_debug_remove_log_function(gst_debug_log_default);
|
858
|
+
</p>
|
859
|
+
<div class="variablelist"><table border="0">
|
860
|
+
<col align="left" valign="top">
|
861
|
+
<tbody>
|
862
|
+
<tr>
|
863
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
864
|
+
<td>category to log</td>
|
865
|
+
</tr>
|
866
|
+
<tr>
|
867
|
+
<td><p><span class="term"><em class="parameter"><code>level</code></em> :</span></p></td>
|
868
|
+
<td>level of the message</td>
|
869
|
+
</tr>
|
870
|
+
<tr>
|
871
|
+
<td><p><span class="term"><em class="parameter"><code>file</code></em> :</span></p></td>
|
872
|
+
<td>the file that emitted the message, usually the __FILE__ identifier</td>
|
873
|
+
</tr>
|
874
|
+
<tr>
|
875
|
+
<td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
|
876
|
+
<td>the function that emitted the message</td>
|
877
|
+
</tr>
|
878
|
+
<tr>
|
879
|
+
<td><p><span class="term"><em class="parameter"><code>line</code></em> :</span></p></td>
|
880
|
+
<td>the line from that the message was emitted, usually __LINE__</td>
|
881
|
+
</tr>
|
882
|
+
<tr>
|
883
|
+
<td><p><span class="term"><em class="parameter"><code>message</code></em> :</span></p></td>
|
884
|
+
<td>the actual message</td>
|
885
|
+
</tr>
|
886
|
+
<tr>
|
887
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
888
|
+
<td>the object this message relates to,
|
889
|
+
or NULL if none. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
890
|
+
</td>
|
891
|
+
</tr>
|
892
|
+
<tr>
|
893
|
+
<td><p><span class="term"><em class="parameter"><code>unused</code></em> :</span></p></td>
|
894
|
+
<td>an unused variable, reserved for some user_data.</td>
|
895
|
+
</tr>
|
896
|
+
</tbody>
|
897
|
+
</table></div>
|
898
|
+
</div>
|
899
|
+
<hr>
|
900
|
+
<div class="refsect2">
|
901
|
+
<a name="gst-debug-level-get-name"></a><h3>gst_debug_level_get_name ()</h3>
|
902
|
+
<pre class="programlisting">const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gst_debug_level_get_name (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>);</pre>
|
903
|
+
<p>
|
904
|
+
Get the string representation of a debugging level
|
905
|
+
</p>
|
906
|
+
<div class="variablelist"><table border="0">
|
907
|
+
<col align="left" valign="top">
|
908
|
+
<tbody>
|
909
|
+
<tr>
|
910
|
+
<td><p><span class="term"><em class="parameter"><code>level</code></em> :</span></p></td>
|
911
|
+
<td>the level to get the name for</td>
|
912
|
+
</tr>
|
913
|
+
<tr>
|
914
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
915
|
+
<td>the name</td>
|
916
|
+
</tr>
|
917
|
+
</tbody>
|
918
|
+
</table></div>
|
919
|
+
</div>
|
920
|
+
<hr>
|
921
|
+
<div class="refsect2">
|
922
|
+
<a name="gst-debug-add-log-function"></a><h3>gst_debug_add_log_function ()</h3>
|
923
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_add_log_function (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstLogFunction" title="GstLogFunction ()"><span class="type">GstLogFunction</span></a> func</code></em>,
|
924
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
925
|
+
<p>
|
926
|
+
Adds the logging function to the list of logging functions.
|
927
|
+
Be sure to use <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html#G-GNUC-NO-INSTRUMENT:CAPS"><span class="type">G_GNUC_NO_INSTRUMENT</span></a> on that function, it is needed.
|
928
|
+
</p>
|
929
|
+
<div class="variablelist"><table border="0">
|
930
|
+
<col align="left" valign="top">
|
931
|
+
<tbody>
|
932
|
+
<tr>
|
933
|
+
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
934
|
+
<td>the function to use</td>
|
935
|
+
</tr>
|
936
|
+
<tr>
|
937
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
938
|
+
<td>user data. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
|
939
|
+
</td>
|
940
|
+
</tr>
|
941
|
+
</tbody>
|
942
|
+
</table></div>
|
943
|
+
</div>
|
944
|
+
<hr>
|
945
|
+
<div class="refsect2">
|
946
|
+
<a name="gst-debug-remove-log-function"></a><h3>gst_debug_remove_log_function ()</h3>
|
947
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gst_debug_remove_log_function (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstLogFunction" title="GstLogFunction ()"><span class="type">GstLogFunction</span></a> func</code></em>);</pre>
|
948
|
+
<p>
|
949
|
+
Removes all registered instances of the given logging functions.
|
950
|
+
</p>
|
951
|
+
<div class="variablelist"><table border="0">
|
952
|
+
<col align="left" valign="top">
|
953
|
+
<tbody>
|
954
|
+
<tr>
|
955
|
+
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
956
|
+
<td>the log function to remove</td>
|
957
|
+
</tr>
|
958
|
+
<tr>
|
959
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
960
|
+
<td>How many instances of the function were removed</td>
|
961
|
+
</tr>
|
962
|
+
</tbody>
|
963
|
+
</table></div>
|
964
|
+
</div>
|
965
|
+
<hr>
|
966
|
+
<div class="refsect2">
|
967
|
+
<a name="gst-debug-remove-log-function-by-data"></a><h3>gst_debug_remove_log_function_by_data ()</h3>
|
968
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gst_debug_remove_log_function_by_data
|
969
|
+
(<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
970
|
+
<p>
|
971
|
+
Removes all registered instances of log functions with the given user data.
|
972
|
+
</p>
|
973
|
+
<div class="variablelist"><table border="0">
|
974
|
+
<col align="left" valign="top">
|
975
|
+
<tbody>
|
976
|
+
<tr>
|
977
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
978
|
+
<td>user data of the log function to remove</td>
|
979
|
+
</tr>
|
980
|
+
<tr>
|
981
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
982
|
+
<td>How many instances of the function were removed</td>
|
983
|
+
</tr>
|
984
|
+
</tbody>
|
985
|
+
</table></div>
|
986
|
+
</div>
|
987
|
+
<hr>
|
988
|
+
<div class="refsect2">
|
989
|
+
<a name="gst-debug-set-active"></a><h3>gst_debug_set_active ()</h3>
|
990
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_set_active (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> active</code></em>);</pre>
|
991
|
+
<p>
|
992
|
+
If activated, debugging messages are sent to the debugging
|
993
|
+
handlers.
|
994
|
+
It makes sense to deactivate it for speed issues.
|
995
|
+
</p>
|
996
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
997
|
+
<h3 class="title">Note</h3>
|
998
|
+
<p>This function is not threadsafe. It makes sense to only call it
|
999
|
+
during initialization.</p>
|
1000
|
+
</div>
|
1001
|
+
<p>
|
1002
|
+
</p>
|
1003
|
+
<div class="variablelist"><table border="0">
|
1004
|
+
<col align="left" valign="top">
|
1005
|
+
<tbody><tr>
|
1006
|
+
<td><p><span class="term"><em class="parameter"><code>active</code></em> :</span></p></td>
|
1007
|
+
<td>Whether to use debugging output or not</td>
|
1008
|
+
</tr></tbody>
|
1009
|
+
</table></div>
|
1010
|
+
</div>
|
1011
|
+
<hr>
|
1012
|
+
<div class="refsect2">
|
1013
|
+
<a name="gst-debug-is-active"></a><h3>gst_debug_is_active ()</h3>
|
1014
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_debug_is_active (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1015
|
+
<p>
|
1016
|
+
Checks if debugging output is activated.
|
1017
|
+
</p>
|
1018
|
+
<div class="variablelist"><table border="0">
|
1019
|
+
<col align="left" valign="top">
|
1020
|
+
<tbody><tr>
|
1021
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1022
|
+
<td>TRUE, if debugging is activated</td>
|
1023
|
+
</tr></tbody>
|
1024
|
+
</table></div>
|
1025
|
+
</div>
|
1026
|
+
<hr>
|
1027
|
+
<div class="refsect2">
|
1028
|
+
<a name="gst-debug-set-colored"></a><h3>gst_debug_set_colored ()</h3>
|
1029
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_set_colored (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> colored</code></em>);</pre>
|
1030
|
+
<p>
|
1031
|
+
Sets or unsets the use of coloured debugging output.
|
1032
|
+
</p>
|
1033
|
+
<p>
|
1034
|
+
This function may be called before <a class="link" href="gstreamer-Gst.html#gst-init" title="gst_init ()"><code class="function">gst_init()</code></a>.
|
1035
|
+
</p>
|
1036
|
+
<div class="variablelist"><table border="0">
|
1037
|
+
<col align="left" valign="top">
|
1038
|
+
<tbody><tr>
|
1039
|
+
<td><p><span class="term"><em class="parameter"><code>colored</code></em> :</span></p></td>
|
1040
|
+
<td>Whether to use colored output or not</td>
|
1041
|
+
</tr></tbody>
|
1042
|
+
</table></div>
|
1043
|
+
</div>
|
1044
|
+
<hr>
|
1045
|
+
<div class="refsect2">
|
1046
|
+
<a name="gst-debug-is-colored"></a><h3>gst_debug_is_colored ()</h3>
|
1047
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_debug_is_colored (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1048
|
+
<p>
|
1049
|
+
Checks if the debugging output should be colored.
|
1050
|
+
</p>
|
1051
|
+
<div class="variablelist"><table border="0">
|
1052
|
+
<col align="left" valign="top">
|
1053
|
+
<tbody><tr>
|
1054
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1055
|
+
<td>TRUE, if the debug output should be colored.</td>
|
1056
|
+
</tr></tbody>
|
1057
|
+
</table></div>
|
1058
|
+
</div>
|
1059
|
+
<hr>
|
1060
|
+
<div class="refsect2">
|
1061
|
+
<a name="gst-debug-set-default-threshold"></a><h3>gst_debug_set_default_threshold ()</h3>
|
1062
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_set_default_threshold (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>);</pre>
|
1063
|
+
<p>
|
1064
|
+
Sets the default threshold to the given level and updates all categories to
|
1065
|
+
use this threshold.
|
1066
|
+
</p>
|
1067
|
+
<p>
|
1068
|
+
This function may be called before <a class="link" href="gstreamer-Gst.html#gst-init" title="gst_init ()"><code class="function">gst_init()</code></a>.
|
1069
|
+
</p>
|
1070
|
+
<div class="variablelist"><table border="0">
|
1071
|
+
<col align="left" valign="top">
|
1072
|
+
<tbody><tr>
|
1073
|
+
<td><p><span class="term"><em class="parameter"><code>level</code></em> :</span></p></td>
|
1074
|
+
<td>level to set</td>
|
1075
|
+
</tr></tbody>
|
1076
|
+
</table></div>
|
1077
|
+
</div>
|
1078
|
+
<hr>
|
1079
|
+
<div class="refsect2">
|
1080
|
+
<a name="gst-debug-get-default-threshold"></a><h3>gst_debug_get_default_threshold ()</h3>
|
1081
|
+
<pre class="programlisting"><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="returnvalue">GstDebugLevel</span></a> gst_debug_get_default_threshold (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1082
|
+
<p>
|
1083
|
+
Returns the default threshold that is used for new categories.
|
1084
|
+
</p>
|
1085
|
+
<div class="variablelist"><table border="0">
|
1086
|
+
<col align="left" valign="top">
|
1087
|
+
<tbody><tr>
|
1088
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1089
|
+
<td>the default threshold level</td>
|
1090
|
+
</tr></tbody>
|
1091
|
+
</table></div>
|
1092
|
+
</div>
|
1093
|
+
<hr>
|
1094
|
+
<div class="refsect2">
|
1095
|
+
<a name="gst-debug-set-threshold-for-name"></a><h3>gst_debug_set_threshold_for_name ()</h3>
|
1096
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_set_threshold_for_name (<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
|
1097
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>);</pre>
|
1098
|
+
<p>
|
1099
|
+
Sets all categories which match the given glob style pattern to the given
|
1100
|
+
level.
|
1101
|
+
</p>
|
1102
|
+
<div class="variablelist"><table border="0">
|
1103
|
+
<col align="left" valign="top">
|
1104
|
+
<tbody>
|
1105
|
+
<tr>
|
1106
|
+
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
1107
|
+
<td>name of the categories to set</td>
|
1108
|
+
</tr>
|
1109
|
+
<tr>
|
1110
|
+
<td><p><span class="term"><em class="parameter"><code>level</code></em> :</span></p></td>
|
1111
|
+
<td>level to set them to</td>
|
1112
|
+
</tr>
|
1113
|
+
</tbody>
|
1114
|
+
</table></div>
|
1115
|
+
</div>
|
1116
|
+
<hr>
|
1117
|
+
<div class="refsect2">
|
1118
|
+
<a name="gst-debug-unset-threshold-for-name"></a><h3>gst_debug_unset_threshold_for_name ()</h3>
|
1119
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_unset_threshold_for_name (<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
|
1120
|
+
<p>
|
1121
|
+
Resets all categories with the given name back to the default level.
|
1122
|
+
</p>
|
1123
|
+
<div class="variablelist"><table border="0">
|
1124
|
+
<col align="left" valign="top">
|
1125
|
+
<tbody><tr>
|
1126
|
+
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
1127
|
+
<td>name of the categories to set</td>
|
1128
|
+
</tr></tbody>
|
1129
|
+
</table></div>
|
1130
|
+
</div>
|
1131
|
+
<hr>
|
1132
|
+
<div class="refsect2">
|
1133
|
+
<a name="GST-DEBUG-CATEGORY:CAPS"></a><h3>GST_DEBUG_CATEGORY()</h3>
|
1134
|
+
<pre class="programlisting">#define GST_DEBUG_CATEGORY(cat) GstDebugCategory *cat = NULL
|
1135
|
+
</pre>
|
1136
|
+
<p>
|
1137
|
+
Defines a GstDebugCategory variable.
|
1138
|
+
This macro expands to nothing if debugging is disabled.
|
1139
|
+
</p>
|
1140
|
+
<div class="variablelist"><table border="0">
|
1141
|
+
<col align="left" valign="top">
|
1142
|
+
<tbody><tr>
|
1143
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1144
|
+
<td>the category</td>
|
1145
|
+
</tr></tbody>
|
1146
|
+
</table></div>
|
1147
|
+
</div>
|
1148
|
+
<hr>
|
1149
|
+
<div class="refsect2">
|
1150
|
+
<a name="GST-DEBUG-CATEGORY-EXTERN:CAPS"></a><h3>GST_DEBUG_CATEGORY_EXTERN()</h3>
|
1151
|
+
<pre class="programlisting">#define GST_DEBUG_CATEGORY_EXTERN(cat) extern GstDebugCategory *cat
|
1152
|
+
</pre>
|
1153
|
+
<p>
|
1154
|
+
Declares a GstDebugCategory variable as extern. Use in header files.
|
1155
|
+
This macro expands to nothing if debugging is disabled.
|
1156
|
+
</p>
|
1157
|
+
<div class="variablelist"><table border="0">
|
1158
|
+
<col align="left" valign="top">
|
1159
|
+
<tbody><tr>
|
1160
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1161
|
+
<td>the category</td>
|
1162
|
+
</tr></tbody>
|
1163
|
+
</table></div>
|
1164
|
+
</div>
|
1165
|
+
<hr>
|
1166
|
+
<div class="refsect2">
|
1167
|
+
<a name="GST-DEBUG-CATEGORY-STATIC:CAPS"></a><h3>GST_DEBUG_CATEGORY_STATIC()</h3>
|
1168
|
+
<pre class="programlisting">#define GST_DEBUG_CATEGORY_STATIC(cat) static GstDebugCategory *cat = NULL
|
1169
|
+
</pre>
|
1170
|
+
<p>
|
1171
|
+
Defines a static GstDebugCategory variable.
|
1172
|
+
This macro expands to nothing if debugging is disabled.
|
1173
|
+
</p>
|
1174
|
+
<div class="variablelist"><table border="0">
|
1175
|
+
<col align="left" valign="top">
|
1176
|
+
<tbody><tr>
|
1177
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1178
|
+
<td>the category</td>
|
1179
|
+
</tr></tbody>
|
1180
|
+
</table></div>
|
1181
|
+
</div>
|
1182
|
+
<hr>
|
1183
|
+
<div class="refsect2">
|
1184
|
+
<a name="GST-DEBUG-CATEGORY-INIT:CAPS"></a><h3>GST_DEBUG_CATEGORY_INIT()</h3>
|
1185
|
+
<pre class="programlisting">#define GST_DEBUG_CATEGORY_INIT(cat,name,color,description)</pre>
|
1186
|
+
<p>
|
1187
|
+
Initializes a new <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> with the given properties and set to
|
1188
|
+
the default threshold.
|
1189
|
+
</p>
|
1190
|
+
<p>
|
1191
|
+
</p>
|
1192
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1193
|
+
<h3 class="title">Note</h3>
|
1194
|
+
<p>
|
1195
|
+
This macro expands to nothing if debugging is disabled.
|
1196
|
+
</p>
|
1197
|
+
<p>
|
1198
|
+
When naming your category, please follow the following conventions to ensure
|
1199
|
+
that the pattern matching for categories works as expected. It is not
|
1200
|
+
earth-shattering if you don't follow these conventions, but it would be nice
|
1201
|
+
for everyone.
|
1202
|
+
</p>
|
1203
|
+
<p>
|
1204
|
+
If you define a category for a plugin or a feature of it, name the category
|
1205
|
+
like the feature. So if you wanted to write a "filesrc" element, you would
|
1206
|
+
name the category "filesrc". Use lowercase letters only.
|
1207
|
+
If you define more than one category for the same element, append an
|
1208
|
+
underscore and an identifier to your categories, like this: "filesrc_cache"
|
1209
|
+
</p>
|
1210
|
+
<p>
|
1211
|
+
If you create a library or an application using debugging categories, use a
|
1212
|
+
common prefix followed by an underscore for all your categories. GStreamer
|
1213
|
+
uses the GST prefix so GStreamer categories look like "GST_STATES". Be sure
|
1214
|
+
to include uppercase letters.
|
1215
|
+
</p>
|
1216
|
+
</div>
|
1217
|
+
<p>
|
1218
|
+
</p>
|
1219
|
+
<div class="variablelist"><table border="0">
|
1220
|
+
<col align="left" valign="top">
|
1221
|
+
<tbody>
|
1222
|
+
<tr>
|
1223
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1224
|
+
<td>the category to initialize.</td>
|
1225
|
+
</tr>
|
1226
|
+
<tr>
|
1227
|
+
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
1228
|
+
<td>the name of the category.</td>
|
1229
|
+
</tr>
|
1230
|
+
<tr>
|
1231
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
1232
|
+
<td>the colors to use for a color representation or 0 for no color.</td>
|
1233
|
+
</tr>
|
1234
|
+
<tr>
|
1235
|
+
<td><p><span class="term"><em class="parameter"><code>description</code></em> :</span></p></td>
|
1236
|
+
<td>optional description of the category.</td>
|
1237
|
+
</tr>
|
1238
|
+
</tbody>
|
1239
|
+
</table></div>
|
1240
|
+
</div>
|
1241
|
+
<hr>
|
1242
|
+
<div class="refsect2">
|
1243
|
+
<a name="GST-DEBUG-CATEGORY-GET:CAPS"></a><h3>GST_DEBUG_CATEGORY_GET()</h3>
|
1244
|
+
<pre class="programlisting">#define GST_DEBUG_CATEGORY_GET(cat,name)</pre>
|
1245
|
+
<p>
|
1246
|
+
Looks up an existing <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> by its <em class="parameter"><code>name</code></em> and sets <em class="parameter"><code>cat</code></em>. If the
|
1247
|
+
category is not found, but GST_CAT_DEFAULT is defined, that is assigned to
|
1248
|
+
<em class="parameter"><code>cat</code></em>. Otherwise <em class="parameter"><code>cat</code></em> will be NULL.
|
1249
|
+
</p>
|
1250
|
+
<p>
|
1251
|
+
</p>
|
1252
|
+
<div class="informalexample">
|
1253
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1254
|
+
<tbody>
|
1255
|
+
<tr>
|
1256
|
+
<td class="listing_lines" align="right"><pre>1
|
1257
|
+
2
|
1258
|
+
3
|
1259
|
+
4
|
1260
|
+
5
|
1261
|
+
6</pre></td>
|
1262
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-STATIC:CAPS">GST_DEBUG_CATEGORY_STATIC</a></span> <span class="gtkdoc opt">(</span>gst_myplugin_debug<span class="gtkdoc opt">);</span>
|
1263
|
+
<span class="gtkdoc ppc">#define GST_CAT_DEFAULT gst_myplugin_debug</span>
|
1264
|
+
<span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-STATIC:CAPS">GST_DEBUG_CATEGORY_STATIC</a></span> <span class="gtkdoc opt">(</span>GST_CAT_PERFORMANCE<span class="gtkdoc opt">);</span>
|
1265
|
+
<span class="gtkdoc opt">...</span>
|
1266
|
+
<span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-INIT:CAPS">GST_DEBUG_CATEGORY_INIT</a></span> <span class="gtkdoc opt">(</span>gst_myplugin_debug<span class="gtkdoc opt">,</span> <span class="string">"myplugin"</span><span class="gtkdoc opt">,</span> <span class="number">0</span><span class="gtkdoc opt">,</span> <span class="string">"nice element"</span><span class="gtkdoc opt">);</span>
|
1267
|
+
<span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#GST-DEBUG-CATEGORY-GET:CAPS">GST_DEBUG_CATEGORY_GET</a></span> <span class="gtkdoc opt">(</span>GST_CAT_PERFORMANCE<span class="gtkdoc opt">,</span> <span class="string">"GST_PERFORMANCE"</span><span class="gtkdoc opt">);</span></pre></td>
|
1268
|
+
</tr>
|
1269
|
+
</tbody>
|
1270
|
+
</table>
|
1271
|
+
</div>
|
1272
|
+
|
1273
|
+
<p>
|
1274
|
+
</p>
|
1275
|
+
<div class="variablelist"><table border="0">
|
1276
|
+
<col align="left" valign="top">
|
1277
|
+
<tbody>
|
1278
|
+
<tr>
|
1279
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1280
|
+
<td>the category to initialize.</td>
|
1281
|
+
</tr>
|
1282
|
+
<tr>
|
1283
|
+
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
1284
|
+
<td>log category name</td>
|
1285
|
+
</tr>
|
1286
|
+
</tbody>
|
1287
|
+
</table></div>
|
1288
|
+
<p class="since">Since 0.10.24</p>
|
1289
|
+
</div>
|
1290
|
+
<hr>
|
1291
|
+
<div class="refsect2">
|
1292
|
+
<a name="gst-debug-category-free"></a><h3>gst_debug_category_free ()</h3>
|
1293
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_category_free (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);</pre>
|
1294
|
+
<p>
|
1295
|
+
Removes and frees the category and all associated resources.
|
1296
|
+
</p>
|
1297
|
+
<div class="variablelist"><table border="0">
|
1298
|
+
<col align="left" valign="top">
|
1299
|
+
<tbody><tr>
|
1300
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
1301
|
+
<td>
|
1302
|
+
<a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> to free.</td>
|
1303
|
+
</tr></tbody>
|
1304
|
+
</table></div>
|
1305
|
+
</div>
|
1306
|
+
<hr>
|
1307
|
+
<div class="refsect2">
|
1308
|
+
<a name="gst-debug-category-set-threshold"></a><h3>gst_debug_category_set_threshold ()</h3>
|
1309
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_category_set_threshold (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>,
|
1310
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> level</code></em>);</pre>
|
1311
|
+
<p>
|
1312
|
+
Sets the threshold of the category to the given level. Debug information will
|
1313
|
+
only be output if the threshold is lower or equal to the level of the
|
1314
|
+
debugging message.
|
1315
|
+
</p>
|
1316
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1317
|
+
<h3 class="title">Note</h3>
|
1318
|
+
<p>
|
1319
|
+
Do not use this function in production code, because other functions may
|
1320
|
+
change the threshold of categories as side effect. It is however a nice
|
1321
|
+
function to use when debugging (even from gdb).
|
1322
|
+
</p>
|
1323
|
+
</div>
|
1324
|
+
<p>
|
1325
|
+
</p>
|
1326
|
+
<div class="variablelist"><table border="0">
|
1327
|
+
<col align="left" valign="top">
|
1328
|
+
<tbody>
|
1329
|
+
<tr>
|
1330
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
1331
|
+
<td>a <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> to set threshold of.</td>
|
1332
|
+
</tr>
|
1333
|
+
<tr>
|
1334
|
+
<td><p><span class="term"><em class="parameter"><code>level</code></em> :</span></p></td>
|
1335
|
+
<td>the <a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> threshold to set.</td>
|
1336
|
+
</tr>
|
1337
|
+
</tbody>
|
1338
|
+
</table></div>
|
1339
|
+
</div>
|
1340
|
+
<hr>
|
1341
|
+
<div class="refsect2">
|
1342
|
+
<a name="gst-debug-category-reset-threshold"></a><h3>gst_debug_category_reset_threshold ()</h3>
|
1343
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_category_reset_threshold (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);</pre>
|
1344
|
+
<p>
|
1345
|
+
Resets the threshold of the category to the default level. Debug information
|
1346
|
+
will only be output if the threshold is lower or equal to the level of the
|
1347
|
+
debugging message.
|
1348
|
+
Use this function to set the threshold back to where it was after using
|
1349
|
+
<a class="link" href="gstreamer-GstInfo.html#gst-debug-category-set-threshold" title="gst_debug_category_set_threshold ()"><code class="function">gst_debug_category_set_threshold()</code></a>.
|
1350
|
+
</p>
|
1351
|
+
<div class="variablelist"><table border="0">
|
1352
|
+
<col align="left" valign="top">
|
1353
|
+
<tbody><tr>
|
1354
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
1355
|
+
<td>a <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> to reset threshold of.</td>
|
1356
|
+
</tr></tbody>
|
1357
|
+
</table></div>
|
1358
|
+
</div>
|
1359
|
+
<hr>
|
1360
|
+
<div class="refsect2">
|
1361
|
+
<a name="gst-debug-category-get-threshold"></a><h3>gst_debug_category_get_threshold ()</h3>
|
1362
|
+
<pre class="programlisting"><a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="returnvalue">GstDebugLevel</span></a> gst_debug_category_get_threshold (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);</pre>
|
1363
|
+
<p>
|
1364
|
+
Returns the threshold of a <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a>.
|
1365
|
+
</p>
|
1366
|
+
<div class="variablelist"><table border="0">
|
1367
|
+
<col align="left" valign="top">
|
1368
|
+
<tbody>
|
1369
|
+
<tr>
|
1370
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
1371
|
+
<td>a <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> to get threshold of.</td>
|
1372
|
+
</tr>
|
1373
|
+
<tr>
|
1374
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1375
|
+
<td>the <a class="link" href="gstreamer-GstInfo.html#GstDebugLevel" title="enum GstDebugLevel"><span class="type">GstDebugLevel</span></a> that is used as threshold.</td>
|
1376
|
+
</tr>
|
1377
|
+
</tbody>
|
1378
|
+
</table></div>
|
1379
|
+
</div>
|
1380
|
+
<hr>
|
1381
|
+
<div class="refsect2">
|
1382
|
+
<a name="gst-debug-category-get-name"></a><h3>gst_debug_category_get_name ()</h3>
|
1383
|
+
<pre class="programlisting">const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gst_debug_category_get_name (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);</pre>
|
1384
|
+
<p>
|
1385
|
+
Returns the name of a debug category.
|
1386
|
+
</p>
|
1387
|
+
<div class="variablelist"><table border="0">
|
1388
|
+
<col align="left" valign="top">
|
1389
|
+
<tbody>
|
1390
|
+
<tr>
|
1391
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
1392
|
+
<td>a <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> to get name of.</td>
|
1393
|
+
</tr>
|
1394
|
+
<tr>
|
1395
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1396
|
+
<td>the name of the category.</td>
|
1397
|
+
</tr>
|
1398
|
+
</tbody>
|
1399
|
+
</table></div>
|
1400
|
+
</div>
|
1401
|
+
<hr>
|
1402
|
+
<div class="refsect2">
|
1403
|
+
<a name="gst-debug-category-get-color"></a><h3>gst_debug_category_get_color ()</h3>
|
1404
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gst_debug_category_get_color (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);</pre>
|
1405
|
+
<p>
|
1406
|
+
Returns the color of a debug category used when printing output in this
|
1407
|
+
category.
|
1408
|
+
</p>
|
1409
|
+
<div class="variablelist"><table border="0">
|
1410
|
+
<col align="left" valign="top">
|
1411
|
+
<tbody>
|
1412
|
+
<tr>
|
1413
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
1414
|
+
<td>a <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> to get the color of.</td>
|
1415
|
+
</tr>
|
1416
|
+
<tr>
|
1417
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1418
|
+
<td>the color of the category.</td>
|
1419
|
+
</tr>
|
1420
|
+
</tbody>
|
1421
|
+
</table></div>
|
1422
|
+
</div>
|
1423
|
+
<hr>
|
1424
|
+
<div class="refsect2">
|
1425
|
+
<a name="gst-debug-category-get-description"></a><h3>gst_debug_category_get_description ()</h3>
|
1426
|
+
<pre class="programlisting">const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gst_debug_category_get_description (<em class="parameter"><code><a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> *category</code></em>);</pre>
|
1427
|
+
<p>
|
1428
|
+
Returns the description of a debug category.
|
1429
|
+
</p>
|
1430
|
+
<div class="variablelist"><table border="0">
|
1431
|
+
<col align="left" valign="top">
|
1432
|
+
<tbody>
|
1433
|
+
<tr>
|
1434
|
+
<td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
|
1435
|
+
<td>a <a class="link" href="gstreamer-GstInfo.html#GstDebugCategory" title="struct GstDebugCategory"><span class="type">GstDebugCategory</span></a> to get the description of.</td>
|
1436
|
+
</tr>
|
1437
|
+
<tr>
|
1438
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1439
|
+
<td>the description of the category.</td>
|
1440
|
+
</tr>
|
1441
|
+
</tbody>
|
1442
|
+
</table></div>
|
1443
|
+
</div>
|
1444
|
+
<hr>
|
1445
|
+
<div class="refsect2">
|
1446
|
+
<a name="gst-debug-get-all-categories"></a><h3>gst_debug_get_all_categories ()</h3>
|
1447
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="returnvalue">GSList</span></a> * gst_debug_get_all_categories (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1448
|
+
<p>
|
1449
|
+
Returns a snapshot of a all categories that are currently in use . This list
|
1450
|
+
may change anytime.
|
1451
|
+
The caller has to free the list after use.
|
1452
|
+
</p>
|
1453
|
+
<div class="variablelist"><table border="0">
|
1454
|
+
<col align="left" valign="top">
|
1455
|
+
<tbody><tr>
|
1456
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1457
|
+
<td>the list of
|
1458
|
+
debug categories. <span class="annotation">[<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> Gst.DebugCategory]</span>
|
1459
|
+
</td>
|
1460
|
+
</tr></tbody>
|
1461
|
+
</table></div>
|
1462
|
+
</div>
|
1463
|
+
<hr>
|
1464
|
+
<div class="refsect2">
|
1465
|
+
<a name="gst-debug-construct-term-color"></a><h3>gst_debug_construct_term_color ()</h3>
|
1466
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gst_debug_construct_term_color (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> colorinfo</code></em>);</pre>
|
1467
|
+
<p>
|
1468
|
+
Constructs a string that can be used for getting the desired color in color
|
1469
|
+
terminals.
|
1470
|
+
You need to free the string after use.
|
1471
|
+
</p>
|
1472
|
+
<div class="variablelist"><table border="0">
|
1473
|
+
<col align="left" valign="top">
|
1474
|
+
<tbody>
|
1475
|
+
<tr>
|
1476
|
+
<td><p><span class="term"><em class="parameter"><code>colorinfo</code></em> :</span></p></td>
|
1477
|
+
<td>the color info</td>
|
1478
|
+
</tr>
|
1479
|
+
<tr>
|
1480
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1481
|
+
<td>a string containing the color
|
1482
|
+
definition. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> gchar*]</span>
|
1483
|
+
</td>
|
1484
|
+
</tr>
|
1485
|
+
</tbody>
|
1486
|
+
</table></div>
|
1487
|
+
</div>
|
1488
|
+
<hr>
|
1489
|
+
<div class="refsect2">
|
1490
|
+
<a name="gst-debug-construct-win-color"></a><h3>gst_debug_construct_win_color ()</h3>
|
1491
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gst_debug_construct_win_color (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> colorinfo</code></em>);</pre>
|
1492
|
+
<p>
|
1493
|
+
Constructs an integer that can be used for getting the desired color in
|
1494
|
+
windows' terminals (cmd.exe). As there is no mean to underline, we simply
|
1495
|
+
ignore this attribute.
|
1496
|
+
</p>
|
1497
|
+
<p>
|
1498
|
+
This function returns 0 on non-windows machines.
|
1499
|
+
</p>
|
1500
|
+
<div class="variablelist"><table border="0">
|
1501
|
+
<col align="left" valign="top">
|
1502
|
+
<tbody>
|
1503
|
+
<tr>
|
1504
|
+
<td><p><span class="term"><em class="parameter"><code>colorinfo</code></em> :</span></p></td>
|
1505
|
+
<td>the color info</td>
|
1506
|
+
</tr>
|
1507
|
+
<tr>
|
1508
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1509
|
+
<td>an integer containing the color definition</td>
|
1510
|
+
</tr>
|
1511
|
+
</tbody>
|
1512
|
+
</table></div>
|
1513
|
+
<p class="since">Since 0.10.23</p>
|
1514
|
+
</div>
|
1515
|
+
<hr>
|
1516
|
+
<div class="refsect2">
|
1517
|
+
<a name="GST-CAT-LEVEL-LOG:CAPS"></a><h3>GST_CAT_LEVEL_LOG()</h3>
|
1518
|
+
<pre class="programlisting">#define GST_CAT_LEVEL_LOG(cat,level,object,...)</pre>
|
1519
|
+
<p>
|
1520
|
+
Outputs a debugging message. This is the most general macro for outputting
|
1521
|
+
debugging messages. You will probably want to use one of the ones described
|
1522
|
+
below.
|
1523
|
+
</p>
|
1524
|
+
<div class="variablelist"><table border="0">
|
1525
|
+
<col align="left" valign="top">
|
1526
|
+
<tbody>
|
1527
|
+
<tr>
|
1528
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1529
|
+
<td>category to use</td>
|
1530
|
+
</tr>
|
1531
|
+
<tr>
|
1532
|
+
<td><p><span class="term"><em class="parameter"><code>level</code></em> :</span></p></td>
|
1533
|
+
<td>the severity of the message</td>
|
1534
|
+
</tr>
|
1535
|
+
<tr>
|
1536
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
1537
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to or NULL if none</td>
|
1538
|
+
</tr>
|
1539
|
+
<tr>
|
1540
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1541
|
+
<td>A printf-style message to output</td>
|
1542
|
+
</tr>
|
1543
|
+
</tbody>
|
1544
|
+
</table></div>
|
1545
|
+
</div>
|
1546
|
+
<hr>
|
1547
|
+
<div class="refsect2">
|
1548
|
+
<a name="GST-CAT-ERROR-OBJECT:CAPS"></a><h3>GST_CAT_ERROR_OBJECT()</h3>
|
1549
|
+
<pre class="programlisting">#define GST_CAT_ERROR_OBJECT(cat,obj,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_ERROR, obj, __VA_ARGS__)
|
1550
|
+
</pre>
|
1551
|
+
<p>
|
1552
|
+
Output an error message belonging to the given object in the given category.
|
1553
|
+
</p>
|
1554
|
+
<div class="variablelist"><table border="0">
|
1555
|
+
<col align="left" valign="top">
|
1556
|
+
<tbody>
|
1557
|
+
<tr>
|
1558
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1559
|
+
<td>category to use</td>
|
1560
|
+
</tr>
|
1561
|
+
<tr>
|
1562
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1563
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1564
|
+
</tr>
|
1565
|
+
<tr>
|
1566
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1567
|
+
<td>printf-style message to output</td>
|
1568
|
+
</tr>
|
1569
|
+
</tbody>
|
1570
|
+
</table></div>
|
1571
|
+
</div>
|
1572
|
+
<hr>
|
1573
|
+
<div class="refsect2">
|
1574
|
+
<a name="GST-CAT-WARNING-OBJECT:CAPS"></a><h3>GST_CAT_WARNING_OBJECT()</h3>
|
1575
|
+
<pre class="programlisting">#define GST_CAT_WARNING_OBJECT(cat,obj,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_WARNING, obj, __VA_ARGS__)
|
1576
|
+
</pre>
|
1577
|
+
<p>
|
1578
|
+
Output a warning message belonging to the given object in the given category.
|
1579
|
+
</p>
|
1580
|
+
<div class="variablelist"><table border="0">
|
1581
|
+
<col align="left" valign="top">
|
1582
|
+
<tbody>
|
1583
|
+
<tr>
|
1584
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1585
|
+
<td>category to use</td>
|
1586
|
+
</tr>
|
1587
|
+
<tr>
|
1588
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1589
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1590
|
+
</tr>
|
1591
|
+
<tr>
|
1592
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1593
|
+
<td>printf-style message to output</td>
|
1594
|
+
</tr>
|
1595
|
+
</tbody>
|
1596
|
+
</table></div>
|
1597
|
+
</div>
|
1598
|
+
<hr>
|
1599
|
+
<div class="refsect2">
|
1600
|
+
<a name="GST-CAT-INFO-OBJECT:CAPS"></a><h3>GST_CAT_INFO_OBJECT()</h3>
|
1601
|
+
<pre class="programlisting">#define GST_CAT_INFO_OBJECT(cat,obj,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_INFO, obj, __VA_ARGS__)
|
1602
|
+
</pre>
|
1603
|
+
<p>
|
1604
|
+
Output an informational message belonging to the given object in the given
|
1605
|
+
category.
|
1606
|
+
</p>
|
1607
|
+
<div class="variablelist"><table border="0">
|
1608
|
+
<col align="left" valign="top">
|
1609
|
+
<tbody>
|
1610
|
+
<tr>
|
1611
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1612
|
+
<td>category to use</td>
|
1613
|
+
</tr>
|
1614
|
+
<tr>
|
1615
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1616
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1617
|
+
</tr>
|
1618
|
+
<tr>
|
1619
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1620
|
+
<td>printf-style message to output</td>
|
1621
|
+
</tr>
|
1622
|
+
</tbody>
|
1623
|
+
</table></div>
|
1624
|
+
</div>
|
1625
|
+
<hr>
|
1626
|
+
<div class="refsect2">
|
1627
|
+
<a name="GST-CAT-DEBUG-OBJECT:CAPS"></a><h3>GST_CAT_DEBUG_OBJECT()</h3>
|
1628
|
+
<pre class="programlisting">#define GST_CAT_DEBUG_OBJECT(cat,obj,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_DEBUG, obj, __VA_ARGS__)
|
1629
|
+
</pre>
|
1630
|
+
<p>
|
1631
|
+
Output an debugging message belonging to the given object in the given category.
|
1632
|
+
</p>
|
1633
|
+
<div class="variablelist"><table border="0">
|
1634
|
+
<col align="left" valign="top">
|
1635
|
+
<tbody>
|
1636
|
+
<tr>
|
1637
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1638
|
+
<td>category to use</td>
|
1639
|
+
</tr>
|
1640
|
+
<tr>
|
1641
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1642
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1643
|
+
</tr>
|
1644
|
+
<tr>
|
1645
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1646
|
+
<td>printf-style message to output</td>
|
1647
|
+
</tr>
|
1648
|
+
</tbody>
|
1649
|
+
</table></div>
|
1650
|
+
</div>
|
1651
|
+
<hr>
|
1652
|
+
<div class="refsect2">
|
1653
|
+
<a name="GST-CAT-LOG-OBJECT:CAPS"></a><h3>GST_CAT_LOG_OBJECT()</h3>
|
1654
|
+
<pre class="programlisting">#define GST_CAT_LOG_OBJECT(cat,obj,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_LOG, obj, __VA_ARGS__)
|
1655
|
+
</pre>
|
1656
|
+
<p>
|
1657
|
+
Output an logging message belonging to the given object in the given category.
|
1658
|
+
</p>
|
1659
|
+
<div class="variablelist"><table border="0">
|
1660
|
+
<col align="left" valign="top">
|
1661
|
+
<tbody>
|
1662
|
+
<tr>
|
1663
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1664
|
+
<td>category to use</td>
|
1665
|
+
</tr>
|
1666
|
+
<tr>
|
1667
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1668
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1669
|
+
</tr>
|
1670
|
+
<tr>
|
1671
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1672
|
+
<td>printf-style message to output</td>
|
1673
|
+
</tr>
|
1674
|
+
</tbody>
|
1675
|
+
</table></div>
|
1676
|
+
</div>
|
1677
|
+
<hr>
|
1678
|
+
<div class="refsect2">
|
1679
|
+
<a name="GST-CAT-FIXME-OBJECT:CAPS"></a><h3>GST_CAT_FIXME_OBJECT()</h3>
|
1680
|
+
<pre class="programlisting">#define GST_CAT_FIXME_OBJECT(cat,obj,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_FIXME, obj, __VA_ARGS__)
|
1681
|
+
</pre>
|
1682
|
+
<p>
|
1683
|
+
Output a fixme message belonging to the given object in the given category.
|
1684
|
+
</p>
|
1685
|
+
<div class="variablelist"><table border="0">
|
1686
|
+
<col align="left" valign="top">
|
1687
|
+
<tbody>
|
1688
|
+
<tr>
|
1689
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1690
|
+
<td>category to use</td>
|
1691
|
+
</tr>
|
1692
|
+
<tr>
|
1693
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1694
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1695
|
+
</tr>
|
1696
|
+
<tr>
|
1697
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1698
|
+
<td>printf-style message to output</td>
|
1699
|
+
</tr>
|
1700
|
+
</tbody>
|
1701
|
+
</table></div>
|
1702
|
+
<p class="since">Since 0.10.23</p>
|
1703
|
+
</div>
|
1704
|
+
<hr>
|
1705
|
+
<div class="refsect2">
|
1706
|
+
<a name="GST-CAT-TRACE-OBJECT:CAPS"></a><h3>GST_CAT_TRACE_OBJECT()</h3>
|
1707
|
+
<pre class="programlisting">#define GST_CAT_TRACE_OBJECT(cat,obj,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_TRACE, obj, __VA_ARGS__)
|
1708
|
+
</pre>
|
1709
|
+
<p>
|
1710
|
+
Output a tracing message belonging to the given object in the given
|
1711
|
+
category.
|
1712
|
+
</p>
|
1713
|
+
<div class="variablelist"><table border="0">
|
1714
|
+
<col align="left" valign="top">
|
1715
|
+
<tbody>
|
1716
|
+
<tr>
|
1717
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1718
|
+
<td>category to use</td>
|
1719
|
+
</tr>
|
1720
|
+
<tr>
|
1721
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1722
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1723
|
+
</tr>
|
1724
|
+
<tr>
|
1725
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1726
|
+
<td>printf-style message to output</td>
|
1727
|
+
</tr>
|
1728
|
+
</tbody>
|
1729
|
+
</table></div>
|
1730
|
+
<p class="since">Since 0.10.30</p>
|
1731
|
+
</div>
|
1732
|
+
<hr>
|
1733
|
+
<div class="refsect2">
|
1734
|
+
<a name="GST-CAT-MEMDUMP-OBJECT:CAPS"></a><h3>GST_CAT_MEMDUMP_OBJECT()</h3>
|
1735
|
+
<pre class="programlisting">#define GST_CAT_MEMDUMP_OBJECT(cat,obj,msg,data,length)</pre>
|
1736
|
+
<p>
|
1737
|
+
Output a hexdump of <em class="parameter"><code>data</code></em> relating to the given object in the given
|
1738
|
+
category.
|
1739
|
+
</p>
|
1740
|
+
<div class="variablelist"><table border="0">
|
1741
|
+
<col align="left" valign="top">
|
1742
|
+
<tbody>
|
1743
|
+
<tr>
|
1744
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1745
|
+
<td>category to use</td>
|
1746
|
+
</tr>
|
1747
|
+
<tr>
|
1748
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1749
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1750
|
+
</tr>
|
1751
|
+
<tr>
|
1752
|
+
<td><p><span class="term"><em class="parameter"><code>msg</code></em> :</span></p></td>
|
1753
|
+
<td>message string to log with the data</td>
|
1754
|
+
</tr>
|
1755
|
+
<tr>
|
1756
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
1757
|
+
<td>pointer to the data to output</td>
|
1758
|
+
</tr>
|
1759
|
+
<tr>
|
1760
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
1761
|
+
<td>length of the data to output</td>
|
1762
|
+
</tr>
|
1763
|
+
</tbody>
|
1764
|
+
</table></div>
|
1765
|
+
<p class="since">Since 0.10.23</p>
|
1766
|
+
</div>
|
1767
|
+
<hr>
|
1768
|
+
<div class="refsect2">
|
1769
|
+
<a name="GST-CAT-ERROR:CAPS"></a><h3>GST_CAT_ERROR()</h3>
|
1770
|
+
<pre class="programlisting">#define GST_CAT_ERROR(cat,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_ERROR, NULL, __VA_ARGS__)
|
1771
|
+
</pre>
|
1772
|
+
<p>
|
1773
|
+
Output an error message in the given category.
|
1774
|
+
</p>
|
1775
|
+
<div class="variablelist"><table border="0">
|
1776
|
+
<col align="left" valign="top">
|
1777
|
+
<tbody>
|
1778
|
+
<tr>
|
1779
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1780
|
+
<td>category to use</td>
|
1781
|
+
</tr>
|
1782
|
+
<tr>
|
1783
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1784
|
+
<td>printf-style message to output</td>
|
1785
|
+
</tr>
|
1786
|
+
</tbody>
|
1787
|
+
</table></div>
|
1788
|
+
</div>
|
1789
|
+
<hr>
|
1790
|
+
<div class="refsect2">
|
1791
|
+
<a name="GST-CAT-WARNING:CAPS"></a><h3>GST_CAT_WARNING()</h3>
|
1792
|
+
<pre class="programlisting">#define GST_CAT_WARNING(cat,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_WARNING, NULL, __VA_ARGS__)
|
1793
|
+
</pre>
|
1794
|
+
<p>
|
1795
|
+
Output an warning message in the given category.
|
1796
|
+
</p>
|
1797
|
+
<div class="variablelist"><table border="0">
|
1798
|
+
<col align="left" valign="top">
|
1799
|
+
<tbody>
|
1800
|
+
<tr>
|
1801
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1802
|
+
<td>category to use</td>
|
1803
|
+
</tr>
|
1804
|
+
<tr>
|
1805
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1806
|
+
<td>printf-style message to output</td>
|
1807
|
+
</tr>
|
1808
|
+
</tbody>
|
1809
|
+
</table></div>
|
1810
|
+
</div>
|
1811
|
+
<hr>
|
1812
|
+
<div class="refsect2">
|
1813
|
+
<a name="GST-CAT-INFO:CAPS"></a><h3>GST_CAT_INFO()</h3>
|
1814
|
+
<pre class="programlisting">#define GST_CAT_INFO(cat,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_INFO, NULL, __VA_ARGS__)
|
1815
|
+
</pre>
|
1816
|
+
<p>
|
1817
|
+
Output an informational message in the given category.
|
1818
|
+
</p>
|
1819
|
+
<div class="variablelist"><table border="0">
|
1820
|
+
<col align="left" valign="top">
|
1821
|
+
<tbody>
|
1822
|
+
<tr>
|
1823
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1824
|
+
<td>category to use</td>
|
1825
|
+
</tr>
|
1826
|
+
<tr>
|
1827
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1828
|
+
<td>printf-style message to output</td>
|
1829
|
+
</tr>
|
1830
|
+
</tbody>
|
1831
|
+
</table></div>
|
1832
|
+
</div>
|
1833
|
+
<hr>
|
1834
|
+
<div class="refsect2">
|
1835
|
+
<a name="GST-CAT-DEBUG:CAPS"></a><h3>GST_CAT_DEBUG()</h3>
|
1836
|
+
<pre class="programlisting">#define GST_CAT_DEBUG(cat,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_DEBUG, NULL, __VA_ARGS__)
|
1837
|
+
</pre>
|
1838
|
+
<p>
|
1839
|
+
Output an debugging message in the given category.
|
1840
|
+
</p>
|
1841
|
+
<div class="variablelist"><table border="0">
|
1842
|
+
<col align="left" valign="top">
|
1843
|
+
<tbody>
|
1844
|
+
<tr>
|
1845
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1846
|
+
<td>category to use</td>
|
1847
|
+
</tr>
|
1848
|
+
<tr>
|
1849
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1850
|
+
<td>printf-style message to output</td>
|
1851
|
+
</tr>
|
1852
|
+
</tbody>
|
1853
|
+
</table></div>
|
1854
|
+
</div>
|
1855
|
+
<hr>
|
1856
|
+
<div class="refsect2">
|
1857
|
+
<a name="GST-CAT-LOG:CAPS"></a><h3>GST_CAT_LOG()</h3>
|
1858
|
+
<pre class="programlisting">#define GST_CAT_LOG(cat,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_LOG, NULL, __VA_ARGS__)
|
1859
|
+
</pre>
|
1860
|
+
<p>
|
1861
|
+
Output an logging message in the given category.
|
1862
|
+
</p>
|
1863
|
+
<div class="variablelist"><table border="0">
|
1864
|
+
<col align="left" valign="top">
|
1865
|
+
<tbody>
|
1866
|
+
<tr>
|
1867
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1868
|
+
<td>category to use</td>
|
1869
|
+
</tr>
|
1870
|
+
<tr>
|
1871
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1872
|
+
<td>printf-style message to output</td>
|
1873
|
+
</tr>
|
1874
|
+
</tbody>
|
1875
|
+
</table></div>
|
1876
|
+
</div>
|
1877
|
+
<hr>
|
1878
|
+
<div class="refsect2">
|
1879
|
+
<a name="GST-CAT-FIXME:CAPS"></a><h3>GST_CAT_FIXME()</h3>
|
1880
|
+
<pre class="programlisting">#define GST_CAT_FIXME(cat,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_FIXME, NULL, __VA_ARGS__)
|
1881
|
+
</pre>
|
1882
|
+
<p>
|
1883
|
+
Output an fixme message in the given category.
|
1884
|
+
</p>
|
1885
|
+
<div class="variablelist"><table border="0">
|
1886
|
+
<col align="left" valign="top">
|
1887
|
+
<tbody>
|
1888
|
+
<tr>
|
1889
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1890
|
+
<td>category to use</td>
|
1891
|
+
</tr>
|
1892
|
+
<tr>
|
1893
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1894
|
+
<td>printf-style message to output</td>
|
1895
|
+
</tr>
|
1896
|
+
</tbody>
|
1897
|
+
</table></div>
|
1898
|
+
<p class="since">Since 0.10.23</p>
|
1899
|
+
</div>
|
1900
|
+
<hr>
|
1901
|
+
<div class="refsect2">
|
1902
|
+
<a name="GST-CAT-TRACE:CAPS"></a><h3>GST_CAT_TRACE()</h3>
|
1903
|
+
<pre class="programlisting">#define GST_CAT_TRACE(cat,...) GST_CAT_LEVEL_LOG (cat, GST_LEVEL_TRACE, NULL, __VA_ARGS__)
|
1904
|
+
</pre>
|
1905
|
+
<p>
|
1906
|
+
Output a tracing message in the given category.
|
1907
|
+
</p>
|
1908
|
+
<div class="variablelist"><table border="0">
|
1909
|
+
<col align="left" valign="top">
|
1910
|
+
<tbody>
|
1911
|
+
<tr>
|
1912
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1913
|
+
<td>category to use</td>
|
1914
|
+
</tr>
|
1915
|
+
<tr>
|
1916
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1917
|
+
<td>printf-style message to output</td>
|
1918
|
+
</tr>
|
1919
|
+
</tbody>
|
1920
|
+
</table></div>
|
1921
|
+
<p class="since">Since 0.10.30</p>
|
1922
|
+
</div>
|
1923
|
+
<hr>
|
1924
|
+
<div class="refsect2">
|
1925
|
+
<a name="GST-CAT-MEMDUMP:CAPS"></a><h3>GST_CAT_MEMDUMP()</h3>
|
1926
|
+
<pre class="programlisting">#define GST_CAT_MEMDUMP(cat,msg,data,length)</pre>
|
1927
|
+
<p>
|
1928
|
+
Output a hexdump of <em class="parameter"><code>data</code></em> in the given category.
|
1929
|
+
</p>
|
1930
|
+
<div class="variablelist"><table border="0">
|
1931
|
+
<col align="left" valign="top">
|
1932
|
+
<tbody>
|
1933
|
+
<tr>
|
1934
|
+
<td><p><span class="term"><em class="parameter"><code>cat</code></em> :</span></p></td>
|
1935
|
+
<td>category to use</td>
|
1936
|
+
</tr>
|
1937
|
+
<tr>
|
1938
|
+
<td><p><span class="term"><em class="parameter"><code>msg</code></em> :</span></p></td>
|
1939
|
+
<td>message string to log with the data</td>
|
1940
|
+
</tr>
|
1941
|
+
<tr>
|
1942
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
1943
|
+
<td>pointer to the data to output</td>
|
1944
|
+
</tr>
|
1945
|
+
<tr>
|
1946
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
1947
|
+
<td>length of the data to output</td>
|
1948
|
+
</tr>
|
1949
|
+
</tbody>
|
1950
|
+
</table></div>
|
1951
|
+
<p class="since">Since 0.10.23</p>
|
1952
|
+
</div>
|
1953
|
+
<hr>
|
1954
|
+
<div class="refsect2">
|
1955
|
+
<a name="GST-ERROR-OBJECT:CAPS"></a><h3>GST_ERROR_OBJECT()</h3>
|
1956
|
+
<pre class="programlisting">#define GST_ERROR_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_ERROR, obj, __VA_ARGS__)
|
1957
|
+
</pre>
|
1958
|
+
<p>
|
1959
|
+
Output an error message belonging to the given object in the default category.
|
1960
|
+
</p>
|
1961
|
+
<div class="variablelist"><table border="0">
|
1962
|
+
<col align="left" valign="top">
|
1963
|
+
<tbody>
|
1964
|
+
<tr>
|
1965
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1966
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1967
|
+
</tr>
|
1968
|
+
<tr>
|
1969
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1970
|
+
<td>printf-style message to output</td>
|
1971
|
+
</tr>
|
1972
|
+
</tbody>
|
1973
|
+
</table></div>
|
1974
|
+
</div>
|
1975
|
+
<hr>
|
1976
|
+
<div class="refsect2">
|
1977
|
+
<a name="GST-WARNING-OBJECT:CAPS"></a><h3>GST_WARNING_OBJECT()</h3>
|
1978
|
+
<pre class="programlisting">#define GST_WARNING_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_WARNING, obj, __VA_ARGS__)
|
1979
|
+
</pre>
|
1980
|
+
<p>
|
1981
|
+
Output a warning message belonging to the given object in the default category.
|
1982
|
+
</p>
|
1983
|
+
<div class="variablelist"><table border="0">
|
1984
|
+
<col align="left" valign="top">
|
1985
|
+
<tbody>
|
1986
|
+
<tr>
|
1987
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
1988
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
1989
|
+
</tr>
|
1990
|
+
<tr>
|
1991
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1992
|
+
<td>printf-style message to output</td>
|
1993
|
+
</tr>
|
1994
|
+
</tbody>
|
1995
|
+
</table></div>
|
1996
|
+
</div>
|
1997
|
+
<hr>
|
1998
|
+
<div class="refsect2">
|
1999
|
+
<a name="GST-INFO-OBJECT:CAPS"></a><h3>GST_INFO_OBJECT()</h3>
|
2000
|
+
<pre class="programlisting">#define GST_INFO_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_INFO, obj, __VA_ARGS__)
|
2001
|
+
</pre>
|
2002
|
+
<p>
|
2003
|
+
Output an informational message belonging to the given object in the default
|
2004
|
+
category.
|
2005
|
+
</p>
|
2006
|
+
<div class="variablelist"><table border="0">
|
2007
|
+
<col align="left" valign="top">
|
2008
|
+
<tbody>
|
2009
|
+
<tr>
|
2010
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
2011
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
2012
|
+
</tr>
|
2013
|
+
<tr>
|
2014
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2015
|
+
<td>printf-style message to output</td>
|
2016
|
+
</tr>
|
2017
|
+
</tbody>
|
2018
|
+
</table></div>
|
2019
|
+
</div>
|
2020
|
+
<hr>
|
2021
|
+
<div class="refsect2">
|
2022
|
+
<a name="GST-DEBUG-OBJECT:CAPS"></a><h3>GST_DEBUG_OBJECT()</h3>
|
2023
|
+
<pre class="programlisting">#define GST_DEBUG_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_DEBUG, obj, __VA_ARGS__)
|
2024
|
+
</pre>
|
2025
|
+
<p>
|
2026
|
+
Output a debugging message belonging to the given object in the default
|
2027
|
+
category.
|
2028
|
+
</p>
|
2029
|
+
<div class="variablelist"><table border="0">
|
2030
|
+
<col align="left" valign="top">
|
2031
|
+
<tbody>
|
2032
|
+
<tr>
|
2033
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
2034
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
2035
|
+
</tr>
|
2036
|
+
<tr>
|
2037
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2038
|
+
<td>printf-style message to output</td>
|
2039
|
+
</tr>
|
2040
|
+
</tbody>
|
2041
|
+
</table></div>
|
2042
|
+
</div>
|
2043
|
+
<hr>
|
2044
|
+
<div class="refsect2">
|
2045
|
+
<a name="GST-LOG-OBJECT:CAPS"></a><h3>GST_LOG_OBJECT()</h3>
|
2046
|
+
<pre class="programlisting">#define GST_LOG_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_LOG, obj, __VA_ARGS__)
|
2047
|
+
</pre>
|
2048
|
+
<p>
|
2049
|
+
Output a logging message belonging to the given object in the default category.
|
2050
|
+
</p>
|
2051
|
+
<div class="variablelist"><table border="0">
|
2052
|
+
<col align="left" valign="top">
|
2053
|
+
<tbody>
|
2054
|
+
<tr>
|
2055
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
2056
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
2057
|
+
</tr>
|
2058
|
+
<tr>
|
2059
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2060
|
+
<td>printf-style message to output</td>
|
2061
|
+
</tr>
|
2062
|
+
</tbody>
|
2063
|
+
</table></div>
|
2064
|
+
</div>
|
2065
|
+
<hr>
|
2066
|
+
<div class="refsect2">
|
2067
|
+
<a name="GST-FIXME-OBJECT:CAPS"></a><h3>GST_FIXME_OBJECT()</h3>
|
2068
|
+
<pre class="programlisting">#define GST_FIXME_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_FIXME, obj, __VA_ARGS__)
|
2069
|
+
</pre>
|
2070
|
+
<p>
|
2071
|
+
Output a fixme message belonging to the given object in the default category.
|
2072
|
+
</p>
|
2073
|
+
<div class="variablelist"><table border="0">
|
2074
|
+
<col align="left" valign="top">
|
2075
|
+
<tbody>
|
2076
|
+
<tr>
|
2077
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
2078
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
2079
|
+
</tr>
|
2080
|
+
<tr>
|
2081
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2082
|
+
<td>printf-style message to output</td>
|
2083
|
+
</tr>
|
2084
|
+
</tbody>
|
2085
|
+
</table></div>
|
2086
|
+
<p class="since">Since 0.10.23</p>
|
2087
|
+
</div>
|
2088
|
+
<hr>
|
2089
|
+
<div class="refsect2">
|
2090
|
+
<a name="GST-TRACE-OBJECT:CAPS"></a><h3>GST_TRACE_OBJECT()</h3>
|
2091
|
+
<pre class="programlisting">#define GST_TRACE_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_TRACE, obj, __VA_ARGS__)
|
2092
|
+
</pre>
|
2093
|
+
<p>
|
2094
|
+
Output a tracing message belonging to the given object in the default category.
|
2095
|
+
</p>
|
2096
|
+
<div class="variablelist"><table border="0">
|
2097
|
+
<col align="left" valign="top">
|
2098
|
+
<tbody>
|
2099
|
+
<tr>
|
2100
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
2101
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
2102
|
+
</tr>
|
2103
|
+
<tr>
|
2104
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2105
|
+
<td>printf-style message to output</td>
|
2106
|
+
</tr>
|
2107
|
+
</tbody>
|
2108
|
+
</table></div>
|
2109
|
+
<p class="since">Since 0.10.30</p>
|
2110
|
+
</div>
|
2111
|
+
<hr>
|
2112
|
+
<div class="refsect2">
|
2113
|
+
<a name="GST-MEMDUMP-OBJECT:CAPS"></a><h3>GST_MEMDUMP_OBJECT()</h3>
|
2114
|
+
<pre class="programlisting">#define GST_MEMDUMP_OBJECT(obj,msg,data,length)</pre>
|
2115
|
+
<p>
|
2116
|
+
Output a logging message belonging to the given object in the default category.
|
2117
|
+
</p>
|
2118
|
+
<div class="variablelist"><table border="0">
|
2119
|
+
<col align="left" valign="top">
|
2120
|
+
<tbody>
|
2121
|
+
<tr>
|
2122
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
2123
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> the message belongs to</td>
|
2124
|
+
</tr>
|
2125
|
+
<tr>
|
2126
|
+
<td><p><span class="term"><em class="parameter"><code>msg</code></em> :</span></p></td>
|
2127
|
+
<td>message string to log with the data</td>
|
2128
|
+
</tr>
|
2129
|
+
<tr>
|
2130
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2131
|
+
<td>pointer to the data to output</td>
|
2132
|
+
</tr>
|
2133
|
+
<tr>
|
2134
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
2135
|
+
<td>length of the data to output</td>
|
2136
|
+
</tr>
|
2137
|
+
</tbody>
|
2138
|
+
</table></div>
|
2139
|
+
<p class="since">Since 0.10.23</p>
|
2140
|
+
</div>
|
2141
|
+
<hr>
|
2142
|
+
<div class="refsect2">
|
2143
|
+
<a name="GST-ERROR:CAPS"></a><h3>GST_ERROR()</h3>
|
2144
|
+
<pre class="programlisting">#define GST_ERROR(...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_ERROR, NULL, __VA_ARGS__)
|
2145
|
+
</pre>
|
2146
|
+
<p>
|
2147
|
+
Output an error message in the default category.
|
2148
|
+
</p>
|
2149
|
+
<div class="variablelist"><table border="0">
|
2150
|
+
<col align="left" valign="top">
|
2151
|
+
<tbody><tr>
|
2152
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2153
|
+
<td>printf-style message to output</td>
|
2154
|
+
</tr></tbody>
|
2155
|
+
</table></div>
|
2156
|
+
</div>
|
2157
|
+
<hr>
|
2158
|
+
<div class="refsect2">
|
2159
|
+
<a name="GST-WARNING:CAPS"></a><h3>GST_WARNING()</h3>
|
2160
|
+
<pre class="programlisting">#define GST_WARNING(...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_WARNING, NULL, __VA_ARGS__)
|
2161
|
+
</pre>
|
2162
|
+
<p>
|
2163
|
+
Output a warning message in the default category.
|
2164
|
+
</p>
|
2165
|
+
<div class="variablelist"><table border="0">
|
2166
|
+
<col align="left" valign="top">
|
2167
|
+
<tbody><tr>
|
2168
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2169
|
+
<td>printf-style message to output</td>
|
2170
|
+
</tr></tbody>
|
2171
|
+
</table></div>
|
2172
|
+
</div>
|
2173
|
+
<hr>
|
2174
|
+
<div class="refsect2">
|
2175
|
+
<a name="GST-INFO:CAPS"></a><h3>GST_INFO()</h3>
|
2176
|
+
<pre class="programlisting">#define GST_INFO(...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_INFO, NULL, __VA_ARGS__)
|
2177
|
+
</pre>
|
2178
|
+
<p>
|
2179
|
+
Output an informational message in the default category.
|
2180
|
+
</p>
|
2181
|
+
<div class="variablelist"><table border="0">
|
2182
|
+
<col align="left" valign="top">
|
2183
|
+
<tbody><tr>
|
2184
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2185
|
+
<td>printf-style message to output</td>
|
2186
|
+
</tr></tbody>
|
2187
|
+
</table></div>
|
2188
|
+
</div>
|
2189
|
+
<hr>
|
2190
|
+
<div class="refsect2">
|
2191
|
+
<a name="GST-DEBUG:CAPS"></a><h3>GST_DEBUG()</h3>
|
2192
|
+
<pre class="programlisting">#define GST_DEBUG(...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_DEBUG, NULL, __VA_ARGS__)
|
2193
|
+
</pre>
|
2194
|
+
<p>
|
2195
|
+
Output a debugging message in the default category.
|
2196
|
+
</p>
|
2197
|
+
<div class="variablelist"><table border="0">
|
2198
|
+
<col align="left" valign="top">
|
2199
|
+
<tbody><tr>
|
2200
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2201
|
+
<td>printf-style message to output</td>
|
2202
|
+
</tr></tbody>
|
2203
|
+
</table></div>
|
2204
|
+
</div>
|
2205
|
+
<hr>
|
2206
|
+
<div class="refsect2">
|
2207
|
+
<a name="GST-LOG:CAPS"></a><h3>GST_LOG()</h3>
|
2208
|
+
<pre class="programlisting">#define GST_LOG(...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_LOG, NULL, __VA_ARGS__)
|
2209
|
+
</pre>
|
2210
|
+
<p>
|
2211
|
+
Output a logging message in the default category.
|
2212
|
+
</p>
|
2213
|
+
<div class="variablelist"><table border="0">
|
2214
|
+
<col align="left" valign="top">
|
2215
|
+
<tbody><tr>
|
2216
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2217
|
+
<td>printf-style message to output</td>
|
2218
|
+
</tr></tbody>
|
2219
|
+
</table></div>
|
2220
|
+
</div>
|
2221
|
+
<hr>
|
2222
|
+
<div class="refsect2">
|
2223
|
+
<a name="GST-FIXME:CAPS"></a><h3>GST_FIXME()</h3>
|
2224
|
+
<pre class="programlisting">#define GST_FIXME(...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_FIXME, NULL, __VA_ARGS__)
|
2225
|
+
</pre>
|
2226
|
+
<p>
|
2227
|
+
Output a fixme message in the default category.
|
2228
|
+
</p>
|
2229
|
+
<div class="variablelist"><table border="0">
|
2230
|
+
<col align="left" valign="top">
|
2231
|
+
<tbody><tr>
|
2232
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2233
|
+
<td>printf-style message to output</td>
|
2234
|
+
</tr></tbody>
|
2235
|
+
</table></div>
|
2236
|
+
<p class="since">Since 0.10.23</p>
|
2237
|
+
</div>
|
2238
|
+
<hr>
|
2239
|
+
<div class="refsect2">
|
2240
|
+
<a name="GST-TRACE:CAPS"></a><h3>GST_TRACE()</h3>
|
2241
|
+
<pre class="programlisting">#define GST_TRACE(...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_TRACE, NULL, __VA_ARGS__)
|
2242
|
+
</pre>
|
2243
|
+
<p>
|
2244
|
+
Output a tracing message in the default category.
|
2245
|
+
</p>
|
2246
|
+
<div class="variablelist"><table border="0">
|
2247
|
+
<col align="left" valign="top">
|
2248
|
+
<tbody><tr>
|
2249
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2250
|
+
<td>printf-style message to output</td>
|
2251
|
+
</tr></tbody>
|
2252
|
+
</table></div>
|
2253
|
+
<p class="since">Since 0.10.30</p>
|
2254
|
+
</div>
|
2255
|
+
<hr>
|
2256
|
+
<div class="refsect2">
|
2257
|
+
<a name="GST-MEMDUMP:CAPS"></a><h3>GST_MEMDUMP()</h3>
|
2258
|
+
<pre class="programlisting">#define GST_MEMDUMP(msg,data,length)</pre>
|
2259
|
+
<p>
|
2260
|
+
Output a hexdump of <em class="parameter"><code>data</code></em>.
|
2261
|
+
</p>
|
2262
|
+
<div class="variablelist"><table border="0">
|
2263
|
+
<col align="left" valign="top">
|
2264
|
+
<tbody>
|
2265
|
+
<tr>
|
2266
|
+
<td><p><span class="term"><em class="parameter"><code>msg</code></em> :</span></p></td>
|
2267
|
+
<td>message string to log with the data</td>
|
2268
|
+
</tr>
|
2269
|
+
<tr>
|
2270
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2271
|
+
<td>pointer to the data to output</td>
|
2272
|
+
</tr>
|
2273
|
+
<tr>
|
2274
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
2275
|
+
<td>length of the data to output</td>
|
2276
|
+
</tr>
|
2277
|
+
</tbody>
|
2278
|
+
</table></div>
|
2279
|
+
<p class="since">Since 0.10.23</p>
|
2280
|
+
</div>
|
2281
|
+
<hr>
|
2282
|
+
<div class="refsect2">
|
2283
|
+
<a name="GST-DEBUG-REGISTER-FUNCPTR:CAPS"></a><h3>GST_DEBUG_REGISTER_FUNCPTR()</h3>
|
2284
|
+
<pre class="programlisting">#define GST_DEBUG_REGISTER_FUNCPTR(ptr)</pre>
|
2285
|
+
<p>
|
2286
|
+
Register a pointer to a function with its name, so it can later be used by
|
2287
|
+
<a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-FUNCPTR-NAME:CAPS" title="GST_DEBUG_FUNCPTR_NAME()"><code class="function">GST_DEBUG_FUNCPTR_NAME()</code></a>.
|
2288
|
+
</p>
|
2289
|
+
<p>
|
2290
|
+
Use this variant of <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-FUNCPTR:CAPS" title="GST_DEBUG_FUNCPTR()"><span class="type">GST_DEBUG_FUNCPTR</span></a> if you do not need to use <em class="parameter"><code>ptr</code></em>.
|
2291
|
+
</p>
|
2292
|
+
<div class="variablelist"><table border="0">
|
2293
|
+
<col align="left" valign="top">
|
2294
|
+
<tbody><tr>
|
2295
|
+
<td><p><span class="term"><em class="parameter"><code>ptr</code></em> :</span></p></td>
|
2296
|
+
<td>pointer to the function to register</td>
|
2297
|
+
</tr></tbody>
|
2298
|
+
</table></div>
|
2299
|
+
<p class="since">Since 0.10.26</p>
|
2300
|
+
</div>
|
2301
|
+
<hr>
|
2302
|
+
<div class="refsect2">
|
2303
|
+
<a name="GST-DEBUG-FUNCPTR:CAPS"></a><h3>GST_DEBUG_FUNCPTR()</h3>
|
2304
|
+
<pre class="programlisting">#define GST_DEBUG_FUNCPTR(ptr)</pre>
|
2305
|
+
<p>
|
2306
|
+
Register a pointer to a function with its name, so it can later be used by
|
2307
|
+
<a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-FUNCPTR-NAME:CAPS" title="GST_DEBUG_FUNCPTR_NAME()"><code class="function">GST_DEBUG_FUNCPTR_NAME()</code></a>.
|
2308
|
+
</p>
|
2309
|
+
<div class="variablelist"><table border="0">
|
2310
|
+
<col align="left" valign="top">
|
2311
|
+
<tbody>
|
2312
|
+
<tr>
|
2313
|
+
<td><p><span class="term"><em class="parameter"><code>ptr</code></em> :</span></p></td>
|
2314
|
+
<td>pointer to the function to register</td>
|
2315
|
+
</tr>
|
2316
|
+
<tr>
|
2317
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2318
|
+
<td>the value passed to <em class="parameter"><code>ptr</code></em>.</td>
|
2319
|
+
</tr>
|
2320
|
+
</tbody>
|
2321
|
+
</table></div>
|
2322
|
+
</div>
|
2323
|
+
<hr>
|
2324
|
+
<div class="refsect2">
|
2325
|
+
<a name="GST-DEBUG-FUNCPTR-NAME:CAPS"></a><h3>GST_DEBUG_FUNCPTR_NAME()</h3>
|
2326
|
+
<pre class="programlisting">#define GST_DEBUG_FUNCPTR_NAME(ptr)</pre>
|
2327
|
+
<p>
|
2328
|
+
Retrieves the name of the function, if it was previously registered with
|
2329
|
+
<a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-FUNCPTR:CAPS" title="GST_DEBUG_FUNCPTR()"><code class="function">GST_DEBUG_FUNCPTR()</code></a>. If not, it returns a description of the pointer.
|
2330
|
+
</p>
|
2331
|
+
<p>
|
2332
|
+
This macro returns a constant string which must not be modified or
|
2333
|
+
freed by the caller.
|
2334
|
+
</p>
|
2335
|
+
<div class="variablelist"><table border="0">
|
2336
|
+
<col align="left" valign="top">
|
2337
|
+
<tbody><tr>
|
2338
|
+
<td><p><span class="term"><em class="parameter"><code>ptr</code></em> :</span></p></td>
|
2339
|
+
<td>address of the function of which to look up the name</td>
|
2340
|
+
</tr></tbody>
|
2341
|
+
</table></div>
|
2342
|
+
</div>
|
2343
|
+
<hr>
|
2344
|
+
<div class="refsect2">
|
2345
|
+
<a name="GST-DEBUG-BIN-TO-DOT-FILE:CAPS"></a><h3>GST_DEBUG_BIN_TO_DOT_FILE()</h3>
|
2346
|
+
<pre class="programlisting">#define GST_DEBUG_BIN_TO_DOT_FILE(bin, details, file_name) _gst_debug_bin_to_dot_file (bin, details, file_name)
|
2347
|
+
</pre>
|
2348
|
+
<p>
|
2349
|
+
To aid debugging applications one can use this method to write out the whole
|
2350
|
+
network of gstreamer elements that form the pipeline into an dot file.
|
2351
|
+
This file can be processed with graphviz to get an image.
|
2352
|
+
</p>
|
2353
|
+
<div class="informalexample">
|
2354
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
2355
|
+
<tbody>
|
2356
|
+
<tr>
|
2357
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
2358
|
+
<td class="listing_code"><pre class="programlisting">dot <span class="gtkdoc opt">-</span>Tpng <span class="gtkdoc opt">-</span>oimage<span class="gtkdoc opt">.</span>png graph_lowlevel<span class="gtkdoc opt">.</span>dot</pre></td>
|
2359
|
+
</tr>
|
2360
|
+
</tbody>
|
2361
|
+
</table>
|
2362
|
+
</div>
|
2363
|
+
|
2364
|
+
<p>
|
2365
|
+
</p>
|
2366
|
+
<p>
|
2367
|
+
The macro is only active if gstreamer is configured with
|
2368
|
+
"--gst-enable-gst-debug" and the environment variable
|
2369
|
+
GST_DEBUG_DUMP_DOT_DIR is set to a basepath (e.g. /tmp).
|
2370
|
+
</p>
|
2371
|
+
<div class="variablelist"><table border="0">
|
2372
|
+
<col align="left" valign="top">
|
2373
|
+
<tbody>
|
2374
|
+
<tr>
|
2375
|
+
<td><p><span class="term"><em class="parameter"><code>bin</code></em> :</span></p></td>
|
2376
|
+
<td>the top-level pipeline that should be analyzed</td>
|
2377
|
+
</tr>
|
2378
|
+
<tr>
|
2379
|
+
<td><p><span class="term"><em class="parameter"><code>details</code></em> :</span></p></td>
|
2380
|
+
<td>details to show in the graph, e.g. <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-GRAPH-SHOW-ALL:CAPS"><span class="type">GST_DEBUG_GRAPH_SHOW_ALL</span></a> or
|
2381
|
+
one or more other <a class="link" href="gstreamer-GstInfo.html#GstDebugGraphDetails" title="enum GstDebugGraphDetails"><span class="type">GstDebugGraphDetails</span></a> flags.</td>
|
2382
|
+
</tr>
|
2383
|
+
<tr>
|
2384
|
+
<td><p><span class="term"><em class="parameter"><code>file_name</code></em> :</span></p></td>
|
2385
|
+
<td>output base filename (e.g. "myplayer")</td>
|
2386
|
+
</tr>
|
2387
|
+
</tbody>
|
2388
|
+
</table></div>
|
2389
|
+
<p class="since">Since 0.10.15</p>
|
2390
|
+
</div>
|
2391
|
+
<hr>
|
2392
|
+
<div class="refsect2">
|
2393
|
+
<a name="GST-DEBUG-BIN-TO-DOT-FILE-WITH-TS:CAPS"></a><h3>GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS()</h3>
|
2394
|
+
<pre class="programlisting">#define GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS(bin, details, file_name) _gst_debug_bin_to_dot_file_with_ts (bin, details, file_name)
|
2395
|
+
</pre>
|
2396
|
+
<p>
|
2397
|
+
This works like <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-BIN-TO-DOT-FILE:CAPS" title="GST_DEBUG_BIN_TO_DOT_FILE()"><code class="function">GST_DEBUG_BIN_TO_DOT_FILE()</code></a>, but adds the current timestamp
|
2398
|
+
to the filename, so that it can be used to take multiple snapshots.
|
2399
|
+
</p>
|
2400
|
+
<div class="variablelist"><table border="0">
|
2401
|
+
<col align="left" valign="top">
|
2402
|
+
<tbody>
|
2403
|
+
<tr>
|
2404
|
+
<td><p><span class="term"><em class="parameter"><code>bin</code></em> :</span></p></td>
|
2405
|
+
<td>the top-level pipeline that should be analyzed</td>
|
2406
|
+
</tr>
|
2407
|
+
<tr>
|
2408
|
+
<td><p><span class="term"><em class="parameter"><code>details</code></em> :</span></p></td>
|
2409
|
+
<td>details to show in the graph, e.g. <a class="link" href="gstreamer-GstInfo.html#GST-DEBUG-GRAPH-SHOW-ALL:CAPS"><span class="type">GST_DEBUG_GRAPH_SHOW_ALL</span></a> or
|
2410
|
+
one or more other <a class="link" href="gstreamer-GstInfo.html#GstDebugGraphDetails" title="enum GstDebugGraphDetails"><span class="type">GstDebugGraphDetails</span></a> flags.</td>
|
2411
|
+
</tr>
|
2412
|
+
<tr>
|
2413
|
+
<td><p><span class="term"><em class="parameter"><code>file_name</code></em> :</span></p></td>
|
2414
|
+
<td>output base filename (e.g. "myplayer")</td>
|
2415
|
+
</tr>
|
2416
|
+
</tbody>
|
2417
|
+
</table></div>
|
2418
|
+
<p class="since">Since 0.10.15</p>
|
2419
|
+
</div>
|
2420
|
+
<hr>
|
2421
|
+
<div class="refsect2">
|
2422
|
+
<a name="gst-debug-print-stack-trace"></a><h3>gst_debug_print_stack_trace ()</h3>
|
2423
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_debug_print_stack_trace (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
2424
|
+
<p>
|
2425
|
+
If GST_ENABLE_FUNC_INSTRUMENTATION is defined a stacktrace is available for
|
2426
|
+
gstreamer code, which can be printed with this function.
|
2427
|
+
</p>
|
2428
|
+
</div>
|
2429
|
+
<hr>
|
2430
|
+
<div class="refsect2">
|
2431
|
+
<a name="GST-TIME-FORMAT:CAPS"></a><h3>GST_TIME_FORMAT</h3>
|
2432
|
+
<pre class="programlisting">#define GST_TIME_FORMAT "u:%02u:%02u.%09u"
|
2433
|
+
</pre>
|
2434
|
+
<p>
|
2435
|
+
A format that can be used in printf like format strings to format
|
2436
|
+
a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> value.
|
2437
|
+
</p>
|
2438
|
+
</div>
|
2439
|
+
<hr>
|
2440
|
+
<div class="refsect2">
|
2441
|
+
<a name="GST-TIME-ARGS:CAPS"></a><h3>GST_TIME_ARGS()</h3>
|
2442
|
+
<pre class="programlisting">#define GST_TIME_ARGS(t)</pre>
|
2443
|
+
<p>
|
2444
|
+
Format <em class="parameter"><code>t</code></em> for the GST_TIME_FORMAT format string.
|
2445
|
+
</p>
|
2446
|
+
<div class="variablelist"><table border="0">
|
2447
|
+
<col align="left" valign="top">
|
2448
|
+
<tbody><tr>
|
2449
|
+
<td><p><span class="term"><em class="parameter"><code>t</code></em> :</span></p></td>
|
2450
|
+
<td>a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a>
|
2451
|
+
</td>
|
2452
|
+
</tr></tbody>
|
2453
|
+
</table></div>
|
2454
|
+
</div>
|
2455
|
+
</div>
|
2456
|
+
<div class="refsect1">
|
2457
|
+
<a name="gstreamer-GstInfo.see-also"></a><h2>See Also</h2>
|
2458
|
+
<a class="link" href="gstreamer-gstconfig.html" title="gstconfig"><span class="type">gstreamer-gstconfig</span></a>, <a class="link" href="gstreamer-Gst.html" title="Gst"><span class="type">gstreamer-Gst</span></a> for command line parameters
|
2459
|
+
and environment variables that affect the debugging output.
|
2460
|
+
</div>
|
2461
|
+
</div>
|
2462
|
+
<div class="footer">
|
2463
|
+
<hr>
|
2464
|
+
Generated by GTK-Doc V1.17</div>
|
2465
|
+
</body>
|
2466
|
+
</html>
|