gstreamer 1.1.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/README +33 -0
- data/Rakefile +213 -0
- data/ext/gstreamer/depend +5 -0
- data/ext/gstreamer/extconf.rb +69 -0
- data/ext/gstreamer/misc.c +63 -0
- data/ext/gstreamer/rbgst-bin.c +458 -0
- data/ext/gstreamer/rbgst-buffer.c +365 -0
- data/ext/gstreamer/rbgst-bus.c +92 -0
- data/ext/gstreamer/rbgst-caps.c +448 -0
- data/ext/gstreamer/rbgst-child-proxy.c +34 -0
- data/ext/gstreamer/rbgst-clock.c +110 -0
- data/ext/gstreamer/rbgst-element-factory.c +249 -0
- data/ext/gstreamer/rbgst-element.c +1088 -0
- data/ext/gstreamer/rbgst-event.c +351 -0
- data/ext/gstreamer/rbgst-ghost-pad.c +45 -0
- data/ext/gstreamer/rbgst-index-factory.c +69 -0
- data/ext/gstreamer/rbgst-install-plugins-context.c +86 -0
- data/ext/gstreamer/rbgst-install-plugins-return.c +45 -0
- data/ext/gstreamer/rbgst-install-plugins.c +125 -0
- data/ext/gstreamer/rbgst-message.c +787 -0
- data/ext/gstreamer/rbgst-mini-object.c +220 -0
- data/ext/gstreamer/rbgst-object.c +83 -0
- data/ext/gstreamer/rbgst-pad-template.c +125 -0
- data/ext/gstreamer/rbgst-pad.c +338 -0
- data/ext/gstreamer/rbgst-pipeline.c +91 -0
- data/ext/gstreamer/rbgst-plugin-feature.c +133 -0
- data/ext/gstreamer/rbgst-plugin.c +162 -0
- data/ext/gstreamer/rbgst-private.c +88 -0
- data/ext/gstreamer/rbgst-private.h +97 -0
- data/ext/gstreamer/rbgst-query.c +291 -0
- data/ext/gstreamer/rbgst-seek.c +39 -0
- data/ext/gstreamer/rbgst-static-caps.c +51 -0
- data/ext/gstreamer/rbgst-static-pad-template.c +65 -0
- data/ext/gstreamer/rbgst-structure.c +302 -0
- data/ext/gstreamer/rbgst-system-clock.c +48 -0
- data/ext/gstreamer/rbgst-type-find-factory.c +125 -0
- data/ext/gstreamer/rbgst-value.c +529 -0
- data/ext/gstreamer/rbgst-x-overlay.c +133 -0
- data/ext/gstreamer/rbgst.c +237 -0
- data/ext/gstreamer/rbgst.h +197 -0
- data/ext/gstreamer/rbgstclockentry.c +271 -0
- data/ext/gstreamer/rbgstformat.c +162 -0
- data/ext/gstreamer/rbgstindex.c +317 -0
- data/ext/gstreamer/rbgstindexentry.c +99 -0
- data/ext/gstreamer/rbgstparse.c +69 -0
- data/ext/gstreamer/rbgstquerytype.c +162 -0
- data/ext/gstreamer/rbgstregistry.c +288 -0
- data/ext/gstreamer/rbgsttag.c +113 -0
- data/ext/gstreamer/rbgsttagsetter.c +53 -0
- data/ext/gstreamer/rbgstxml.c +192 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gstreamer.so +0 -0
- data/lib/1.9/gstreamer.so +0 -0
- data/lib/gst.rb +33 -0
- data/sample/audio-player.rb +54 -0
- data/sample/gst-inspect.rb +417 -0
- data/sample/install-plugins.rb +40 -0
- data/sample/media-type.rb +55 -0
- data/sample/media-type2.rb +268 -0
- data/sample/ogg-audio-player.rb +54 -0
- data/sample/type-find.rb +46 -0
- data/sample/video-player.rb +57 -0
- data/sample/xml-player.rb +60 -0
- data/test/gst-test-utils.rb +18 -0
- data/test/run-test.rb +25 -0
- data/test/test_bin.rb +167 -0
- data/test/test_buffer.rb +177 -0
- data/test/test_caps.rb +24 -0
- data/test/test_element.rb +85 -0
- data/test/test_element_factory.rb +28 -0
- data/test/test_event.rb +10 -0
- data/test/test_index_factory.rb +7 -0
- data/test/test_install-plugins.rb +18 -0
- data/test/test_message.rb +191 -0
- data/test/test_mini_object.rb +38 -0
- data/test/test_object.rb +10 -0
- data/test/test_pad.rb +68 -0
- data/test/test_plugin.rb +6 -0
- data/test/test_plugin_feature.rb +20 -0
- data/test/test_seek.rb +17 -0
- data/test/test_static_caps.rb +18 -0
- data/test/test_static_pad_template.rb +16 -0
- data/test/test_structure.rb +159 -0
- data/test/test_thread_handling.rb +58 -0
- data/test/test_type_find_factory.rb +8 -0
- data/test/test_value.rb +69 -0
- data/vendor/local/bin/cjpeg.exe +0 -0
- data/vendor/local/bin/djpeg.exe +0 -0
- data/vendor/local/bin/gst-discoverer-0.10.exe +0 -0
- data/vendor/local/bin/gst-feedback-0.10 +115 -0
- data/vendor/local/bin/gst-feedback.exe +0 -0
- data/vendor/local/bin/gst-inspect-0.10.exe +0 -0
- data/vendor/local/bin/gst-inspect.exe +0 -0
- data/vendor/local/bin/gst-launch-0.10.exe +0 -0
- data/vendor/local/bin/gst-launch.exe +0 -0
- data/vendor/local/bin/gst-typefind-0.10.exe +0 -0
- data/vendor/local/bin/gst-typefind.exe +0 -0
- data/vendor/local/bin/gst-visualise-0.10 +77 -0
- data/vendor/local/bin/gst-xmlinspect-0.10.exe +0 -0
- data/vendor/local/bin/gst-xmlinspect.exe +0 -0
- data/vendor/local/bin/gst-xmllaunch-0.10.exe +0 -0
- data/vendor/local/bin/gst-xmllaunch.exe +0 -0
- data/vendor/local/bin/jpegtran.exe +0 -0
- data/vendor/local/bin/libgstapp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstaudio-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstbase-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstbasevideo-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstcdda-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstcheck-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstcontroller-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstdataprotocol-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstfft-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstinterfaces-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstnet-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstnetbuffer-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstpbutils-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstphotography-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstreamer-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstriff-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstrtp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstrtsp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstsdp-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstsignalprocessor-0.10-0.dll +0 -0
- data/vendor/local/bin/libgsttag-0.10-0.dll +0 -0
- data/vendor/local/bin/libgstvideo-0.10-0.dll +0 -0
- data/vendor/local/bin/libjpeg-8.dll +0 -0
- data/vendor/local/bin/libogg-0.dll +0 -0
- data/vendor/local/bin/libsoup-2.4-1.dll +0 -0
- data/vendor/local/bin/libspeex-1.dll +0 -0
- data/vendor/local/bin/libspeexdsp-1.dll +0 -0
- data/vendor/local/bin/libtheora-0.dll +0 -0
- data/vendor/local/bin/libtheoradec-1.dll +0 -0
- data/vendor/local/bin/libtheoraenc-1.dll +0 -0
- data/vendor/local/bin/libvorbis-0.dll +0 -0
- data/vendor/local/bin/libvorbisenc-2.dll +0 -0
- data/vendor/local/bin/libvorbisfile-3.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/rdjpgcom.exe +0 -0
- data/vendor/local/bin/speexdec.exe +0 -0
- data/vendor/local/bin/speexenc.exe +0 -0
- data/vendor/local/bin/wrjpgcom.exe +0 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/include/gstreamer-0.10/gst/app/gstappbuffer.h +64 -0
- data/vendor/local/include/gstreamer-0.10/gst/app/gstappsink.h +141 -0
- data/vendor/local/include/gstreamer-0.10/gst/app/gstappsrc.h +153 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/audio-enumtypes.h +29 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/audio.h +185 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudioclock.h +108 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiofilter.h +96 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosink.h +102 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosrc.h +99 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosink.h +177 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosrc.h +146 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/gstringbuffer.h +408 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/mixerutils.h +50 -0
- data/vendor/local/include/gstreamer-0.10/gst/audio/multichannel.h +115 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstadapter.h +106 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbaseparse.h +314 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesink.h +247 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesrc.h +261 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbasetransform.h +277 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbitreader.h +314 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbytereader.h +527 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstbytewriter.h +361 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstcollectpads.h +223 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstdataqueue.h +184 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gstpushsrc.h +68 -0
- data/vendor/local/include/gstreamer-0.10/gst/base/gsttypefindhelper.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/cdda/gstcddabasesrc.h +157 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/gstbufferstraw.h +35 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/gstcheck.h +427 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/gstconsistencychecker.h +48 -0
- data/vendor/local/include/gstreamer-0.10/gst/check/internal-check.h +418 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontroller.h +155 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontrolsource.h +163 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstinterpolationcontrolsource.h +109 -0
- data/vendor/local/include/gstreamer-0.10/gst/controller/gstlfocontrolsource.h +102 -0
- data/vendor/local/include/gstreamer-0.10/gst/dataprotocol/dataprotocol.h +196 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstfft.h +49 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf32.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf64.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts16.h +74 -0
- data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts32.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/floatcast/floatcast.h +102 -0
- data/vendor/local/include/gstreamer-0.10/gst/glib-compat.h +37 -0
- data/vendor/local/include/gstreamer-0.10/gst/gst.h +106 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstatomicqueue.h +55 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbin.h +190 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbuffer.h +510 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbufferlist.h +243 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstbus.h +192 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstcaps.h +296 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstchildproxy.h +91 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstclock.h +570 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstcompat.h +43 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstconfig.h +235 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstdatetime.h +66 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstdebugutils.h +109 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstelement.h +827 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstelementfactory.h +314 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstenumtypes.h +211 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsterror.h +255 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstevent.h +522 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstfilter.h +44 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstformat.h +113 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstghostpad.h +111 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstindex.h +426 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstindexfactory.h +76 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstinfo.h +1549 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstinterface.h +81 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstiterator.h +267 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstmacros.h +54 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstmarshal.h +164 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstmessage.h +534 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstminiobject.h +223 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstobject.h +354 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpad.h +1032 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpadtemplate.h +196 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstparamspecs.h +128 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstparse.h +119 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpipeline.h +115 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstplugin.h +411 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpluginfeature.h +171 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpoll.h +97 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstpreset.h +99 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstquery.h +342 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstregistry.h +237 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstsegment.h +109 -0
- data/vendor/local/include/gstreamer-0.10/gst/gststructure.h +254 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstsystemclock.h +89 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttaglist.h +1034 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttagsetter.h +100 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttask.h +205 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttaskpool.h +103 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttrace.h +251 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttypefind.h +122 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsttypefindfactory.h +81 -0
- data/vendor/local/include/gstreamer-0.10/gst/gsturi.h +156 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstutils.h +1198 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstvalue.h +594 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstversion.h +90 -0
- data/vendor/local/include/gstreamer-0.10/gst/gstxml.h +113 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalance.h +112 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalancechannel.h +75 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/interfaces-enumtypes.h +49 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixer.h +231 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixeroptions.h +91 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixertrack.h +134 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/navigation.h +257 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography-enumtypes.h +37 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography.h +387 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/propertyprobe.h +115 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/streamvolume.h +87 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/tuner.h +128 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunerchannel.h +113 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunernorm.h +67 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/videoorientation.h +94 -0
- data/vendor/local/include/gstreamer-0.10/gst/interfaces/xoverlay.h +121 -0
- data/vendor/local/include/gstreamer-0.10/gst/math-compat.h +84 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnet.h +30 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnetclientclock.h +105 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimepacket.h +78 -0
- data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimeprovider.h +110 -0
- data/vendor/local/include/gstreamer-0.10/gst/netbuffer/gstnetbuffer.h +129 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/codec-utils.h +63 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/descriptions.h +58 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-profile.h +187 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-target.h +147 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstdiscoverer.h +266 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstpluginsbaseversion.h +86 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/install-plugins.h +144 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/missing-plugins.h +77 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils-enumtypes.h +23 -0
- data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils.h +42 -0
- data/vendor/local/include/gstreamer-0.10/gst/riff/riff-ids.h +517 -0
- data/vendor/local/include/gstreamer-0.10/gst/riff/riff-media.h +65 -0
- data/vendor/local/include/gstreamer-0.10/gst/riff/riff-read.h +87 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpaudiopayload.h +98 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpdepayload.h +141 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertppayload.h +162 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtcpbuffer.h +286 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtpbuffer.h +166 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtppayloads.h +193 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsp-enumtypes.h +35 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspbase64.h +37 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspconnection.h +209 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspdefs.h +397 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspextension.h +97 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspmessage.h +187 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsprange.h +121 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsptransport.h +174 -0
- data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspurl.h +103 -0
- data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdp.h +58 -0
- data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdpmessage.h +423 -0
- data/vendor/local/include/gstreamer-0.10/gst/signalprocessor/gstsignalprocessor.h +142 -0
- data/vendor/local/include/gstreamer-0.10/gst/tag/gsttagdemux.h +144 -0
- data/vendor/local/include/gstreamer-0.10/gst/tag/tag.h +549 -0
- data/vendor/local/include/gstreamer-0.10/gst/tag/xmpwriter.h +68 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideocodec.h +195 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideodecoder.h +182 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideoencoder.h +128 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstvideofilter.h +58 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/gstvideosink.h +132 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/video-enumtypes.h +19 -0
- data/vendor/local/include/gstreamer-0.10/gst/video/video.h +501 -0
- data/vendor/local/include/jconfig.h +46 -0
- data/vendor/local/include/jerror.h +304 -0
- data/vendor/local/include/jmorecfg.h +371 -0
- data/vendor/local/include/jpeglib.h +1158 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-address.h +102 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-basic.h +56 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-digest.h +59 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain.h +99 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-auth.h +90 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar-text.h +44 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar.h +68 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie.h +81 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-date.h +64 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-enum-types.h +63 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-form.h +53 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-headers.h +59 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-logger.h +80 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-message-body.h +81 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-message-headers.h +133 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-message.h +163 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-method.h +77 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-misc.h +52 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-multipart.h +51 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-portability.h +28 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-resolver.h +57 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h +57 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-server.h +113 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session-async.h +44 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session-feature.h +51 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session-sync.h +44 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-session.h +109 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-socket.h +115 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-status.h +102 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-types.h +32 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-uri.h +90 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-value-utils.h +84 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup-xmlrpc.h +83 -0
- data/vendor/local/include/libsoup-2.4/libsoup/soup.h +45 -0
- data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +304 -0
- data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
- data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
- data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
- data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
- data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
- data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
- data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
- data/vendor/local/include/libxml2/libxml/dict.h +69 -0
- data/vendor/local/include/libxml2/libxml/encoding.h +226 -0
- data/vendor/local/include/libxml2/libxml/entities.h +150 -0
- data/vendor/local/include/libxml2/libxml/globals.h +502 -0
- data/vendor/local/include/libxml2/libxml/hash.h +233 -0
- data/vendor/local/include/libxml2/libxml/list.h +137 -0
- data/vendor/local/include/libxml2/libxml/nanoftp.h +143 -0
- data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
- data/vendor/local/include/libxml2/libxml/parser.h +1235 -0
- data/vendor/local/include/libxml2/libxml/parserInternals.h +611 -0
- data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
- data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
- data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
- data/vendor/local/include/libxml2/libxml/threads.h +84 -0
- data/vendor/local/include/libxml2/libxml/tree.h +1252 -0
- data/vendor/local/include/libxml2/libxml/uri.h +94 -0
- data/vendor/local/include/libxml2/libxml/valid.h +458 -0
- data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
- data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
- data/vendor/local/include/libxml2/libxml/xmlIO.h +360 -0
- data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
- data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
- data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
- data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
- data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
- data/vendor/local/include/libxml2/libxml/xmlreader.h +424 -0
- data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
- data/vendor/local/include/libxml2/libxml/xmlsave.h +87 -0
- data/vendor/local/include/libxml2/libxml/xmlschemas.h +218 -0
- data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
- data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
- data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
- data/vendor/local/include/libxml2/libxml/xmlversion.h +458 -0
- data/vendor/local/include/libxml2/libxml/xmlwriter.h +485 -0
- data/vendor/local/include/libxml2/libxml/xpath.h +546 -0
- data/vendor/local/include/libxml2/libxml/xpathInternals.h +630 -0
- data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
- data/vendor/local/include/ogg/config_types.h +25 -0
- data/vendor/local/include/ogg/ogg.h +210 -0
- data/vendor/local/include/ogg/os_types.h +147 -0
- data/vendor/local/include/speex/speex.h +424 -0
- data/vendor/local/include/speex/speex_bits.h +174 -0
- data/vendor/local/include/speex/speex_buffer.h +68 -0
- data/vendor/local/include/speex/speex_callbacks.h +134 -0
- data/vendor/local/include/speex/speex_config_types.h +11 -0
- data/vendor/local/include/speex/speex_echo.h +170 -0
- data/vendor/local/include/speex/speex_header.h +94 -0
- data/vendor/local/include/speex/speex_jitter.h +197 -0
- data/vendor/local/include/speex/speex_preprocess.h +219 -0
- data/vendor/local/include/speex/speex_resampler.h +340 -0
- data/vendor/local/include/speex/speex_stereo.h +91 -0
- data/vendor/local/include/speex/speex_types.h +126 -0
- data/vendor/local/include/theora/codec.h +591 -0
- data/vendor/local/include/theora/theora.h +784 -0
- data/vendor/local/include/theora/theoradec.h +325 -0
- data/vendor/local/include/theora/theoraenc.h +486 -0
- data/vendor/local/include/vorbis/codec.h +243 -0
- data/vendor/local/include/vorbis/vorbisenc.h +436 -0
- data/vendor/local/include/vorbis/vorbisfile.h +206 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadder.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadder.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadder.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaiff.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalaw.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalpha.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstannodex.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapetag.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstapp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstasfmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstauparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstautodetect.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstavi.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstavi.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstavi.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstbayer.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcairo.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcog.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcog.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcog.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstcutter.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebug.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdtmf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsteffectv.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstencodebin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstequalizer.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfestival.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflv.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflv.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflv.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstflxdec.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfragmented.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfreeze.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgdp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgio.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgio.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgio.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsth264parse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsticydemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3demux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstid3tag.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterlace.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinterleave.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstisomp4.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstivfparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpeg.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstlevel.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstliveadder.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmatroska.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmulaw.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultifile.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmultipart.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmve.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmve.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmve.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstmxf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnsf.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstogg.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstogg.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstogg.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpango.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpango.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpango.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstplaybin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpng.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpng.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpng.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpnm.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstpostproc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrawparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreal.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreal.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreal.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstrtsp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdi.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsiren.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsmpte.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspectrum.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeed.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstspeex.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgststereo.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgststereo.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgststereo.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubenc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstsubparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttheora.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttta.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttta.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttta.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstudp.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstudp.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstudp.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideobox.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideorate.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvmnc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvolume.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstvorbis.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavenc.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgstwavparse.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.la +41 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll.a +0 -0
- data/vendor/local/lib/gstreamer-0.10/libgsty4menc.la +41 -0
- data/vendor/local/lib/libgstapp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstapp-0.10.la +41 -0
- data/vendor/local/lib/libgstaudio-0.10.a +0 -0
- data/vendor/local/lib/libgstaudio-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstaudio-0.10.la +41 -0
- data/vendor/local/lib/libgstbase-0.10.a +0 -0
- data/vendor/local/lib/libgstbase-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstbase-0.10.la +41 -0
- data/vendor/local/lib/libgstbasevideo-0.10.a +0 -0
- data/vendor/local/lib/libgstbasevideo-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstbasevideo-0.10.la +41 -0
- data/vendor/local/lib/libgstcdda-0.10.a +0 -0
- data/vendor/local/lib/libgstcdda-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstcdda-0.10.la +41 -0
- data/vendor/local/lib/libgstcheck-0.10.a +0 -0
- data/vendor/local/lib/libgstcheck-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstcheck-0.10.la +41 -0
- data/vendor/local/lib/libgstcontroller-0.10.a +0 -0
- data/vendor/local/lib/libgstcontroller-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstcontroller-0.10.la +41 -0
- data/vendor/local/lib/libgstdataprotocol-0.10.a +0 -0
- data/vendor/local/lib/libgstdataprotocol-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstdataprotocol-0.10.la +41 -0
- data/vendor/local/lib/libgstfft-0.10.a +0 -0
- data/vendor/local/lib/libgstfft-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstfft-0.10.la +41 -0
- data/vendor/local/lib/libgstinterfaces-0.10.a +0 -0
- data/vendor/local/lib/libgstinterfaces-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstinterfaces-0.10.la +41 -0
- data/vendor/local/lib/libgstnet-0.10.a +0 -0
- data/vendor/local/lib/libgstnet-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstnet-0.10.la +41 -0
- data/vendor/local/lib/libgstnetbuffer-0.10.a +0 -0
- data/vendor/local/lib/libgstnetbuffer-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstnetbuffer-0.10.la +41 -0
- data/vendor/local/lib/libgstpbutils-0.10.a +0 -0
- data/vendor/local/lib/libgstpbutils-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstpbutils-0.10.la +41 -0
- data/vendor/local/lib/libgstphotography-0.10.a +0 -0
- data/vendor/local/lib/libgstphotography-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstphotography-0.10.la +41 -0
- data/vendor/local/lib/libgstreamer-0.10.a +0 -0
- data/vendor/local/lib/libgstreamer-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstreamer-0.10.la +41 -0
- data/vendor/local/lib/libgstriff-0.10.a +0 -0
- data/vendor/local/lib/libgstriff-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstriff-0.10.la +41 -0
- data/vendor/local/lib/libgstrtp-0.10.a +0 -0
- data/vendor/local/lib/libgstrtp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstrtp-0.10.la +41 -0
- data/vendor/local/lib/libgstrtsp-0.10.a +0 -0
- data/vendor/local/lib/libgstrtsp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstrtsp-0.10.la +41 -0
- data/vendor/local/lib/libgstsdp-0.10.a +0 -0
- data/vendor/local/lib/libgstsdp-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstsdp-0.10.la +41 -0
- data/vendor/local/lib/libgstsignalprocessor-0.10.a +0 -0
- data/vendor/local/lib/libgstsignalprocessor-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstsignalprocessor-0.10.la +41 -0
- data/vendor/local/lib/libgsttag-0.10.a +0 -0
- data/vendor/local/lib/libgsttag-0.10.dll.a +0 -0
- data/vendor/local/lib/libgsttag-0.10.la +41 -0
- data/vendor/local/lib/libgstvideo-0.10.a +0 -0
- data/vendor/local/lib/libgstvideo-0.10.dll.a +0 -0
- data/vendor/local/lib/libgstvideo-0.10.la +41 -0
- data/vendor/local/lib/libjpeg.dll.a +0 -0
- data/vendor/local/lib/libogg.a +0 -0
- data/vendor/local/lib/libogg.dll.a +0 -0
- data/vendor/local/lib/libogg.la +41 -0
- data/vendor/local/lib/libsoup-2.4.dll.a +0 -0
- data/vendor/local/lib/libspeex.a +0 -0
- data/vendor/local/lib/libspeex.dll.a +0 -0
- data/vendor/local/lib/libspeex.la +35 -0
- data/vendor/local/lib/libspeexdsp.a +0 -0
- data/vendor/local/lib/libspeexdsp.dll.a +0 -0
- data/vendor/local/lib/libspeexdsp.la +35 -0
- data/vendor/local/lib/libtheora.a +0 -0
- data/vendor/local/lib/libtheora.dll.a +0 -0
- data/vendor/local/lib/libtheora.la +41 -0
- data/vendor/local/lib/libtheoradec.a +0 -0
- data/vendor/local/lib/libtheoradec.dll.a +0 -0
- data/vendor/local/lib/libtheoradec.la +41 -0
- data/vendor/local/lib/libtheoraenc.a +0 -0
- data/vendor/local/lib/libtheoraenc.dll.a +0 -0
- data/vendor/local/lib/libtheoraenc.la +41 -0
- data/vendor/local/lib/libvorbis.a +0 -0
- data/vendor/local/lib/libvorbis.dll.a +0 -0
- data/vendor/local/lib/libvorbis.la +41 -0
- data/vendor/local/lib/libvorbisenc.a +0 -0
- data/vendor/local/lib/libvorbisenc.dll.a +0 -0
- data/vendor/local/lib/libvorbisenc.la +41 -0
- data/vendor/local/lib/libvorbisfile.a +0 -0
- data/vendor/local/lib/libvorbisfile.dll.a +0 -0
- data/vendor/local/lib/libvorbisfile.la +41 -0
- data/vendor/local/lib/libxml2.def +1657 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.lib +0 -0
- data/vendor/local/lib/pkgconfig/gstreamer-0.10.pc +17 -0
- data/vendor/local/lib/pkgconfig/gstreamer-app-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-audio-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-base-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-cdda-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-check-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-controller-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-dataprotocol-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-fft-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-floatcast-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-interfaces-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-net-0.10.pc +15 -0
- data/vendor/local/lib/pkgconfig/gstreamer-netbuffer-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-pbutils-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-plugins-bad-0.10.pc +12 -0
- data/vendor/local/lib/pkgconfig/gstreamer-plugins-base-0.10.pc +14 -0
- data/vendor/local/lib/pkgconfig/gstreamer-riff-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-rtp-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-rtsp-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-sdp-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-tag-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/gstreamer-video-0.10.pc +16 -0
- data/vendor/local/lib/pkgconfig/libsoup-2.4.pc +12 -0
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/ogg.pc +14 -0
- data/vendor/local/lib/pkgconfig/speex.pc +15 -0
- data/vendor/local/lib/pkgconfig/speexdsp.pc +15 -0
- data/vendor/local/lib/pkgconfig/theora.pc +14 -0
- data/vendor/local/lib/pkgconfig/theoradec.pc +14 -0
- data/vendor/local/lib/pkgconfig/theoraenc.pc +14 -0
- data/vendor/local/lib/pkgconfig/vorbis.pc +14 -0
- data/vendor/local/lib/pkgconfig/vorbisenc.pc +14 -0
- data/vendor/local/lib/pkgconfig/vorbisfile.pc +14 -0
- data/vendor/local/libexec/gstreamer-0.10/gst-plugin-scanner.exe +0 -0
- data/vendor/local/manifest/jpeg-dev_8-1_win32.mft +18 -0
- data/vendor/local/manifest/jpeg_8-1_win32.mft +2 -0
- data/vendor/local/manifest/libsoup-dev_2.26.3-1_win32.mft +41 -0
- data/vendor/local/manifest/libsoup_2.26.3-1_win32.mft +2 -0
- data/vendor/local/manifest/libxml2-dev_2.7.7-1_win32.mft +267 -0
- data/vendor/local/manifest/libxml2_2.7.7-1_win32.mft +2 -0
- data/vendor/local/share/aclocal/gst-element-check-0.10.m4 +23 -0
- data/vendor/local/share/aclocal/libxml.m4 +188 -0
- data/vendor/local/share/aclocal/ogg.m4 +116 -0
- data/vendor/local/share/aclocal/speex.m4 +104 -0
- data/vendor/local/share/aclocal/vorbis.m4 +136 -0
- data/vendor/local/share/doc/libogg-1.3.0/framing.html +429 -0
- data/vendor/local/share/doc/libogg-1.3.0/index.html +105 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg-multiplex.html +446 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/bitpacking.html +103 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/datastructures.html +59 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/decoding.html +104 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/encoding.html +76 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/general.html +109 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/index.html +39 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet.html +75 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet_clear.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page.html +75 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_bos.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_checksum_set.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_continued.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_eos.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_granulepos.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_packets.html +75 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_pageno.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_serialno.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_version.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_clear.html +61 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_destroy.html +71 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_eos.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_flush.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_init.html +66 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetin.html +72 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetout.html +85 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetpeek.html +85 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pagein.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout.html +84 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout_fill.html +89 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset.html +61 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset_serialno.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_state.html +121 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_buffer.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_clear.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_destroy.html +68 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_init.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageout.html +77 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageseek.html +68 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_reset.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_state.html +77 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_wrote.html +73 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv1.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bits.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_buffer.html +66 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bytes.html +67 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_get_buffer.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look.html +66 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look1.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read1.html +63 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_readinit.html +64 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_reset.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_write.html +68 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writealign.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeclear.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writecopy.html +69 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeinit.html +62 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writetrunc.html +65 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/overview.html +44 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/reference.html +98 -0
- data/vendor/local/share/doc/libogg-1.3.0/ogg/style.css +7 -0
- data/vendor/local/share/doc/libogg-1.3.0/oggstream.html +594 -0
- data/vendor/local/share/doc/libogg-1.3.0/rfc3533.txt +843 -0
- data/vendor/local/share/doc/libogg-1.3.0/rfc5334.txt +787 -0
- data/vendor/local/share/doc/libogg-1.3.0/skeleton.html +222 -0
- data/vendor/local/share/doc/libogg-1.3.0/stream.png +0 -0
- data/vendor/local/share/doc/libogg-1.3.0/vorbisword2.png +0 -0
- data/vendor/local/share/doc/libogg-1.3.0/white-ogg.png +0 -0
- data/vendor/local/share/doc/libogg-1.3.0/white-xifish.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/color.html +602 -0
- data/vendor/local/share/doc/libtheora-1.1.1/doxygen-build.stamp +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.txt +1400 -0
- data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.xml +1146 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/annotated.html +82 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/bc_s.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/classes.html +79 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/closed.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h.html +469 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h_source.html +233 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.css +949 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/files.html +75 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/functions.html +385 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/functions_vars.html +385 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals.html +502 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_defs.html +247 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_enum.html +90 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_eval.html +129 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_func.html +247 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_type.html +102 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/globals_vars.html +84 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__basefuncs.html +568 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__decfuncs.html +402 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__encfuncs.html +352 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/group__oldfuncs.html +1662 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/index.html +76 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/modules.html +69 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/nav_f.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/nav_h.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/open.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__comment.html +158 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__huff__code.html +122 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__img__plane.html +155 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__info.html +397 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__info.html +171 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__ranges.html +139 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structth__stripe__callback.html +121 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__comment.html +157 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__info.html +527 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__state.html +142 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/structyuv__buffer.html +243 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_a.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.gif +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_h.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_l.gif +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_r.gif +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tab_s.png +0 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/tabs.css +59 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h.html +258 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h_source.html +283 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h.html +405 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h_source.html +146 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h.html +716 -0
- data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h_source.html +155 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/Makefile +39 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/annotated.tex +14 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/codec_8h.tex +273 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/doxygen.sty +482 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/files.tex +7 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__basefuncs.tex +336 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__decfuncs.tex +223 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__encfuncs.tex +195 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/group__oldfuncs.tex +1046 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/index.tex +12 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/modules.tex +7 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/refman.tex +76 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__comment.tex +67 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__huff__code.tex +45 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__img__plane.tex +63 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__info.tex +189 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__info.tex +95 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__ranges.tex +54 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__stripe__callback.tex +45 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__comment.tex +67 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__info.tex +233 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__state.tex +45 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/structyuv__buffer.tex +114 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/theora_8h.tex +191 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/theoradec_8h.tex +251 -0
- data/vendor/local/share/doc/libtheora-1.1.1/latex/theoraenc_8h.tex +512 -0
- data/vendor/local/share/doc/libtheora-1.1.1/vp3-format.txt +1305 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/doxygen-build.stamp +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/eightphase.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/evenlsp.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/fish_xiph_org.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/floor1_inverse_dB_table.html +154 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/floorval.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/fourphase.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/framing.html +431 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/helper.html +239 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/index.html +114 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/index.html +44 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/overview.html +136 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/reference.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/return.html +79 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/style.css +7 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_blockout.html +79 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_buffer.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_headerout.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_init.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_wrote.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_addblock.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_flushpacket.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block.html +60 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_clear.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_init.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add.html +70 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add_tag.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_clear.html +69 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_init.html +72 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query.html +72 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query_count.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_commentheader_out.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_clear.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_state.html +57 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_granule_time.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_blocksize.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_clear.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_init.html +62 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_packet_blocksize.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis.html +70 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_blockin.html +69 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate.html +68 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate_p.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_headerin.html +80 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_idheader.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_init.html +69 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_lapout.html +74 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_pcmout.html +75 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_read.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_restart.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_trackonly.html +71 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_version_string.html +56 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/lspmap.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/oddlsp.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/oggstream.html +234 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/programming.html +554 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.txt +1459 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.xml +1176 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/squarepolar.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/stereo.html +419 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/stream.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/v-comment.html +285 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-clip.txt +139 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-errors.txt +103 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-fidelity.html +180 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbis.html +234 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/changes.html +104 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/examples.html +133 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/index.html +40 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage2_arg.html +92 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage_arg.html +92 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/overview.html +382 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/reference.html +54 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/style.css +7 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_ctl.html +183 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init.html +88 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init_vbr.html +81 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_init.html +88 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_managed.html +102 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_vbr.html +90 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/OggVorbis_File.html +137 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/callbacks.html +121 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chaining_example_c.html +90 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chainingexample.html +175 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/crosslap.html +121 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/datastructures.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/decoding.html +92 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/example.html +208 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/exampleindex.html +39 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/fileinfo.html +95 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/index.html +49 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/initialization.html +118 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate.html +72 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate_instant.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_callbacks.html +117 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_clear.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_comment.html +66 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_crosslap.html +100 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_fopen.html +124 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_info.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open.html +183 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open_callbacks.html +147 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_lap.html +103 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page.html +84 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page_lap.html +112 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_tell.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_total.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek_lap.html +110 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_tell.html +65 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_total.html +68 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read.html +148 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_filter.html +114 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_float.html +105 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_seekable.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_serialnumber.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_streams.html +64 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test.html +101 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_callbacks.html +111 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_open.html +82 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek.html +82 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_lap.html +105 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page.html +83 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page_lap.html +112 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_tell.html +63 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_total.html +67 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/overview.html +61 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/reference.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekexample.html +152 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking.html +107 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_example_c.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_test_c.html +86 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekingexample.html +203 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/style.css +7 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/threads.html +50 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/vorbisfile_example_c.html +106 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/vorbisword2.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/wait.png +0 -0
- data/vendor/local/share/doc/libvorbis-1.3.2/white-xifish.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/Copyright +27 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/testHTML.c +880 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/testSAX.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/testXPath.c +227 -0
- data/vendor/local/share/doc/libxml2-2.7.7/examples/xmllint.c +3722 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/DOM.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/FAQ.html +282 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/encoding.html +206 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xml +751 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xsl +174 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/book1.html +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/index.html +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/left.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-DOCBparser.html +51 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLparser.html +182 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLtree.html +73 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX.html +125 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX2.html +128 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-c14n.html +38 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-catalog.html +142 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-chvalid.html +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-debugXML.html +120 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-dict.html +49 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-encoding.html +118 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-entities.html +79 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-globals.html +152 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-hash.html +116 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-lib.html +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-list.html +120 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanoftp.html +92 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanohttp.html +65 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parser.html +555 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parserInternals.html +319 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-pattern.html +76 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-relaxng.html +162 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schemasInternals.html +373 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schematron.html +81 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-threads.html +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-tree.html +958 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-uri.html +73 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-valid.html +289 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xinclude.html +59 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xlink.html +82 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlIO.html +206 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlautomata.html +85 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlerror.html +862 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlexports.html +20 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmemory.html +107 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmodule.html +38 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlreader.html +327 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlregexp.html +143 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlsave.html +59 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemas.html +173 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemastypes.html +123 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlstring.html +108 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlunicode.html +512 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlversion.html +60 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlwriter.html +258 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpath.html +307 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpathInternals.html +394 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpointer.html +83 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/right.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/html/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io1.c +166 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io2.c +58 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/io2.res +2 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/libxml.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse1.c +56 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse2.c +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse3.c +60 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/parse4.c +143 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.c +107 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.res +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader2.c +122 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.c +120 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.res +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.c +122 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.res +3 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/redhat.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/structure.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/test1.xml +1 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/test2.xml +13 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/test3.xml +39 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/testWriter.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.c +94 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.res +4 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.c +118 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.res +18 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tst.xml +7 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apa.html +8 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apb.html +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apc.html +82 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apd.html +76 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ape.html +78 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apf.html +67 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apg.html +75 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/aph.html +76 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/api.html +4 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s02.html +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s03.html +47 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s04.html +54 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s05.html +55 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s06.html +35 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s07.html +30 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s08.html +38 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s09.html +63 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddattribute.c +64 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddkeyword.c +75 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeconvert.c +73 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includegetattribute.c +72 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includekeyword.c +79 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includexpath.c +74 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ix01.html +1 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/xmltutorial.pdf +1336 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/w3c.png +0 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/writer.xml +2 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xml.html +5344 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.c +250 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.c +190 -0
- data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.res +30 -0
- data/vendor/local/share/doc/speex/manual.pdf +0 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/glib-2.0/schemas/org.freedesktop.gstreamer-0.10.default-elements.gschema.xml +94 -0
- data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer10Bands.prs +174 -0
- data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer3Bands.prs +14 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/annotation-glossary.html +77 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-deprecated.html +132 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-full.html +5106 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/compiling.html +64 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp +1398 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp2 +1723 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsink.html +568 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsrc.html +664 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-encoding-profile.html +1606 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudio.html +400 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudioclock.html +317 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiofilter.html +165 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiomixerutils.html +144 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosink.html +202 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosrc.html +203 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosink.html +447 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosrc.html +402 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpaudiopayload.html +377 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpdepayload.html +260 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertppayload.html +469 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcddabasesrc.html +283 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalance.html +346 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalancechannel.html +156 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstdiscoverer.html +1457 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfft.html +130 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf32.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf64.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts16.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts32.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfloatcast.html +105 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixer.html +956 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixeroptions.html +108 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixertrack.html +259 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmultichannel.html +398 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnavigation.html +1166 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnetbuffer.html +498 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutils.html +225 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilscodecutils.html +469 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsdescriptions.html +297 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsinstallplugins.html +821 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsmissingplugins.html +510 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpropertyprobe.html +449 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstriff.html +2092 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstringbuffer.html +1480 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtcpbuffer.html +1985 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtpbuffer.html +1959 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtppayloads.html +391 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspbase64.html +121 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspconnection.html +1421 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspdefs.html +879 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspextension.html +104 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspmessage.html +988 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsprange.html +269 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsptransport.html +499 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspurl.html +315 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstsdpmessage.html +2802 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gststreamvolume.html +308 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttag.html +829 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagdemux.html +248 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagid3.html +252 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttaglanguagecodes.html +243 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagvorbis.html +272 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagxmp.html +119 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttuner.html +723 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunerchannel.html +264 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunernorm.html +99 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideo.html +1942 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideofilter.html +95 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideoorientation.html +406 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideosink.html +253 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstxoverlay.html +864 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-app.html +48 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-audio.html +68 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-base-utils.html +60 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-cdda.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-ffft.html +57 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-floatcast.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-interfaces.html +82 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-libs-hierarchy.html +76 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-netbuffer.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-plugins-base.html +285 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-riff.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtp.html +55 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtsp.html +61 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-sdp.html +38 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-tag.html +59 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-video.html +46 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.html +284 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.sgml +1973 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/GstPlayBaseBin.html +219 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch01.html +185 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch02.html +125 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch03.html +33 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp +684 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp2 +782 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html +215 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html +151 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html +216 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html +213 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html +463 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html +405 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html +338 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html +280 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html +233 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html +321 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html +257 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html +270 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html +303 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html +642 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html +375 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html +296 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html +171 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html +204 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html +233 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html +228 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html +216 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html +215 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html +256 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html +269 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html +976 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html +177 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html +255 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html +463 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html +1204 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-adder.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-alsa.html +84 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-app.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioconvert.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiorate.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioresample.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiotestsrc.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-cdparanoia.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-decodebin.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-encoding.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ffmpegcolorspace.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gdp.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gio.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gnomevfs.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-libvisual.html +104 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ogg.html +100 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-pango.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-playback.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-subparse.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-tcp.html +92 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-theora.html +84 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-typefindfunctions.html +71 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-uridecodebin.html +80 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-video4linux.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videorate.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videoscale.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videotestsrc.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-volume.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-vorbis.html +88 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ximagesink.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-xvimagesink.html +74 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html +233 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html +186 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html +187 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html +180 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html +187 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html +651 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html +243 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html +194 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html +416 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html +222 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html +253 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html +608 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html +320 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html +489 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html +663 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html +236 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html +176 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html +257 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html +199 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html +194 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html +332 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html +460 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.html +288 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.sgml +1059 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBin.html +1180 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBus.html +1127 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstChildProxy.html +575 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstClock.html +1846 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElement.html +3919 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElementFactory.html +1180 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstGhostPad.html +337 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstImplementsInterface.html +179 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndex.html +1449 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndexFactory.html +205 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstObject.html +1498 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPad.html +5192 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPadTemplate.html +624 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPipeline.html +626 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPlugin.html +1285 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPluginFeature.html +529 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPreset.html +437 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstRegistry.html +1021 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstSystemClock.html +161 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTagSetter.html +504 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTask.html +766 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTaskPool.html +291 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTypeFindFactory.html +290 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstXML.html +453 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/annotation-glossary.html +101 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-deprecated.html +188 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-full.html +7056 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-building.html +109 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-running.html +205 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp +1814 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp2 +2190 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-Gst.html +538 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstAtomicQueue.html +231 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBuffer.html +1458 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBufferList.html +1043 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstCaps.html +1646 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstDateTime.html +584 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstEvent.html +2195 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFilter.html +174 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFormat.html +349 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstGError.html +645 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstInfo.html +2466 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstIterator.html +1019 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMessage.html +3301 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMiniObject.html +662 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParamSpec.html +252 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParse.html +539 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstPoll.html +719 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstQuery.html +1963 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstSegment.html +816 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstStructure.html +2196 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTagList.html +3477 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTrace.html +591 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTypeFind.html +403 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUriHandler.html +635 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUtils.html +2334 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstValue.html +2442 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstVersion.html +140 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-gstconfig.html +175 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-hierarchy.html +60 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-support.html +42 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer.html +57 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.html +224 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.sgml +2441 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/libgstreamer.html +201 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstAdapter.html +745 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSink.html +1298 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSrc.html +844 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseTransform.html +875 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstCollectPads.html +1002 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstControlSource.html +407 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstController.html +936 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstInterpolationControlSource.html +363 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstLFOControlSource.html +222 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetClientClock.html +174 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetTimeProvider.html +172 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstPushSrc.html +108 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/annotation-glossary.html +89 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-deprecated.html +75 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-full.html +2227 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gdp-header.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-base.html +74 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-check.html +45 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-control.html +51 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-dataprotocol.html +33 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-hierarchy.html +49 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp +589 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp2 +615 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBaseParse.html +1004 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBitReader.html +1008 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBufferStraw.html +169 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteReader.html +3668 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteWriter.html +2233 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstCheck.html +585 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstControllerGObject.html +464 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstDataQueue.html +544 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstNetTimePacket.html +249 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstStreamConsistency.html +130 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstTypeFindHelper.html +364 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-gstdataprotocol.html +818 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs.html +132 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-net.html +47 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.html +129 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.sgml +707 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch01.html +83 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch02.html +38 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp +214 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp2 +244 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-capsfilter.html +184 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesink.html +358 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesrc.html +525 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsink.html +166 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsrc.html +210 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesink.html +202 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesrc.html +230 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-funnel.html +156 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-identity.html +310 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-input-selector.html +327 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-multiqueue.html +397 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-output-selector.html +183 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreelements.html +140 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreindexers.html +70 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue.html +425 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue2.html +308 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-tee.html +273 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-typefind.html +243 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-valve.html +179 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.html +95 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.sgml +338 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
- data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
- data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +371 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +119 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +208 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +177 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +762 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +673 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1542 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +337 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +950 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +560 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +132 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +299 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +277 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +474 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +529 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3529 -0
- data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
- data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
- data/vendor/local/share/license/gst-ffmpeg/AUTHORS +1 -0
- data/vendor/local/share/license/gst-ffmpeg/COPYING +339 -0
- data/vendor/local/share/license/gst-ffmpeg/COPYING.LIB +481 -0
- data/vendor/local/share/license/gst-plugins-bad/AUTHORS +21 -0
- data/vendor/local/share/license/gst-plugins-bad/COPYING +340 -0
- data/vendor/local/share/license/gst-plugins-bad/COPYING.LIB +481 -0
- data/vendor/local/share/license/gst-plugins-base/AUTHORS +23 -0
- data/vendor/local/share/license/gst-plugins-base/COPYING +340 -0
- data/vendor/local/share/license/gst-plugins-base/COPYING.LIB +481 -0
- data/vendor/local/share/license/gst-plugins-good/AUTHORS +21 -0
- data/vendor/local/share/license/gst-plugins-good/COPYING +504 -0
- data/vendor/local/share/license/gstreamer/AUTHORS +32 -0
- data/vendor/local/share/license/gstreamer/COPYING +481 -0
- data/vendor/local/share/license/libav/COPYING.GPLv2 +339 -0
- data/vendor/local/share/license/libav/COPYING.GPLv3 +674 -0
- data/vendor/local/share/license/libav/COPYING.LGPLv2.1 +504 -0
- data/vendor/local/share/license/libav/COPYING.LGPLv3 +165 -0
- data/vendor/local/share/license/libav/CREDITS +55 -0
- data/vendor/local/share/license/libav/LICENSE +46 -0
- data/vendor/local/share/license/libogg/AUTHORS +7 -0
- data/vendor/local/share/license/libogg/COPYING +28 -0
- data/vendor/local/share/license/libtheora/AUTHORS +49 -0
- data/vendor/local/share/license/libtheora/COPYING +28 -0
- data/vendor/local/share/license/libvorbis/AUTHORS +3 -0
- data/vendor/local/share/license/libvorbis/COPYING +28 -0
- data/vendor/local/share/license/speex/AUTHORS +18 -0
- data/vendor/local/share/license/speex/COPYING +35 -0
- data/vendor/local/share/man/man1/cjpeg.1 +325 -0
- data/vendor/local/share/man/man1/djpeg.1 +252 -0
- data/vendor/local/share/man/man1/gst-feedback-0.10.1 +38 -0
- data/vendor/local/share/man/man1/gst-inspect-0.10.1 +58 -0
- data/vendor/local/share/man/man1/gst-launch-0.10.1 +475 -0
- data/vendor/local/share/man/man1/gst-typefind-0.10.1 +40 -0
- data/vendor/local/share/man/man1/gst-visualise-0.10.1 +32 -0
- data/vendor/local/share/man/man1/gst-xmlinspect-0.10.1 +51 -0
- data/vendor/local/share/man/man1/gst-xmllaunch-0.10.1 +69 -0
- data/vendor/local/share/man/man1/jpegtran.1 +285 -0
- data/vendor/local/share/man/man1/rdjpgcom.1 +63 -0
- data/vendor/local/share/man/man1/speexdec.1 +78 -0
- data/vendor/local/share/man/man1/speexenc.1 +105 -0
- data/vendor/local/share/man/man1/wrjpgcom.1 +103 -0
- data/vendor/local/share/man/man1/xml2-config.1 +31 -0
- data/vendor/local/share/man/man1/xmlcatalog.1 +229 -0
- data/vendor/local/share/man/man1/xmllint.1 +427 -0
- data/vendor/local/share/man/man3/libxml.3 +71 -0
- data/vendor/local/src/tml/packaging/jpeg_8-1_win32.log +248 -0
- data/vendor/local/src/tml/packaging/jpeg_8-1_win32.sh +44 -0
- data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.log +1518 -0
- data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.sh +60 -0
- data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.log +1244 -0
- data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.sh +66 -0
- metadata +2025 -0
@@ -0,0 +1,3477 @@
|
|
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>GstTagList</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="libgstreamer.html" title="GStreamer Core Library">
|
9
|
+
<link rel="prev" href="GstSystemClock.html" title="GstSystemClock">
|
10
|
+
<link rel="next" href="GstTagSetter.html" title="GstTagSetter">
|
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="GstSystemClock.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="libgstreamer.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="GstTagSetter.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-GstTagList.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#gstreamer-GstTagList.description" class="shortcut">Description</a>
|
27
|
+
</td></tr>
|
28
|
+
</table>
|
29
|
+
<div class="refentry">
|
30
|
+
<a name="gstreamer-GstTagList"></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-GstTagList.top_of_page"></a>GstTagList</span></h2>
|
34
|
+
<p>GstTagList — List of tags and values used to describe media metadata</p>
|
35
|
+
</td>
|
36
|
+
<td valign="top" align="right"></td>
|
37
|
+
</tr></table></div>
|
38
|
+
<div class="refsynopsisdiv">
|
39
|
+
<a name="gstreamer-GstTagList.synopsis"></a><h2>Synopsis</h2>
|
40
|
+
<pre class="synopsis">
|
41
|
+
#include <gst/gst.h>
|
42
|
+
|
43
|
+
typedef <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList">GstTagList</a>;
|
44
|
+
enum <a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode">GstTagMergeMode</a>;
|
45
|
+
enum <a class="link" href="gstreamer-GstTagList.html#GstTagFlag" title="enum GstTagFlag">GstTagFlag</a>;
|
46
|
+
<span class="returnvalue">void</span> (<a class="link" href="gstreamer-GstTagList.html#GstTagForeachFunc" title="GstTagForeachFunc ()">*GstTagForeachFunc</a>) (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
47
|
+
<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> *tag</code></em>,
|
48
|
+
<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> user_data</code></em>);
|
49
|
+
<span class="returnvalue">void</span> (<a class="link" href="gstreamer-GstTagList.html#GstTagMergeFunc" title="GstTagMergeFunc ()">*GstTagMergeFunc</a>) (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *dest</code></em>,
|
50
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *src</code></em>);
|
51
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-TITLE:CAPS" title="GST_TAG_TITLE">GST_TAG_TITLE</a>
|
52
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-TITLE-SORTNAME:CAPS" title="GST_TAG_TITLE_SORTNAME">GST_TAG_TITLE_SORTNAME</a>
|
53
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ARTIST:CAPS" title="GST_TAG_ARTIST">GST_TAG_ARTIST</a>
|
54
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ARTIST-SORTNAME:CAPS" title="GST_TAG_ARTIST_SORTNAME">GST_TAG_ARTIST_SORTNAME</a>
|
55
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ALBUM:CAPS" title="GST_TAG_ALBUM">GST_TAG_ALBUM</a>
|
56
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ALBUM-SORTNAME:CAPS" title="GST_TAG_ALBUM_SORTNAME">GST_TAG_ALBUM_SORTNAME</a>
|
57
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ALBUM-ARTIST:CAPS" title="GST_TAG_ALBUM_ARTIST">GST_TAG_ALBUM_ARTIST</a>
|
58
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ALBUM-ARTIST-SORTNAME:CAPS" title="GST_TAG_ALBUM_ARTIST_SORTNAME">GST_TAG_ALBUM_ARTIST_SORTNAME</a>
|
59
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-DATE:CAPS" title="GST_TAG_DATE">GST_TAG_DATE</a>
|
60
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-DATE-TIME:CAPS" title="GST_TAG_DATE_TIME">GST_TAG_DATE_TIME</a>
|
61
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GENRE:CAPS" title="GST_TAG_GENRE">GST_TAG_GENRE</a>
|
62
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-COMMENT:CAPS" title="GST_TAG_COMMENT">GST_TAG_COMMENT</a>
|
63
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-EXTENDED-COMMENT:CAPS" title="GST_TAG_EXTENDED_COMMENT">GST_TAG_EXTENDED_COMMENT</a>
|
64
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-TRACK-NUMBER:CAPS" title="GST_TAG_TRACK_NUMBER">GST_TAG_TRACK_NUMBER</a>
|
65
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-TRACK-COUNT:CAPS" title="GST_TAG_TRACK_COUNT">GST_TAG_TRACK_COUNT</a>
|
66
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ALBUM-VOLUME-NUMBER:CAPS" title="GST_TAG_ALBUM_VOLUME_NUMBER">GST_TAG_ALBUM_VOLUME_NUMBER</a>
|
67
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ALBUM-VOLUME-COUNT:CAPS" title="GST_TAG_ALBUM_VOLUME_COUNT">GST_TAG_ALBUM_VOLUME_COUNT</a>
|
68
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-LOCATION:CAPS" title="GST_TAG_LOCATION">GST_TAG_LOCATION</a>
|
69
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-HOMEPAGE:CAPS" title="GST_TAG_HOMEPAGE">GST_TAG_HOMEPAGE</a>
|
70
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-DESCRIPTION:CAPS" title="GST_TAG_DESCRIPTION">GST_TAG_DESCRIPTION</a>
|
71
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-VERSION:CAPS" title="GST_TAG_VERSION">GST_TAG_VERSION</a>
|
72
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ISRC:CAPS" title="GST_TAG_ISRC">GST_TAG_ISRC</a>
|
73
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ORGANIZATION:CAPS" title="GST_TAG_ORGANIZATION">GST_TAG_ORGANIZATION</a>
|
74
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-COPYRIGHT:CAPS" title="GST_TAG_COPYRIGHT">GST_TAG_COPYRIGHT</a>
|
75
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-COPYRIGHT-URI:CAPS" title="GST_TAG_COPYRIGHT_URI">GST_TAG_COPYRIGHT_URI</a>
|
76
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ENCODED-BY:CAPS" title="GST_TAG_ENCODED_BY">GST_TAG_ENCODED_BY</a>
|
77
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-COMPOSER:CAPS" title="GST_TAG_COMPOSER">GST_TAG_COMPOSER</a>
|
78
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-CONTACT:CAPS" title="GST_TAG_CONTACT">GST_TAG_CONTACT</a>
|
79
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-LICENSE:CAPS" title="GST_TAG_LICENSE">GST_TAG_LICENSE</a>
|
80
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-LICENSE-URI:CAPS" title="GST_TAG_LICENSE_URI">GST_TAG_LICENSE_URI</a>
|
81
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-PERFORMER:CAPS" title="GST_TAG_PERFORMER">GST_TAG_PERFORMER</a>
|
82
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-DURATION:CAPS" title="GST_TAG_DURATION">GST_TAG_DURATION</a>
|
83
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-CODEC:CAPS" title="GST_TAG_CODEC">GST_TAG_CODEC</a>
|
84
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-VIDEO-CODEC:CAPS" title="GST_TAG_VIDEO_CODEC">GST_TAG_VIDEO_CODEC</a>
|
85
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-AUDIO-CODEC:CAPS" title="GST_TAG_AUDIO_CODEC">GST_TAG_AUDIO_CODEC</a>
|
86
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-SUBTITLE-CODEC:CAPS" title="GST_TAG_SUBTITLE_CODEC">GST_TAG_SUBTITLE_CODEC</a>
|
87
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-CONTAINER-FORMAT:CAPS" title="GST_TAG_CONTAINER_FORMAT">GST_TAG_CONTAINER_FORMAT</a>
|
88
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-BITRATE:CAPS" title="GST_TAG_BITRATE">GST_TAG_BITRATE</a>
|
89
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-NOMINAL-BITRATE:CAPS" title="GST_TAG_NOMINAL_BITRATE">GST_TAG_NOMINAL_BITRATE</a>
|
90
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-MINIMUM-BITRATE:CAPS" title="GST_TAG_MINIMUM_BITRATE">GST_TAG_MINIMUM_BITRATE</a>
|
91
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-MAXIMUM-BITRATE:CAPS" title="GST_TAG_MAXIMUM_BITRATE">GST_TAG_MAXIMUM_BITRATE</a>
|
92
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-SERIAL:CAPS" title="GST_TAG_SERIAL">GST_TAG_SERIAL</a>
|
93
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ENCODER:CAPS" title="GST_TAG_ENCODER">GST_TAG_ENCODER</a>
|
94
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ENCODER-VERSION:CAPS" title="GST_TAG_ENCODER_VERSION">GST_TAG_ENCODER_VERSION</a>
|
95
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-TRACK-GAIN:CAPS" title="GST_TAG_TRACK_GAIN">GST_TAG_TRACK_GAIN</a>
|
96
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-TRACK-PEAK:CAPS" title="GST_TAG_TRACK_PEAK">GST_TAG_TRACK_PEAK</a>
|
97
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ALBUM-GAIN:CAPS" title="GST_TAG_ALBUM_GAIN">GST_TAG_ALBUM_GAIN</a>
|
98
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ALBUM-PEAK:CAPS" title="GST_TAG_ALBUM_PEAK">GST_TAG_ALBUM_PEAK</a>
|
99
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-REFERENCE-LEVEL:CAPS" title="GST_TAG_REFERENCE_LEVEL">GST_TAG_REFERENCE_LEVEL</a>
|
100
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-LANGUAGE-CODE:CAPS" title="GST_TAG_LANGUAGE_CODE">GST_TAG_LANGUAGE_CODE</a>
|
101
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-IMAGE:CAPS" title="GST_TAG_IMAGE">GST_TAG_IMAGE</a>
|
102
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-PREVIEW-IMAGE:CAPS" title="GST_TAG_PREVIEW_IMAGE">GST_TAG_PREVIEW_IMAGE</a>
|
103
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-ATTACHMENT:CAPS" title="GST_TAG_ATTACHMENT">GST_TAG_ATTACHMENT</a>
|
104
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-BEATS-PER-MINUTE:CAPS" title="GST_TAG_BEATS_PER_MINUTE">GST_TAG_BEATS_PER_MINUTE</a>
|
105
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-KEYWORDS:CAPS" title="GST_TAG_KEYWORDS">GST_TAG_KEYWORDS</a>
|
106
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-NAME:CAPS" title="GST_TAG_GEO_LOCATION_NAME">GST_TAG_GEO_LOCATION_NAME</a>
|
107
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-LATITUDE:CAPS" title="GST_TAG_GEO_LOCATION_LATITUDE">GST_TAG_GEO_LOCATION_LATITUDE</a>
|
108
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-LONGITUDE:CAPS" title="GST_TAG_GEO_LOCATION_LONGITUDE">GST_TAG_GEO_LOCATION_LONGITUDE</a>
|
109
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-ELEVATION:CAPS" title="GST_TAG_GEO_LOCATION_ELEVATION">GST_TAG_GEO_LOCATION_ELEVATION</a>
|
110
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-CITY:CAPS" title="GST_TAG_GEO_LOCATION_CITY">GST_TAG_GEO_LOCATION_CITY</a>
|
111
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-COUNTRY:CAPS" title="GST_TAG_GEO_LOCATION_COUNTRY">GST_TAG_GEO_LOCATION_COUNTRY</a>
|
112
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-SUBLOCATION:CAPS" title="GST_TAG_GEO_LOCATION_SUBLOCATION">GST_TAG_GEO_LOCATION_SUBLOCATION</a>
|
113
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-HORIZONTAL-ERROR:CAPS" title="GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR">GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR</a>
|
114
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-MOVEMENT-DIRECTION:CAPS" title="GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION">GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION</a>
|
115
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-MOVEMENT-SPEED:CAPS" title="GST_TAG_GEO_LOCATION_MOVEMENT_SPEED">GST_TAG_GEO_LOCATION_MOVEMENT_SPEED</a>
|
116
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-CAPTURE-DIRECTION:CAPS" title="GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION">GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION</a>
|
117
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-SHOW-NAME:CAPS" title="GST_TAG_SHOW_NAME">GST_TAG_SHOW_NAME</a>
|
118
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-SHOW-SORTNAME:CAPS" title="GST_TAG_SHOW_SORTNAME">GST_TAG_SHOW_SORTNAME</a>
|
119
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-SHOW-EPISODE-NUMBER:CAPS" title="GST_TAG_SHOW_EPISODE_NUMBER">GST_TAG_SHOW_EPISODE_NUMBER</a>
|
120
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-SHOW-SEASON-NUMBER:CAPS" title="GST_TAG_SHOW_SEASON_NUMBER">GST_TAG_SHOW_SEASON_NUMBER</a>
|
121
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-LYRICS:CAPS" title="GST_TAG_LYRICS">GST_TAG_LYRICS</a>
|
122
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-COMPOSER-SORTNAME:CAPS" title="GST_TAG_COMPOSER_SORTNAME">GST_TAG_COMPOSER_SORTNAME</a>
|
123
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GROUPING:CAPS" title="GST_TAG_GROUPING">GST_TAG_GROUPING</a>
|
124
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-USER-RATING:CAPS" title="GST_TAG_USER_RATING">GST_TAG_USER_RATING</a>
|
125
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-DEVICE-MANUFACTURER:CAPS" title="GST_TAG_DEVICE_MANUFACTURER">GST_TAG_DEVICE_MANUFACTURER</a>
|
126
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-DEVICE-MODEL:CAPS" title="GST_TAG_DEVICE_MODEL">GST_TAG_DEVICE_MODEL</a>
|
127
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-APPLICATION-NAME:CAPS" title="GST_TAG_APPLICATION_NAME">GST_TAG_APPLICATION_NAME</a>
|
128
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-APPLICATION-DATA:CAPS" title="GST_TAG_APPLICATION_DATA">GST_TAG_APPLICATION_DATA</a>
|
129
|
+
#define <a class="link" href="gstreamer-GstTagList.html#GST-TAG-IMAGE-ORIENTATION:CAPS" title="GST_TAG_IMAGE_ORIENTATION">GST_TAG_IMAGE_ORIENTATION</a>
|
130
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-register" title="gst_tag_register ()">gst_tag_register</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>,
|
131
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagFlag" title="enum GstTagFlag"><span class="type">GstTagFlag</span></a> flag</code></em>,
|
132
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>,
|
133
|
+
<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> *nick</code></em>,
|
134
|
+
<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> *blurb</code></em>,
|
135
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeFunc" title="GstTagMergeFunc ()"><span class="type">GstTagMergeFunc</span></a> func</code></em>);
|
136
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-merge-use-first" title="gst_tag_merge_use_first ()">gst_tag_merge_use_first</a> (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *dest</code></em>,
|
137
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *src</code></em>);
|
138
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-merge-strings-with-comma" title="gst_tag_merge_strings_with_comma ()">gst_tag_merge_strings_with_comma</a> (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *dest</code></em>,
|
139
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *src</code></em>);
|
140
|
+
<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-GstTagList.html#gst-tag-exists" title="gst_tag_exists ()">gst_tag_exists</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> *tag</code></em>);
|
141
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a> <a class="link" href="gstreamer-GstTagList.html#gst-tag-get-type" title="gst_tag_get_type ()">gst_tag_get_type</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> *tag</code></em>);
|
142
|
+
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-GstTagList.html#gst-tag-get-nick" title="gst_tag_get_nick ()">gst_tag_get_nick</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> *tag</code></em>);
|
143
|
+
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-GstTagList.html#gst-tag-get-description" title="gst_tag_get_description ()">gst_tag_get_description</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> *tag</code></em>);
|
144
|
+
<a class="link" href="gstreamer-GstTagList.html#GstTagFlag" title="enum GstTagFlag"><span class="returnvalue">GstTagFlag</span></a> <a class="link" href="gstreamer-GstTagList.html#gst-tag-get-flag" title="gst_tag_get_flag ()">gst_tag_get_flag</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> *tag</code></em>);
|
145
|
+
<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-GstTagList.html#gst-tag-is-fixed" title="gst_tag_is_fixed ()">gst_tag_is_fixed</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> *tag</code></em>);
|
146
|
+
<a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-new" title="gst_tag_list_new ()">gst_tag_list_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
147
|
+
<a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-new-full" title="gst_tag_list_new_full ()">gst_tag_list_new_full</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> *tag</code></em>,
|
148
|
+
<em class="parameter"><code>...</code></em>);
|
149
|
+
<a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-new-full-valist" title="gst_tag_list_new_full_valist ()">gst_tag_list_new_full_valist</a> (<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
|
150
|
+
<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-GstTagList.html#gst-is-tag-list" title="gst_is_tag_list ()">gst_is_tag_list</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#gconstpointer"><span class="type">gconstpointer</span></a> p</code></em>);
|
151
|
+
<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-GstTagList.html#gst-tag-list-is-empty" title="gst_tag_list_is_empty ()">gst_tag_list_is_empty</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);
|
152
|
+
<a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-copy" title="gst_tag_list_copy ()">gst_tag_list_copy</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);
|
153
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-insert" title="gst_tag_list_insert ()">gst_tag_list_insert</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *into</code></em>,
|
154
|
+
<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *from</code></em>,
|
155
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>);
|
156
|
+
<a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-merge" title="gst_tag_list_merge ()">gst_tag_list_merge</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list1</code></em>,
|
157
|
+
<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list2</code></em>,
|
158
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>);
|
159
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-free" title="gst_tag_list_free ()">gst_tag_list_free</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);
|
160
|
+
<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-GstTagList.html#gst-tag-list-get-tag-size" title="gst_tag_list_get_tag_size ()">gst_tag_list_get_tag_size</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
161
|
+
<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> *tag</code></em>);
|
162
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-add" title="gst_tag_list_add ()">gst_tag_list_add</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
163
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
164
|
+
<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> *tag</code></em>,
|
165
|
+
<em class="parameter"><code>...</code></em>);
|
166
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-add-value" title="gst_tag_list_add_value ()">gst_tag_list_add_value</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
167
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
168
|
+
<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> *tag</code></em>,
|
169
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);
|
170
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-add-values" title="gst_tag_list_add_values ()">gst_tag_list_add_values</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
171
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
172
|
+
<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> *tag</code></em>,
|
173
|
+
<em class="parameter"><code>...</code></em>);
|
174
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-add-valist" title="gst_tag_list_add_valist ()">gst_tag_list_add_valist</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
175
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
176
|
+
<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> *tag</code></em>,
|
177
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
|
178
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-add-valist-values" title="gst_tag_list_add_valist_values ()">gst_tag_list_add_valist_values</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
179
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
180
|
+
<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> *tag</code></em>,
|
181
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
|
182
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-remove-tag" title="gst_tag_list_remove_tag ()">gst_tag_list_remove_tag</a> (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
183
|
+
<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> *tag</code></em>);
|
184
|
+
<span class="returnvalue">void</span> <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-foreach" title="gst_tag_list_foreach ()">gst_tag_list_foreach</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
185
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagForeachFunc" title="GstTagForeachFunc ()"><span class="type">GstTagForeachFunc</span></a> func</code></em>,
|
186
|
+
<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> user_data</code></em>);
|
187
|
+
const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="returnvalue">GValue</span></a> * <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-get-value-index" title="gst_tag_list_get_value_index ()">gst_tag_list_get_value_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
188
|
+
<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> *tag</code></em>,
|
189
|
+
<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> index</code></em>);
|
190
|
+
<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-GstTagList.html#gst-tag-list-copy-value" title="gst_tag_list_copy_value ()">gst_tag_list_copy_value</a> (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *dest</code></em>,
|
191
|
+
<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
192
|
+
<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> *tag</code></em>);
|
193
|
+
<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-GstTagList.html#gst-tag-list-get-char" title="gst_tag_list_get_char ()">gst_tag_list_get_char</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
194
|
+
<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> *tag</code></em>,
|
195
|
+
<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#gchar"><span class="type">gchar</span></a> *value</code></em>);
|
196
|
+
<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-GstTagList.html#gst-tag-list-get-char-index" title="gst_tag_list_get_char_index ()">gst_tag_list_get_char_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
197
|
+
<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> *tag</code></em>,
|
198
|
+
<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> index</code></em>,
|
199
|
+
<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#gchar"><span class="type">gchar</span></a> *value</code></em>);
|
200
|
+
<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-GstTagList.html#gst-tag-list-get-uchar" title="gst_tag_list_get_uchar ()">gst_tag_list_get_uchar</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
201
|
+
<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> *tag</code></em>,
|
202
|
+
<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#guchar"><span class="type">guchar</span></a> *value</code></em>);
|
203
|
+
<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-GstTagList.html#gst-tag-list-get-uchar-index" title="gst_tag_list_get_uchar_index ()">gst_tag_list_get_uchar_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
204
|
+
<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> *tag</code></em>,
|
205
|
+
<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> index</code></em>,
|
206
|
+
<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#guchar"><span class="type">guchar</span></a> *value</code></em>);
|
207
|
+
<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-GstTagList.html#gst-tag-list-get-boolean" title="gst_tag_list_get_boolean ()">gst_tag_list_get_boolean</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
208
|
+
<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> *tag</code></em>,
|
209
|
+
<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> *value</code></em>);
|
210
|
+
<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-GstTagList.html#gst-tag-list-get-boolean-index" title="gst_tag_list_get_boolean_index ()">gst_tag_list_get_boolean_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
211
|
+
<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> *tag</code></em>,
|
212
|
+
<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> index</code></em>,
|
213
|
+
<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> *value</code></em>);
|
214
|
+
<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-GstTagList.html#gst-tag-list-get-int" title="gst_tag_list_get_int ()">gst_tag_list_get_int</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
215
|
+
<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> *tag</code></em>,
|
216
|
+
<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> *value</code></em>);
|
217
|
+
<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-GstTagList.html#gst-tag-list-get-int-index" title="gst_tag_list_get_int_index ()">gst_tag_list_get_int_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
218
|
+
<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> *tag</code></em>,
|
219
|
+
<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> index</code></em>,
|
220
|
+
<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> *value</code></em>);
|
221
|
+
<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-GstTagList.html#gst-tag-list-get-uint" title="gst_tag_list_get_uint ()">gst_tag_list_get_uint</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
222
|
+
<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> *tag</code></em>,
|
223
|
+
<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> *value</code></em>);
|
224
|
+
<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-GstTagList.html#gst-tag-list-get-uint-index" title="gst_tag_list_get_uint_index ()">gst_tag_list_get_uint_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
225
|
+
<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> *tag</code></em>,
|
226
|
+
<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> index</code></em>,
|
227
|
+
<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> *value</code></em>);
|
228
|
+
<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-GstTagList.html#gst-tag-list-get-long" title="gst_tag_list_get_long ()">gst_tag_list_get_long</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
229
|
+
<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> *tag</code></em>,
|
230
|
+
<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#glong"><span class="type">glong</span></a> *value</code></em>);
|
231
|
+
<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-GstTagList.html#gst-tag-list-get-long-index" title="gst_tag_list_get_long_index ()">gst_tag_list_get_long_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
232
|
+
<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> *tag</code></em>,
|
233
|
+
<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> index</code></em>,
|
234
|
+
<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#glong"><span class="type">glong</span></a> *value</code></em>);
|
235
|
+
<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-GstTagList.html#gst-tag-list-get-ulong" title="gst_tag_list_get_ulong ()">gst_tag_list_get_ulong</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
236
|
+
<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> *tag</code></em>,
|
237
|
+
<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#gulong"><span class="type">gulong</span></a> *value</code></em>);
|
238
|
+
<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-GstTagList.html#gst-tag-list-get-ulong-index" title="gst_tag_list_get_ulong_index ()">gst_tag_list_get_ulong_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
239
|
+
<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> *tag</code></em>,
|
240
|
+
<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> index</code></em>,
|
241
|
+
<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#gulong"><span class="type">gulong</span></a> *value</code></em>);
|
242
|
+
<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-GstTagList.html#gst-tag-list-get-int64" title="gst_tag_list_get_int64 ()">gst_tag_list_get_int64</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
243
|
+
<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> *tag</code></em>,
|
244
|
+
<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#gint64"><span class="type">gint64</span></a> *value</code></em>);
|
245
|
+
<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-GstTagList.html#gst-tag-list-get-int64-index" title="gst_tag_list_get_int64_index ()">gst_tag_list_get_int64_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
246
|
+
<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> *tag</code></em>,
|
247
|
+
<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> index</code></em>,
|
248
|
+
<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#gint64"><span class="type">gint64</span></a> *value</code></em>);
|
249
|
+
<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-GstTagList.html#gst-tag-list-get-uint64" title="gst_tag_list_get_uint64 ()">gst_tag_list_get_uint64</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
250
|
+
<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> *tag</code></em>,
|
251
|
+
<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#guint64"><span class="type">guint64</span></a> *value</code></em>);
|
252
|
+
<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-GstTagList.html#gst-tag-list-get-uint64-index" title="gst_tag_list_get_uint64_index ()">gst_tag_list_get_uint64_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
253
|
+
<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> *tag</code></em>,
|
254
|
+
<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> index</code></em>,
|
255
|
+
<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#guint64"><span class="type">guint64</span></a> *value</code></em>);
|
256
|
+
<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-GstTagList.html#gst-tag-list-get-float" title="gst_tag_list_get_float ()">gst_tag_list_get_float</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
257
|
+
<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> *tag</code></em>,
|
258
|
+
<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#gfloat"><span class="type">gfloat</span></a> *value</code></em>);
|
259
|
+
<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-GstTagList.html#gst-tag-list-get-float-index" title="gst_tag_list_get_float_index ()">gst_tag_list_get_float_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
260
|
+
<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> *tag</code></em>,
|
261
|
+
<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> index</code></em>,
|
262
|
+
<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#gfloat"><span class="type">gfloat</span></a> *value</code></em>);
|
263
|
+
<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-GstTagList.html#gst-tag-list-get-double" title="gst_tag_list_get_double ()">gst_tag_list_get_double</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
264
|
+
<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> *tag</code></em>,
|
265
|
+
<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#gdouble"><span class="type">gdouble</span></a> *value</code></em>);
|
266
|
+
<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-GstTagList.html#gst-tag-list-get-double-index" title="gst_tag_list_get_double_index ()">gst_tag_list_get_double_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
267
|
+
<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> *tag</code></em>,
|
268
|
+
<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> index</code></em>,
|
269
|
+
<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#gdouble"><span class="type">gdouble</span></a> *value</code></em>);
|
270
|
+
<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-GstTagList.html#gst-tag-list-get-string" title="gst_tag_list_get_string ()">gst_tag_list_get_string</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
271
|
+
<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> *tag</code></em>,
|
272
|
+
<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#gchar"><span class="type">gchar</span></a> **value</code></em>);
|
273
|
+
<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-GstTagList.html#gst-tag-list-get-string-index" title="gst_tag_list_get_string_index ()">gst_tag_list_get_string_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
274
|
+
<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> *tag</code></em>,
|
275
|
+
<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> index</code></em>,
|
276
|
+
<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#gchar"><span class="type">gchar</span></a> **value</code></em>);
|
277
|
+
<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-GstTagList.html#gst-tag-list-peek-string-index" title="gst_tag_list_peek_string_index ()">gst_tag_list_peek_string_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
278
|
+
<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> *tag</code></em>,
|
279
|
+
<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> index</code></em>,
|
280
|
+
<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> **value</code></em>);
|
281
|
+
<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-GstTagList.html#gst-tag-list-get-pointer" title="gst_tag_list_get_pointer ()">gst_tag_list_get_pointer</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
282
|
+
<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> *tag</code></em>,
|
283
|
+
<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> *value</code></em>);
|
284
|
+
<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-GstTagList.html#gst-tag-list-get-pointer-index" title="gst_tag_list_get_pointer_index ()">gst_tag_list_get_pointer_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
285
|
+
<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> *tag</code></em>,
|
286
|
+
<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> index</code></em>,
|
287
|
+
<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> *value</code></em>);
|
288
|
+
<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-GstTagList.html#gst-tag-list-get-date" title="gst_tag_list_get_date ()">gst_tag_list_get_date</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
289
|
+
<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> *tag</code></em>,
|
290
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GDate"><span class="type">GDate</span></a> **value</code></em>);
|
291
|
+
<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-GstTagList.html#gst-tag-list-get-date-index" title="gst_tag_list_get_date_index ()">gst_tag_list_get_date_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
292
|
+
<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> *tag</code></em>,
|
293
|
+
<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> index</code></em>,
|
294
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GDate"><span class="type">GDate</span></a> **value</code></em>);
|
295
|
+
<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-GstTagList.html#gst-tag-list-get-date-time" title="gst_tag_list_get_date_time ()">gst_tag_list_get_date_time</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
296
|
+
<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> *tag</code></em>,
|
297
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstDateTime.html#GstDateTime" title="GstDateTime"><span class="type">GstDateTime</span></a> **value</code></em>);
|
298
|
+
<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-GstTagList.html#gst-tag-list-get-date-time-index" title="gst_tag_list_get_date_time_index ()">gst_tag_list_get_date_time_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
299
|
+
<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> *tag</code></em>,
|
300
|
+
<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> index</code></em>,
|
301
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstDateTime.html#GstDateTime" title="GstDateTime"><span class="type">GstDateTime</span></a> **value</code></em>);
|
302
|
+
<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-GstTagList.html#gst-tag-list-get-buffer" title="gst_tag_list_get_buffer ()">gst_tag_list_get_buffer</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
303
|
+
<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> *tag</code></em>,
|
304
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstBuffer.html#GstBuffer" title="struct GstBuffer"><span class="type">GstBuffer</span></a> **value</code></em>);
|
305
|
+
<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-GstTagList.html#gst-tag-list-get-buffer-index" title="gst_tag_list_get_buffer_index ()">gst_tag_list_get_buffer_index</a> (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
306
|
+
<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> *tag</code></em>,
|
307
|
+
<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> index</code></em>,
|
308
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstBuffer.html#GstBuffer" title="struct GstBuffer"><span class="type">GstBuffer</span></a> **value</code></em>);
|
309
|
+
</pre>
|
310
|
+
</div>
|
311
|
+
<div class="refsect1">
|
312
|
+
<a name="gstreamer-GstTagList.description"></a><h2>Description</h2>
|
313
|
+
<p>
|
314
|
+
List of tags and values used to describe media metadata.
|
315
|
+
</p>
|
316
|
+
<p>
|
317
|
+
Strings must be in ASCII or UTF-8 encoding. No other encodings are allowed.
|
318
|
+
</p>
|
319
|
+
<p>
|
320
|
+
Last reviewed on 2009-06-09 (0.10.23)
|
321
|
+
</p>
|
322
|
+
</div>
|
323
|
+
<div class="refsect1">
|
324
|
+
<a name="gstreamer-GstTagList.details"></a><h2>Details</h2>
|
325
|
+
<div class="refsect2">
|
326
|
+
<a name="GstTagList"></a><h3>GstTagList</h3>
|
327
|
+
<pre class="programlisting">typedef GstStructure GstTagList;
|
328
|
+
</pre>
|
329
|
+
<p>
|
330
|
+
Opaque <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> data structure.
|
331
|
+
</p>
|
332
|
+
</div>
|
333
|
+
<hr>
|
334
|
+
<div class="refsect2">
|
335
|
+
<a name="GstTagMergeMode"></a><h3>enum GstTagMergeMode</h3>
|
336
|
+
<pre class="programlisting">typedef enum {
|
337
|
+
GST_TAG_MERGE_UNDEFINED,
|
338
|
+
GST_TAG_MERGE_REPLACE_ALL,
|
339
|
+
GST_TAG_MERGE_REPLACE,
|
340
|
+
GST_TAG_MERGE_APPEND,
|
341
|
+
GST_TAG_MERGE_PREPEND,
|
342
|
+
GST_TAG_MERGE_KEEP,
|
343
|
+
GST_TAG_MERGE_KEEP_ALL,
|
344
|
+
/* add more */
|
345
|
+
GST_TAG_MERGE_COUNT
|
346
|
+
} GstTagMergeMode;
|
347
|
+
</pre>
|
348
|
+
<p>
|
349
|
+
The different tag merging modes are basically replace, overwrite and append,
|
350
|
+
but they can be seen from two directions. Given two taglists: (A) the tags
|
351
|
+
already in the element and (B) the ones that are supplied to the element (
|
352
|
+
e.g. via <a class="link" href="GstTagSetter.html#gst-tag-setter-merge-tags" title="gst_tag_setter_merge_tags ()"><code class="function">gst_tag_setter_merge_tags()</code></a> / <a class="link" href="GstTagSetter.html#gst-tag-setter-add-tags" title="gst_tag_setter_add_tags ()"><code class="function">gst_tag_setter_add_tags()</code></a> or a
|
353
|
+
<a class="link" href="gstreamer-GstEvent.html#GST-EVENT-TAG:CAPS"><code class="literal">GST_EVENT_TAG</code></a>), how are these tags merged?
|
354
|
+
In the table below this is shown for the cases that a tag exists in the list
|
355
|
+
(A) or does not exists (!A) and combinations thereof.
|
356
|
+
</p>
|
357
|
+
<p>
|
358
|
+
</p>
|
359
|
+
<div class="table">
|
360
|
+
<a name="idp40349568"></a><p class="title"><b>Table 1. merge mode</b></p>
|
361
|
+
<div class="table-contents"><table summary="merge mode" border="1">
|
362
|
+
<colgroup>
|
363
|
+
<col>
|
364
|
+
<col>
|
365
|
+
<col>
|
366
|
+
<col>
|
367
|
+
<col>
|
368
|
+
</colgroup>
|
369
|
+
<thead><tr>
|
370
|
+
<th align="left">merge mode</th>
|
371
|
+
<th align="left">A + B</th>
|
372
|
+
<th align="left">A + !B</th>
|
373
|
+
<th align="left">!A + B</th>
|
374
|
+
<th align="left">!A + !B</th>
|
375
|
+
</tr></thead>
|
376
|
+
<tbody>
|
377
|
+
<tr>
|
378
|
+
<td align="left">REPLACE_ALL</td>
|
379
|
+
<td align="left">B</td>
|
380
|
+
<td align="left">-</td>
|
381
|
+
<td align="left">B</td>
|
382
|
+
<td align="left">-</td>
|
383
|
+
</tr>
|
384
|
+
<tr>
|
385
|
+
<td align="left">REPLACE</td>
|
386
|
+
<td align="left">B</td>
|
387
|
+
<td align="left">A</td>
|
388
|
+
<td align="left">B</td>
|
389
|
+
<td align="left">-</td>
|
390
|
+
</tr>
|
391
|
+
<tr>
|
392
|
+
<td align="left">APPEND</td>
|
393
|
+
<td align="left">A, B</td>
|
394
|
+
<td align="left">A</td>
|
395
|
+
<td align="left">B</td>
|
396
|
+
<td align="left">-</td>
|
397
|
+
</tr>
|
398
|
+
<tr>
|
399
|
+
<td align="left">PREPEND</td>
|
400
|
+
<td align="left">B, A</td>
|
401
|
+
<td align="left">A</td>
|
402
|
+
<td align="left">B</td>
|
403
|
+
<td align="left">-</td>
|
404
|
+
</tr>
|
405
|
+
<tr>
|
406
|
+
<td align="left">KEEP</td>
|
407
|
+
<td align="left">A</td>
|
408
|
+
<td align="left">A</td>
|
409
|
+
<td align="left">B</td>
|
410
|
+
<td align="left">-</td>
|
411
|
+
</tr>
|
412
|
+
<tr>
|
413
|
+
<td align="left">KEEP_ALL</td>
|
414
|
+
<td align="left">A</td>
|
415
|
+
<td align="left">A</td>
|
416
|
+
<td align="left">-</td>
|
417
|
+
<td align="left">-</td>
|
418
|
+
</tr>
|
419
|
+
</tbody>
|
420
|
+
</table></div>
|
421
|
+
</div>
|
422
|
+
<p><br class="table-break">
|
423
|
+
</p>
|
424
|
+
<div class="variablelist"><table border="0">
|
425
|
+
<col align="left" valign="top">
|
426
|
+
<tbody>
|
427
|
+
<tr>
|
428
|
+
<td><p><a name="GST-TAG-MERGE-UNDEFINED:CAPS"></a><span class="term"><code class="literal">GST_TAG_MERGE_UNDEFINED</code></span></p></td>
|
429
|
+
<td>undefined merge mode
|
430
|
+
</td>
|
431
|
+
</tr>
|
432
|
+
<tr>
|
433
|
+
<td><p><a name="GST-TAG-MERGE-REPLACE-ALL:CAPS"></a><span class="term"><code class="literal">GST_TAG_MERGE_REPLACE_ALL</code></span></p></td>
|
434
|
+
<td>replace all tags (clear list and append)
|
435
|
+
</td>
|
436
|
+
</tr>
|
437
|
+
<tr>
|
438
|
+
<td><p><a name="GST-TAG-MERGE-REPLACE:CAPS"></a><span class="term"><code class="literal">GST_TAG_MERGE_REPLACE</code></span></p></td>
|
439
|
+
<td>replace tags
|
440
|
+
</td>
|
441
|
+
</tr>
|
442
|
+
<tr>
|
443
|
+
<td><p><a name="GST-TAG-MERGE-APPEND:CAPS"></a><span class="term"><code class="literal">GST_TAG_MERGE_APPEND</code></span></p></td>
|
444
|
+
<td>append tags
|
445
|
+
</td>
|
446
|
+
</tr>
|
447
|
+
<tr>
|
448
|
+
<td><p><a name="GST-TAG-MERGE-PREPEND:CAPS"></a><span class="term"><code class="literal">GST_TAG_MERGE_PREPEND</code></span></p></td>
|
449
|
+
<td>prepend tags
|
450
|
+
</td>
|
451
|
+
</tr>
|
452
|
+
<tr>
|
453
|
+
<td><p><a name="GST-TAG-MERGE-KEEP:CAPS"></a><span class="term"><code class="literal">GST_TAG_MERGE_KEEP</code></span></p></td>
|
454
|
+
<td>keep existing tags
|
455
|
+
</td>
|
456
|
+
</tr>
|
457
|
+
<tr>
|
458
|
+
<td><p><a name="GST-TAG-MERGE-KEEP-ALL:CAPS"></a><span class="term"><code class="literal">GST_TAG_MERGE_KEEP_ALL</code></span></p></td>
|
459
|
+
<td>keep all existing tags
|
460
|
+
</td>
|
461
|
+
</tr>
|
462
|
+
<tr>
|
463
|
+
<td><p><a name="GST-TAG-MERGE-COUNT:CAPS"></a><span class="term"><code class="literal">GST_TAG_MERGE_COUNT</code></span></p></td>
|
464
|
+
<td>the number of merge modes
|
465
|
+
</td>
|
466
|
+
</tr>
|
467
|
+
</tbody>
|
468
|
+
</table></div>
|
469
|
+
</div>
|
470
|
+
<hr>
|
471
|
+
<div class="refsect2">
|
472
|
+
<a name="GstTagFlag"></a><h3>enum GstTagFlag</h3>
|
473
|
+
<pre class="programlisting">typedef enum {
|
474
|
+
GST_TAG_FLAG_UNDEFINED,
|
475
|
+
GST_TAG_FLAG_META,
|
476
|
+
GST_TAG_FLAG_ENCODED,
|
477
|
+
GST_TAG_FLAG_DECODED,
|
478
|
+
GST_TAG_FLAG_COUNT
|
479
|
+
} GstTagFlag;
|
480
|
+
</pre>
|
481
|
+
<p>
|
482
|
+
Extra tag flags used when registering tags.
|
483
|
+
</p>
|
484
|
+
<div class="variablelist"><table border="0">
|
485
|
+
<col align="left" valign="top">
|
486
|
+
<tbody>
|
487
|
+
<tr>
|
488
|
+
<td><p><a name="GST-TAG-FLAG-UNDEFINED:CAPS"></a><span class="term"><code class="literal">GST_TAG_FLAG_UNDEFINED</code></span></p></td>
|
489
|
+
<td>undefined flag
|
490
|
+
</td>
|
491
|
+
</tr>
|
492
|
+
<tr>
|
493
|
+
<td><p><a name="GST-TAG-FLAG-META:CAPS"></a><span class="term"><code class="literal">GST_TAG_FLAG_META</code></span></p></td>
|
494
|
+
<td>tag is meta data
|
495
|
+
</td>
|
496
|
+
</tr>
|
497
|
+
<tr>
|
498
|
+
<td><p><a name="GST-TAG-FLAG-ENCODED:CAPS"></a><span class="term"><code class="literal">GST_TAG_FLAG_ENCODED</code></span></p></td>
|
499
|
+
<td>tag is encoded
|
500
|
+
</td>
|
501
|
+
</tr>
|
502
|
+
<tr>
|
503
|
+
<td><p><a name="GST-TAG-FLAG-DECODED:CAPS"></a><span class="term"><code class="literal">GST_TAG_FLAG_DECODED</code></span></p></td>
|
504
|
+
<td>tag is decoded
|
505
|
+
</td>
|
506
|
+
</tr>
|
507
|
+
<tr>
|
508
|
+
<td><p><a name="GST-TAG-FLAG-COUNT:CAPS"></a><span class="term"><code class="literal">GST_TAG_FLAG_COUNT</code></span></p></td>
|
509
|
+
<td>number of tag flags
|
510
|
+
</td>
|
511
|
+
</tr>
|
512
|
+
</tbody>
|
513
|
+
</table></div>
|
514
|
+
</div>
|
515
|
+
<hr>
|
516
|
+
<div class="refsect2">
|
517
|
+
<a name="GstTagForeachFunc"></a><h3>GstTagForeachFunc ()</h3>
|
518
|
+
<pre class="programlisting"><span class="returnvalue">void</span> (*GstTagForeachFunc) (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
519
|
+
<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> *tag</code></em>,
|
520
|
+
<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> user_data</code></em>);</pre>
|
521
|
+
<p>
|
522
|
+
A function that will be called in <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-foreach" title="gst_tag_list_foreach ()"><code class="function">gst_tag_list_foreach()</code></a>. The function may
|
523
|
+
not modify the tag list.
|
524
|
+
</p>
|
525
|
+
<div class="variablelist"><table border="0">
|
526
|
+
<col align="left" valign="top">
|
527
|
+
<tbody>
|
528
|
+
<tr>
|
529
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
530
|
+
<td>the <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a>
|
531
|
+
</td>
|
532
|
+
</tr>
|
533
|
+
<tr>
|
534
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
535
|
+
<td>a name of a tag in <em class="parameter"><code>list</code></em>
|
536
|
+
</td>
|
537
|
+
</tr>
|
538
|
+
<tr>
|
539
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
540
|
+
<td>user data</td>
|
541
|
+
</tr>
|
542
|
+
</tbody>
|
543
|
+
</table></div>
|
544
|
+
</div>
|
545
|
+
<hr>
|
546
|
+
<div class="refsect2">
|
547
|
+
<a name="GstTagMergeFunc"></a><h3>GstTagMergeFunc ()</h3>
|
548
|
+
<pre class="programlisting"><span class="returnvalue">void</span> (*GstTagMergeFunc) (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *dest</code></em>,
|
549
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *src</code></em>);</pre>
|
550
|
+
<p>
|
551
|
+
A function for merging multiple values of a tag used when registering
|
552
|
+
tags.
|
553
|
+
</p>
|
554
|
+
<div class="variablelist"><table border="0">
|
555
|
+
<col align="left" valign="top">
|
556
|
+
<tbody>
|
557
|
+
<tr>
|
558
|
+
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
559
|
+
<td>the destination <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a>
|
560
|
+
</td>
|
561
|
+
</tr>
|
562
|
+
<tr>
|
563
|
+
<td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
|
564
|
+
<td>the source <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a>
|
565
|
+
</td>
|
566
|
+
</tr>
|
567
|
+
</tbody>
|
568
|
+
</table></div>
|
569
|
+
</div>
|
570
|
+
<hr>
|
571
|
+
<div class="refsect2">
|
572
|
+
<a name="GST-TAG-TITLE:CAPS"></a><h3>GST_TAG_TITLE</h3>
|
573
|
+
<pre class="programlisting">#define GST_TAG_TITLE "title"
|
574
|
+
</pre>
|
575
|
+
<p>
|
576
|
+
commonly used title (string)
|
577
|
+
</p>
|
578
|
+
<p>
|
579
|
+
The title as it should be displayed, e.g. 'The Doll House'
|
580
|
+
</p>
|
581
|
+
</div>
|
582
|
+
<hr>
|
583
|
+
<div class="refsect2">
|
584
|
+
<a name="GST-TAG-TITLE-SORTNAME:CAPS"></a><h3>GST_TAG_TITLE_SORTNAME</h3>
|
585
|
+
<pre class="programlisting">#define GST_TAG_TITLE_SORTNAME "title-sortname"
|
586
|
+
</pre>
|
587
|
+
<p>
|
588
|
+
commonly used title, as used for sorting (string)
|
589
|
+
</p>
|
590
|
+
<p>
|
591
|
+
The title as it should be sorted, e.g. 'Doll House, The'
|
592
|
+
</p>
|
593
|
+
<p class="since">Since 0.10.15</p>
|
594
|
+
</div>
|
595
|
+
<hr>
|
596
|
+
<div class="refsect2">
|
597
|
+
<a name="GST-TAG-ARTIST:CAPS"></a><h3>GST_TAG_ARTIST</h3>
|
598
|
+
<pre class="programlisting">#define GST_TAG_ARTIST "artist"
|
599
|
+
</pre>
|
600
|
+
<p>
|
601
|
+
person(s) responsible for the recording (string)
|
602
|
+
</p>
|
603
|
+
<p>
|
604
|
+
The artist name as it should be displayed, e.g. 'Jimi Hendrix' or
|
605
|
+
'The Guitar Heroes'
|
606
|
+
</p>
|
607
|
+
</div>
|
608
|
+
<hr>
|
609
|
+
<div class="refsect2">
|
610
|
+
<a name="GST-TAG-ARTIST-SORTNAME:CAPS"></a><h3>GST_TAG_ARTIST_SORTNAME</h3>
|
611
|
+
<pre class="programlisting">#define GST_TAG_ARTIST_SORTNAME "musicbrainz-sortname"
|
612
|
+
</pre>
|
613
|
+
<p>
|
614
|
+
person(s) responsible for the recording, as used for sorting (string)
|
615
|
+
</p>
|
616
|
+
<p>
|
617
|
+
The artist name as it should be sorted, e.g. 'Hendrix, Jimi' or
|
618
|
+
'Guitar Heroes, The'
|
619
|
+
</p>
|
620
|
+
<p class="since">Since 0.10.15</p>
|
621
|
+
</div>
|
622
|
+
<hr>
|
623
|
+
<div class="refsect2">
|
624
|
+
<a name="GST-TAG-ALBUM:CAPS"></a><h3>GST_TAG_ALBUM</h3>
|
625
|
+
<pre class="programlisting">#define GST_TAG_ALBUM "album"
|
626
|
+
</pre>
|
627
|
+
<p>
|
628
|
+
album containing this data (string)
|
629
|
+
</p>
|
630
|
+
<p>
|
631
|
+
The album name as it should be displayed, e.g. 'The Jazz Guitar'
|
632
|
+
</p>
|
633
|
+
</div>
|
634
|
+
<hr>
|
635
|
+
<div class="refsect2">
|
636
|
+
<a name="GST-TAG-ALBUM-SORTNAME:CAPS"></a><h3>GST_TAG_ALBUM_SORTNAME</h3>
|
637
|
+
<pre class="programlisting">#define GST_TAG_ALBUM_SORTNAME "album-sortname"
|
638
|
+
</pre>
|
639
|
+
<p>
|
640
|
+
album containing this data, as used for sorting (string)
|
641
|
+
</p>
|
642
|
+
<p>
|
643
|
+
The album name as it should be sorted, e.g. 'Jazz Guitar, The'
|
644
|
+
</p>
|
645
|
+
<p class="since">Since 0.10.15</p>
|
646
|
+
</div>
|
647
|
+
<hr>
|
648
|
+
<div class="refsect2">
|
649
|
+
<a name="GST-TAG-ALBUM-ARTIST:CAPS"></a><h3>GST_TAG_ALBUM_ARTIST</h3>
|
650
|
+
<pre class="programlisting">#define GST_TAG_ALBUM_ARTIST "album-artist"
|
651
|
+
</pre>
|
652
|
+
<p>
|
653
|
+
The artist of the entire album, as it should be displayed.
|
654
|
+
</p>
|
655
|
+
<p class="since">Since 0.10.25</p>
|
656
|
+
</div>
|
657
|
+
<hr>
|
658
|
+
<div class="refsect2">
|
659
|
+
<a name="GST-TAG-ALBUM-ARTIST-SORTNAME:CAPS"></a><h3>GST_TAG_ALBUM_ARTIST_SORTNAME</h3>
|
660
|
+
<pre class="programlisting">#define GST_TAG_ALBUM_ARTIST_SORTNAME "album-artist-sortname"
|
661
|
+
</pre>
|
662
|
+
<p>
|
663
|
+
The artist of the entire album, as it should be sorted.
|
664
|
+
</p>
|
665
|
+
<p class="since">Since 0.10.25</p>
|
666
|
+
</div>
|
667
|
+
<hr>
|
668
|
+
<div class="refsect2">
|
669
|
+
<a name="GST-TAG-DATE:CAPS"></a><h3>GST_TAG_DATE</h3>
|
670
|
+
<pre class="programlisting">#define GST_TAG_DATE "date"
|
671
|
+
</pre>
|
672
|
+
<p>
|
673
|
+
date the data was created (<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GDate"><span class="type">GDate</span></a> structure)
|
674
|
+
</p>
|
675
|
+
</div>
|
676
|
+
<hr>
|
677
|
+
<div class="refsect2">
|
678
|
+
<a name="GST-TAG-DATE-TIME:CAPS"></a><h3>GST_TAG_DATE_TIME</h3>
|
679
|
+
<pre class="programlisting">#define GST_TAG_DATE_TIME "datetime"
|
680
|
+
</pre>
|
681
|
+
<p>
|
682
|
+
date and time the data was created (<a class="link" href="gstreamer-GstDateTime.html#GstDateTime" title="GstDateTime"><span class="type">GstDateTime</span></a> structure)
|
683
|
+
</p>
|
684
|
+
<p class="since">Since 0.10.31</p>
|
685
|
+
</div>
|
686
|
+
<hr>
|
687
|
+
<div class="refsect2">
|
688
|
+
<a name="GST-TAG-GENRE:CAPS"></a><h3>GST_TAG_GENRE</h3>
|
689
|
+
<pre class="programlisting">#define GST_TAG_GENRE "genre"
|
690
|
+
</pre>
|
691
|
+
<p>
|
692
|
+
genre this data belongs to (string)
|
693
|
+
</p>
|
694
|
+
</div>
|
695
|
+
<hr>
|
696
|
+
<div class="refsect2">
|
697
|
+
<a name="GST-TAG-COMMENT:CAPS"></a><h3>GST_TAG_COMMENT</h3>
|
698
|
+
<pre class="programlisting">#define GST_TAG_COMMENT "comment"
|
699
|
+
</pre>
|
700
|
+
<p>
|
701
|
+
free text commenting the data (string)
|
702
|
+
</p>
|
703
|
+
</div>
|
704
|
+
<hr>
|
705
|
+
<div class="refsect2">
|
706
|
+
<a name="GST-TAG-EXTENDED-COMMENT:CAPS"></a><h3>GST_TAG_EXTENDED_COMMENT</h3>
|
707
|
+
<pre class="programlisting">#define GST_TAG_EXTENDED_COMMENT "extended-comment"
|
708
|
+
</pre>
|
709
|
+
<p>
|
710
|
+
key/value text commenting the data (string)
|
711
|
+
</p>
|
712
|
+
<p>
|
713
|
+
Must be in the form of 'key=comment' or
|
714
|
+
'key[lc]=comment' where 'lc' is an ISO-639
|
715
|
+
language code.
|
716
|
+
</p>
|
717
|
+
<p>
|
718
|
+
This tag is used for unknown Vorbis comment tags,
|
719
|
+
unknown APE tags and certain ID3v2 comment fields.
|
720
|
+
</p>
|
721
|
+
<p class="since">Since 0.10.10</p>
|
722
|
+
</div>
|
723
|
+
<hr>
|
724
|
+
<div class="refsect2">
|
725
|
+
<a name="GST-TAG-TRACK-NUMBER:CAPS"></a><h3>GST_TAG_TRACK_NUMBER</h3>
|
726
|
+
<pre class="programlisting">#define GST_TAG_TRACK_NUMBER "track-number"
|
727
|
+
</pre>
|
728
|
+
<p>
|
729
|
+
track number inside a collection (unsigned integer)
|
730
|
+
</p>
|
731
|
+
</div>
|
732
|
+
<hr>
|
733
|
+
<div class="refsect2">
|
734
|
+
<a name="GST-TAG-TRACK-COUNT:CAPS"></a><h3>GST_TAG_TRACK_COUNT</h3>
|
735
|
+
<pre class="programlisting">#define GST_TAG_TRACK_COUNT "track-count"
|
736
|
+
</pre>
|
737
|
+
<p>
|
738
|
+
count of tracks inside collection this track belongs to (unsigned integer)
|
739
|
+
</p>
|
740
|
+
</div>
|
741
|
+
<hr>
|
742
|
+
<div class="refsect2">
|
743
|
+
<a name="GST-TAG-ALBUM-VOLUME-NUMBER:CAPS"></a><h3>GST_TAG_ALBUM_VOLUME_NUMBER</h3>
|
744
|
+
<pre class="programlisting">#define GST_TAG_ALBUM_VOLUME_NUMBER "album-disc-number"
|
745
|
+
</pre>
|
746
|
+
<p>
|
747
|
+
disc number inside a collection (unsigned integer)
|
748
|
+
</p>
|
749
|
+
</div>
|
750
|
+
<hr>
|
751
|
+
<div class="refsect2">
|
752
|
+
<a name="GST-TAG-ALBUM-VOLUME-COUNT:CAPS"></a><h3>GST_TAG_ALBUM_VOLUME_COUNT</h3>
|
753
|
+
<pre class="programlisting">#define GST_TAG_ALBUM_VOLUME_COUNT "album-disc-count"
|
754
|
+
</pre>
|
755
|
+
<p>
|
756
|
+
count of discs inside collection this disc belongs to (unsigned integer)
|
757
|
+
</p>
|
758
|
+
</div>
|
759
|
+
<hr>
|
760
|
+
<div class="refsect2">
|
761
|
+
<a name="GST-TAG-LOCATION:CAPS"></a><h3>GST_TAG_LOCATION</h3>
|
762
|
+
<pre class="programlisting">#define GST_TAG_LOCATION "location"
|
763
|
+
</pre>
|
764
|
+
<p>
|
765
|
+
Origin of media as a URI (location, where the original of the file or stream
|
766
|
+
is hosted) (string)
|
767
|
+
</p>
|
768
|
+
</div>
|
769
|
+
<hr>
|
770
|
+
<div class="refsect2">
|
771
|
+
<a name="GST-TAG-HOMEPAGE:CAPS"></a><h3>GST_TAG_HOMEPAGE</h3>
|
772
|
+
<pre class="programlisting">#define GST_TAG_HOMEPAGE "homepage"
|
773
|
+
</pre>
|
774
|
+
<p>
|
775
|
+
Homepage for this media (i.e. artist or movie homepage) (string)
|
776
|
+
</p>
|
777
|
+
<p class="since">Since 0.10.23</p>
|
778
|
+
</div>
|
779
|
+
<hr>
|
780
|
+
<div class="refsect2">
|
781
|
+
<a name="GST-TAG-DESCRIPTION:CAPS"></a><h3>GST_TAG_DESCRIPTION</h3>
|
782
|
+
<pre class="programlisting">#define GST_TAG_DESCRIPTION "description"
|
783
|
+
</pre>
|
784
|
+
<p>
|
785
|
+
short text describing the content of the data (string)
|
786
|
+
</p>
|
787
|
+
</div>
|
788
|
+
<hr>
|
789
|
+
<div class="refsect2">
|
790
|
+
<a name="GST-TAG-VERSION:CAPS"></a><h3>GST_TAG_VERSION</h3>
|
791
|
+
<pre class="programlisting">#define GST_TAG_VERSION "version"
|
792
|
+
</pre>
|
793
|
+
<p>
|
794
|
+
version of this data (string)
|
795
|
+
</p>
|
796
|
+
</div>
|
797
|
+
<hr>
|
798
|
+
<div class="refsect2">
|
799
|
+
<a name="GST-TAG-ISRC:CAPS"></a><h3>GST_TAG_ISRC</h3>
|
800
|
+
<pre class="programlisting">#define GST_TAG_ISRC "isrc"
|
801
|
+
</pre>
|
802
|
+
<p>
|
803
|
+
International Standard Recording Code - see http://www.ifpi.org/isrc/ (string)
|
804
|
+
</p>
|
805
|
+
</div>
|
806
|
+
<hr>
|
807
|
+
<div class="refsect2">
|
808
|
+
<a name="GST-TAG-ORGANIZATION:CAPS"></a><h3>GST_TAG_ORGANIZATION</h3>
|
809
|
+
<pre class="programlisting">#define GST_TAG_ORGANIZATION "organization"
|
810
|
+
</pre>
|
811
|
+
<p>
|
812
|
+
organization (string)
|
813
|
+
</p>
|
814
|
+
</div>
|
815
|
+
<hr>
|
816
|
+
<div class="refsect2">
|
817
|
+
<a name="GST-TAG-COPYRIGHT:CAPS"></a><h3>GST_TAG_COPYRIGHT</h3>
|
818
|
+
<pre class="programlisting">#define GST_TAG_COPYRIGHT "copyright"
|
819
|
+
</pre>
|
820
|
+
<p>
|
821
|
+
copyright notice of the data (string)
|
822
|
+
</p>
|
823
|
+
</div>
|
824
|
+
<hr>
|
825
|
+
<div class="refsect2">
|
826
|
+
<a name="GST-TAG-COPYRIGHT-URI:CAPS"></a><h3>GST_TAG_COPYRIGHT_URI</h3>
|
827
|
+
<pre class="programlisting">#define GST_TAG_COPYRIGHT_URI "copyright-uri"
|
828
|
+
</pre>
|
829
|
+
<p>
|
830
|
+
URI to location where copyright details can be found (string)
|
831
|
+
</p>
|
832
|
+
<p class="since">Since 0.10.14</p>
|
833
|
+
</div>
|
834
|
+
<hr>
|
835
|
+
<div class="refsect2">
|
836
|
+
<a name="GST-TAG-ENCODED-BY:CAPS"></a><h3>GST_TAG_ENCODED_BY</h3>
|
837
|
+
<pre class="programlisting">#define GST_TAG_ENCODED_BY "encoded-by"
|
838
|
+
</pre>
|
839
|
+
<p>
|
840
|
+
name of the person or organisation that encoded the file. May contain a
|
841
|
+
copyright message if the person or organisation also holds the copyright
|
842
|
+
(string)
|
843
|
+
</p>
|
844
|
+
<p>
|
845
|
+
Note: do not use this field to describe the encoding application. Use
|
846
|
+
<a class="link" href="gstreamer-GstTagList.html#GST-TAG-APPLICATION-NAME:CAPS" title="GST_TAG_APPLICATION_NAME"><span class="type">GST_TAG_APPLICATION_NAME</span></a> or <a class="link" href="gstreamer-GstTagList.html#GST-TAG-COMMENT:CAPS" title="GST_TAG_COMMENT"><span class="type">GST_TAG_COMMENT</span></a> for that.
|
847
|
+
</p>
|
848
|
+
<p class="since">Since 0.10.33</p>
|
849
|
+
</div>
|
850
|
+
<hr>
|
851
|
+
<div class="refsect2">
|
852
|
+
<a name="GST-TAG-COMPOSER:CAPS"></a><h3>GST_TAG_COMPOSER</h3>
|
853
|
+
<pre class="programlisting">#define GST_TAG_COMPOSER "composer"
|
854
|
+
</pre>
|
855
|
+
<p>
|
856
|
+
person(s) who composed the recording (string)
|
857
|
+
</p>
|
858
|
+
<p class="since">Since 0.10.15</p>
|
859
|
+
</div>
|
860
|
+
<hr>
|
861
|
+
<div class="refsect2">
|
862
|
+
<a name="GST-TAG-CONTACT:CAPS"></a><h3>GST_TAG_CONTACT</h3>
|
863
|
+
<pre class="programlisting">#define GST_TAG_CONTACT "contact"
|
864
|
+
</pre>
|
865
|
+
<p>
|
866
|
+
contact information (string)
|
867
|
+
</p>
|
868
|
+
</div>
|
869
|
+
<hr>
|
870
|
+
<div class="refsect2">
|
871
|
+
<a name="GST-TAG-LICENSE:CAPS"></a><h3>GST_TAG_LICENSE</h3>
|
872
|
+
<pre class="programlisting">#define GST_TAG_LICENSE "license"
|
873
|
+
</pre>
|
874
|
+
<p>
|
875
|
+
license of data (string)
|
876
|
+
</p>
|
877
|
+
</div>
|
878
|
+
<hr>
|
879
|
+
<div class="refsect2">
|
880
|
+
<a name="GST-TAG-LICENSE-URI:CAPS"></a><h3>GST_TAG_LICENSE_URI</h3>
|
881
|
+
<pre class="programlisting">#define GST_TAG_LICENSE_URI "license-uri"
|
882
|
+
</pre>
|
883
|
+
<p>
|
884
|
+
URI to location where license details can be found (string)
|
885
|
+
</p>
|
886
|
+
<p class="since">Since 0.10.14</p>
|
887
|
+
</div>
|
888
|
+
<hr>
|
889
|
+
<div class="refsect2">
|
890
|
+
<a name="GST-TAG-PERFORMER:CAPS"></a><h3>GST_TAG_PERFORMER</h3>
|
891
|
+
<pre class="programlisting">#define GST_TAG_PERFORMER "performer"
|
892
|
+
</pre>
|
893
|
+
<p>
|
894
|
+
person(s) performing (string)
|
895
|
+
</p>
|
896
|
+
</div>
|
897
|
+
<hr>
|
898
|
+
<div class="refsect2">
|
899
|
+
<a name="GST-TAG-DURATION:CAPS"></a><h3>GST_TAG_DURATION</h3>
|
900
|
+
<pre class="programlisting">#define GST_TAG_DURATION "duration"
|
901
|
+
</pre>
|
902
|
+
<p>
|
903
|
+
length in GStreamer time units (nanoseconds) (unsigned 64-bit integer)
|
904
|
+
</p>
|
905
|
+
</div>
|
906
|
+
<hr>
|
907
|
+
<div class="refsect2">
|
908
|
+
<a name="GST-TAG-CODEC:CAPS"></a><h3>GST_TAG_CODEC</h3>
|
909
|
+
<pre class="programlisting">#define GST_TAG_CODEC "codec"
|
910
|
+
</pre>
|
911
|
+
<p>
|
912
|
+
codec the data is stored in (string)
|
913
|
+
</p>
|
914
|
+
</div>
|
915
|
+
<hr>
|
916
|
+
<div class="refsect2">
|
917
|
+
<a name="GST-TAG-VIDEO-CODEC:CAPS"></a><h3>GST_TAG_VIDEO_CODEC</h3>
|
918
|
+
<pre class="programlisting">#define GST_TAG_VIDEO_CODEC "video-codec"
|
919
|
+
</pre>
|
920
|
+
<p>
|
921
|
+
codec the video data is stored in (string)
|
922
|
+
</p>
|
923
|
+
</div>
|
924
|
+
<hr>
|
925
|
+
<div class="refsect2">
|
926
|
+
<a name="GST-TAG-AUDIO-CODEC:CAPS"></a><h3>GST_TAG_AUDIO_CODEC</h3>
|
927
|
+
<pre class="programlisting">#define GST_TAG_AUDIO_CODEC "audio-codec"
|
928
|
+
</pre>
|
929
|
+
<p>
|
930
|
+
codec the audio data is stored in (string)
|
931
|
+
</p>
|
932
|
+
</div>
|
933
|
+
<hr>
|
934
|
+
<div class="refsect2">
|
935
|
+
<a name="GST-TAG-SUBTITLE-CODEC:CAPS"></a><h3>GST_TAG_SUBTITLE_CODEC</h3>
|
936
|
+
<pre class="programlisting">#define GST_TAG_SUBTITLE_CODEC "subtitle-codec"
|
937
|
+
</pre>
|
938
|
+
<p>
|
939
|
+
codec/format the subtitle data is stored in (string)
|
940
|
+
</p>
|
941
|
+
<p class="since">Since 0.10.23</p>
|
942
|
+
</div>
|
943
|
+
<hr>
|
944
|
+
<div class="refsect2">
|
945
|
+
<a name="GST-TAG-CONTAINER-FORMAT:CAPS"></a><h3>GST_TAG_CONTAINER_FORMAT</h3>
|
946
|
+
<pre class="programlisting">#define GST_TAG_CONTAINER_FORMAT "container-format"
|
947
|
+
</pre>
|
948
|
+
<p>
|
949
|
+
container format the data is stored in (string)
|
950
|
+
</p>
|
951
|
+
<p class="since">Since 0.10.24</p>
|
952
|
+
</div>
|
953
|
+
<hr>
|
954
|
+
<div class="refsect2">
|
955
|
+
<a name="GST-TAG-BITRATE:CAPS"></a><h3>GST_TAG_BITRATE</h3>
|
956
|
+
<pre class="programlisting">#define GST_TAG_BITRATE "bitrate"
|
957
|
+
</pre>
|
958
|
+
<p>
|
959
|
+
exact or average bitrate in bits/s (unsigned integer)
|
960
|
+
</p>
|
961
|
+
</div>
|
962
|
+
<hr>
|
963
|
+
<div class="refsect2">
|
964
|
+
<a name="GST-TAG-NOMINAL-BITRATE:CAPS"></a><h3>GST_TAG_NOMINAL_BITRATE</h3>
|
965
|
+
<pre class="programlisting">#define GST_TAG_NOMINAL_BITRATE "nominal-bitrate"
|
966
|
+
</pre>
|
967
|
+
<p>
|
968
|
+
nominal bitrate in bits/s (unsigned integer). The actual bitrate might be
|
969
|
+
different from this target bitrate.
|
970
|
+
</p>
|
971
|
+
</div>
|
972
|
+
<hr>
|
973
|
+
<div class="refsect2">
|
974
|
+
<a name="GST-TAG-MINIMUM-BITRATE:CAPS"></a><h3>GST_TAG_MINIMUM_BITRATE</h3>
|
975
|
+
<pre class="programlisting">#define GST_TAG_MINIMUM_BITRATE "minimum-bitrate"
|
976
|
+
</pre>
|
977
|
+
<p>
|
978
|
+
minimum bitrate in bits/s (unsigned integer)
|
979
|
+
</p>
|
980
|
+
</div>
|
981
|
+
<hr>
|
982
|
+
<div class="refsect2">
|
983
|
+
<a name="GST-TAG-MAXIMUM-BITRATE:CAPS"></a><h3>GST_TAG_MAXIMUM_BITRATE</h3>
|
984
|
+
<pre class="programlisting">#define GST_TAG_MAXIMUM_BITRATE "maximum-bitrate"
|
985
|
+
</pre>
|
986
|
+
<p>
|
987
|
+
maximum bitrate in bits/s (unsigned integer)
|
988
|
+
</p>
|
989
|
+
</div>
|
990
|
+
<hr>
|
991
|
+
<div class="refsect2">
|
992
|
+
<a name="GST-TAG-SERIAL:CAPS"></a><h3>GST_TAG_SERIAL</h3>
|
993
|
+
<pre class="programlisting">#define GST_TAG_SERIAL "serial"
|
994
|
+
</pre>
|
995
|
+
<p>
|
996
|
+
serial number of track (unsigned integer)
|
997
|
+
</p>
|
998
|
+
</div>
|
999
|
+
<hr>
|
1000
|
+
<div class="refsect2">
|
1001
|
+
<a name="GST-TAG-ENCODER:CAPS"></a><h3>GST_TAG_ENCODER</h3>
|
1002
|
+
<pre class="programlisting">#define GST_TAG_ENCODER "encoder"
|
1003
|
+
</pre>
|
1004
|
+
<p>
|
1005
|
+
encoder used to encode this stream (string)
|
1006
|
+
</p>
|
1007
|
+
</div>
|
1008
|
+
<hr>
|
1009
|
+
<div class="refsect2">
|
1010
|
+
<a name="GST-TAG-ENCODER-VERSION:CAPS"></a><h3>GST_TAG_ENCODER_VERSION</h3>
|
1011
|
+
<pre class="programlisting">#define GST_TAG_ENCODER_VERSION "encoder-version"
|
1012
|
+
</pre>
|
1013
|
+
<p>
|
1014
|
+
version of the encoder used to encode this stream (unsigned integer)
|
1015
|
+
</p>
|
1016
|
+
</div>
|
1017
|
+
<hr>
|
1018
|
+
<div class="refsect2">
|
1019
|
+
<a name="GST-TAG-TRACK-GAIN:CAPS"></a><h3>GST_TAG_TRACK_GAIN</h3>
|
1020
|
+
<pre class="programlisting">#define GST_TAG_TRACK_GAIN "replaygain-track-gain"
|
1021
|
+
</pre>
|
1022
|
+
<p>
|
1023
|
+
track gain in db (double)
|
1024
|
+
</p>
|
1025
|
+
</div>
|
1026
|
+
<hr>
|
1027
|
+
<div class="refsect2">
|
1028
|
+
<a name="GST-TAG-TRACK-PEAK:CAPS"></a><h3>GST_TAG_TRACK_PEAK</h3>
|
1029
|
+
<pre class="programlisting">#define GST_TAG_TRACK_PEAK "replaygain-track-peak"
|
1030
|
+
</pre>
|
1031
|
+
<p>
|
1032
|
+
peak of the track (double)
|
1033
|
+
</p>
|
1034
|
+
</div>
|
1035
|
+
<hr>
|
1036
|
+
<div class="refsect2">
|
1037
|
+
<a name="GST-TAG-ALBUM-GAIN:CAPS"></a><h3>GST_TAG_ALBUM_GAIN</h3>
|
1038
|
+
<pre class="programlisting">#define GST_TAG_ALBUM_GAIN "replaygain-album-gain"
|
1039
|
+
</pre>
|
1040
|
+
<p>
|
1041
|
+
album gain in db (double)
|
1042
|
+
</p>
|
1043
|
+
</div>
|
1044
|
+
<hr>
|
1045
|
+
<div class="refsect2">
|
1046
|
+
<a name="GST-TAG-ALBUM-PEAK:CAPS"></a><h3>GST_TAG_ALBUM_PEAK</h3>
|
1047
|
+
<pre class="programlisting">#define GST_TAG_ALBUM_PEAK "replaygain-album-peak"
|
1048
|
+
</pre>
|
1049
|
+
<p>
|
1050
|
+
peak of the album (double)
|
1051
|
+
</p>
|
1052
|
+
</div>
|
1053
|
+
<hr>
|
1054
|
+
<div class="refsect2">
|
1055
|
+
<a name="GST-TAG-REFERENCE-LEVEL:CAPS"></a><h3>GST_TAG_REFERENCE_LEVEL</h3>
|
1056
|
+
<pre class="programlisting">#define GST_TAG_REFERENCE_LEVEL "replaygain-reference-level"
|
1057
|
+
</pre>
|
1058
|
+
<p>
|
1059
|
+
reference level of track and album gain values (double)
|
1060
|
+
</p>
|
1061
|
+
<p class="since">Since 0.10.12</p>
|
1062
|
+
</div>
|
1063
|
+
<hr>
|
1064
|
+
<div class="refsect2">
|
1065
|
+
<a name="GST-TAG-LANGUAGE-CODE:CAPS"></a><h3>GST_TAG_LANGUAGE_CODE</h3>
|
1066
|
+
<pre class="programlisting">#define GST_TAG_LANGUAGE_CODE "language-code"
|
1067
|
+
</pre>
|
1068
|
+
<p>
|
1069
|
+
Language code (ISO-639-1) (string) of the content
|
1070
|
+
</p>
|
1071
|
+
</div>
|
1072
|
+
<hr>
|
1073
|
+
<div class="refsect2">
|
1074
|
+
<a name="GST-TAG-IMAGE:CAPS"></a><h3>GST_TAG_IMAGE</h3>
|
1075
|
+
<pre class="programlisting">#define GST_TAG_IMAGE "image"
|
1076
|
+
</pre>
|
1077
|
+
<p>
|
1078
|
+
image (buffer) (buffer caps should specify the content type and preferably
|
1079
|
+
also set "image-type" field as <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-gsttag.html#GstTagImageType"><span class="type">GstTagImageType</span></a>)
|
1080
|
+
</p>
|
1081
|
+
<p class="since">Since 0.10.6</p>
|
1082
|
+
</div>
|
1083
|
+
<hr>
|
1084
|
+
<div class="refsect2">
|
1085
|
+
<a name="GST-TAG-PREVIEW-IMAGE:CAPS"></a><h3>GST_TAG_PREVIEW_IMAGE</h3>
|
1086
|
+
<pre class="programlisting">#define GST_TAG_PREVIEW_IMAGE "preview-image"
|
1087
|
+
</pre>
|
1088
|
+
<p>
|
1089
|
+
image that is meant for preview purposes, e.g. small icon-sized version
|
1090
|
+
(buffer) (buffer caps should specify the content type)
|
1091
|
+
</p>
|
1092
|
+
<p class="since">Since 0.10.7</p>
|
1093
|
+
</div>
|
1094
|
+
<hr>
|
1095
|
+
<div class="refsect2">
|
1096
|
+
<a name="GST-TAG-ATTACHMENT:CAPS"></a><h3>GST_TAG_ATTACHMENT</h3>
|
1097
|
+
<pre class="programlisting">#define GST_TAG_ATTACHMENT "attachment"
|
1098
|
+
</pre>
|
1099
|
+
<p>
|
1100
|
+
generic file attachment (buffer) (buffer caps should specify the content
|
1101
|
+
type and if possible set "filename" to the file name of the
|
1102
|
+
attachment)
|
1103
|
+
</p>
|
1104
|
+
<p class="since">Since 0.10.21</p>
|
1105
|
+
</div>
|
1106
|
+
<hr>
|
1107
|
+
<div class="refsect2">
|
1108
|
+
<a name="GST-TAG-BEATS-PER-MINUTE:CAPS"></a><h3>GST_TAG_BEATS_PER_MINUTE</h3>
|
1109
|
+
<pre class="programlisting">#define GST_TAG_BEATS_PER_MINUTE "beats-per-minute"
|
1110
|
+
</pre>
|
1111
|
+
<p>
|
1112
|
+
number of beats per minute in audio (double)
|
1113
|
+
</p>
|
1114
|
+
<p class="since">Since 0.10.12</p>
|
1115
|
+
</div>
|
1116
|
+
<hr>
|
1117
|
+
<div class="refsect2">
|
1118
|
+
<a name="GST-TAG-KEYWORDS:CAPS"></a><h3>GST_TAG_KEYWORDS</h3>
|
1119
|
+
<pre class="programlisting">#define GST_TAG_KEYWORDS "keywords"
|
1120
|
+
</pre>
|
1121
|
+
<p>
|
1122
|
+
comma separated keywords describing the content (string).
|
1123
|
+
</p>
|
1124
|
+
<p class="since">Since 0.10.21</p>
|
1125
|
+
</div>
|
1126
|
+
<hr>
|
1127
|
+
<div class="refsect2">
|
1128
|
+
<a name="GST-TAG-GEO-LOCATION-NAME:CAPS"></a><h3>GST_TAG_GEO_LOCATION_NAME</h3>
|
1129
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_NAME "geo-location-name"
|
1130
|
+
</pre>
|
1131
|
+
<p>
|
1132
|
+
human readable descriptive location of where the media has been recorded or
|
1133
|
+
produced. (string).
|
1134
|
+
</p>
|
1135
|
+
<p class="since">Since 0.10.21</p>
|
1136
|
+
</div>
|
1137
|
+
<hr>
|
1138
|
+
<div class="refsect2">
|
1139
|
+
<a name="GST-TAG-GEO-LOCATION-LATITUDE:CAPS"></a><h3>GST_TAG_GEO_LOCATION_LATITUDE</h3>
|
1140
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_LATITUDE "geo-location-latitude"
|
1141
|
+
</pre>
|
1142
|
+
<p>
|
1143
|
+
geo latitude location of where the media has been recorded or produced in
|
1144
|
+
degrees according to WGS84 (zero at the equator, negative values for southern
|
1145
|
+
latitudes) (double).
|
1146
|
+
</p>
|
1147
|
+
<p class="since">Since 0.10.21</p>
|
1148
|
+
</div>
|
1149
|
+
<hr>
|
1150
|
+
<div class="refsect2">
|
1151
|
+
<a name="GST-TAG-GEO-LOCATION-LONGITUDE:CAPS"></a><h3>GST_TAG_GEO_LOCATION_LONGITUDE</h3>
|
1152
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_LONGITUDE "geo-location-longitude"
|
1153
|
+
</pre>
|
1154
|
+
<p>
|
1155
|
+
geo longitude location of where the media has been recorded or produced in
|
1156
|
+
degrees according to WGS84 (zero at the prime meridian in Greenwich/UK,
|
1157
|
+
negative values for western longitudes). (double).
|
1158
|
+
</p>
|
1159
|
+
<p class="since">Since 0.10.21</p>
|
1160
|
+
</div>
|
1161
|
+
<hr>
|
1162
|
+
<div class="refsect2">
|
1163
|
+
<a name="GST-TAG-GEO-LOCATION-ELEVATION:CAPS"></a><h3>GST_TAG_GEO_LOCATION_ELEVATION</h3>
|
1164
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_ELEVATION "geo-location-elevation"
|
1165
|
+
</pre>
|
1166
|
+
<p>
|
1167
|
+
geo elevation of where the media has been recorded or produced in meters
|
1168
|
+
according to WGS84 (zero is average sea level) (double).
|
1169
|
+
</p>
|
1170
|
+
<p class="since">Since 0.10.21</p>
|
1171
|
+
</div>
|
1172
|
+
<hr>
|
1173
|
+
<div class="refsect2">
|
1174
|
+
<a name="GST-TAG-GEO-LOCATION-CITY:CAPS"></a><h3>GST_TAG_GEO_LOCATION_CITY</h3>
|
1175
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_CITY "geo-location-city"
|
1176
|
+
</pre>
|
1177
|
+
<p>
|
1178
|
+
The city (english name) where the media has been produced (string).
|
1179
|
+
</p>
|
1180
|
+
<p class="since">Since 0.10.29</p>
|
1181
|
+
</div>
|
1182
|
+
<hr>
|
1183
|
+
<div class="refsect2">
|
1184
|
+
<a name="GST-TAG-GEO-LOCATION-COUNTRY:CAPS"></a><h3>GST_TAG_GEO_LOCATION_COUNTRY</h3>
|
1185
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_COUNTRY "geo-location-country"
|
1186
|
+
</pre>
|
1187
|
+
<p>
|
1188
|
+
The country (english name) where the media has been produced (string).
|
1189
|
+
</p>
|
1190
|
+
<p class="since">Since 0.10.29</p>
|
1191
|
+
</div>
|
1192
|
+
<hr>
|
1193
|
+
<div class="refsect2">
|
1194
|
+
<a name="GST-TAG-GEO-LOCATION-SUBLOCATION:CAPS"></a><h3>GST_TAG_GEO_LOCATION_SUBLOCATION</h3>
|
1195
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_SUBLOCATION "geo-location-sublocation"
|
1196
|
+
</pre>
|
1197
|
+
<p>
|
1198
|
+
A location 'smaller' than GST_TAG_GEO_LOCATION_CITY that specifies better
|
1199
|
+
where the media has been produced. (e.g. the neighborhood) (string).
|
1200
|
+
</p>
|
1201
|
+
<p>
|
1202
|
+
This tag has been added as this is how it is handled/named in XMP's
|
1203
|
+
Iptc4xmpcore schema.
|
1204
|
+
</p>
|
1205
|
+
<p class="since">Since 0.10.29</p>
|
1206
|
+
</div>
|
1207
|
+
<hr>
|
1208
|
+
<div class="refsect2">
|
1209
|
+
<a name="GST-TAG-GEO-LOCATION-HORIZONTAL-ERROR:CAPS"></a><h3>GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR</h3>
|
1210
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR "geo-location-horizontal-error"
|
1211
|
+
</pre>
|
1212
|
+
<p>
|
1213
|
+
Represents the expected error on the horizontal positioning in
|
1214
|
+
meters (double).
|
1215
|
+
</p>
|
1216
|
+
<p class="since">Since 0.10.31</p>
|
1217
|
+
</div>
|
1218
|
+
<hr>
|
1219
|
+
<div class="refsect2">
|
1220
|
+
<a name="GST-TAG-GEO-LOCATION-MOVEMENT-DIRECTION:CAPS"></a><h3>GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION</h3>
|
1221
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION "geo-location-movement-direction"
|
1222
|
+
</pre>
|
1223
|
+
<p>
|
1224
|
+
Indicates the movement direction of the device performing the capture
|
1225
|
+
of a media. It is represented as degrees in floating point representation,
|
1226
|
+
0 means the geographic north, and increases clockwise (double from 0 to 360)
|
1227
|
+
</p>
|
1228
|
+
<p>
|
1229
|
+
See also <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-CAPTURE-DIRECTION:CAPS" title="GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION"><span class="type">GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION</span></a>
|
1230
|
+
</p>
|
1231
|
+
<p class="since">Since 0.10.30</p>
|
1232
|
+
</div>
|
1233
|
+
<hr>
|
1234
|
+
<div class="refsect2">
|
1235
|
+
<a name="GST-TAG-GEO-LOCATION-MOVEMENT-SPEED:CAPS"></a><h3>GST_TAG_GEO_LOCATION_MOVEMENT_SPEED</h3>
|
1236
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_MOVEMENT_SPEED "geo-location-movement-speed"
|
1237
|
+
</pre>
|
1238
|
+
<p>
|
1239
|
+
Speed of the capturing device when performing the capture.
|
1240
|
+
Represented in m/s. (double)
|
1241
|
+
</p>
|
1242
|
+
<p>
|
1243
|
+
See also <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-MOVEMENT-DIRECTION:CAPS" title="GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION"><span class="type">GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION</span></a>
|
1244
|
+
</p>
|
1245
|
+
<p>
|
1246
|
+
Since 0.10.30
|
1247
|
+
</p>
|
1248
|
+
</div>
|
1249
|
+
<hr>
|
1250
|
+
<div class="refsect2">
|
1251
|
+
<a name="GST-TAG-GEO-LOCATION-CAPTURE-DIRECTION:CAPS"></a><h3>GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION</h3>
|
1252
|
+
<pre class="programlisting">#define GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION "geo-location-capture-direction"
|
1253
|
+
</pre>
|
1254
|
+
<p>
|
1255
|
+
Indicates the direction the device is pointing to when capturing
|
1256
|
+
a media. It is represented as degrees in floating point representation,
|
1257
|
+
0 means the geographic north, and increases clockwise (double from 0 to 360)
|
1258
|
+
</p>
|
1259
|
+
<p>
|
1260
|
+
See also <a class="link" href="gstreamer-GstTagList.html#GST-TAG-GEO-LOCATION-MOVEMENT-DIRECTION:CAPS" title="GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION"><span class="type">GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION</span></a>
|
1261
|
+
</p>
|
1262
|
+
<p class="since">Since 0.10.30</p>
|
1263
|
+
</div>
|
1264
|
+
<hr>
|
1265
|
+
<div class="refsect2">
|
1266
|
+
<a name="GST-TAG-SHOW-NAME:CAPS"></a><h3>GST_TAG_SHOW_NAME</h3>
|
1267
|
+
<pre class="programlisting">#define GST_TAG_SHOW_NAME "show-name"
|
1268
|
+
</pre>
|
1269
|
+
<p>
|
1270
|
+
Name of the show, used for displaying (string)
|
1271
|
+
</p>
|
1272
|
+
<p class="since">Since 0.10.26</p>
|
1273
|
+
</div>
|
1274
|
+
<hr>
|
1275
|
+
<div class="refsect2">
|
1276
|
+
<a name="GST-TAG-SHOW-SORTNAME:CAPS"></a><h3>GST_TAG_SHOW_SORTNAME</h3>
|
1277
|
+
<pre class="programlisting">#define GST_TAG_SHOW_SORTNAME "show-sortname"
|
1278
|
+
</pre>
|
1279
|
+
<p>
|
1280
|
+
Name of the show, used for sorting (string)
|
1281
|
+
</p>
|
1282
|
+
<p class="since">Since 0.10.26</p>
|
1283
|
+
</div>
|
1284
|
+
<hr>
|
1285
|
+
<div class="refsect2">
|
1286
|
+
<a name="GST-TAG-SHOW-EPISODE-NUMBER:CAPS"></a><h3>GST_TAG_SHOW_EPISODE_NUMBER</h3>
|
1287
|
+
<pre class="programlisting">#define GST_TAG_SHOW_EPISODE_NUMBER "show-episode-number"
|
1288
|
+
</pre>
|
1289
|
+
<p>
|
1290
|
+
Number of the episode within a season/show (unsigned integer)
|
1291
|
+
</p>
|
1292
|
+
<p class="since">Since 0.10.26</p>
|
1293
|
+
</div>
|
1294
|
+
<hr>
|
1295
|
+
<div class="refsect2">
|
1296
|
+
<a name="GST-TAG-SHOW-SEASON-NUMBER:CAPS"></a><h3>GST_TAG_SHOW_SEASON_NUMBER</h3>
|
1297
|
+
<pre class="programlisting">#define GST_TAG_SHOW_SEASON_NUMBER "show-season-number"
|
1298
|
+
</pre>
|
1299
|
+
<p>
|
1300
|
+
Number of the season of a show/series (unsigned integer)
|
1301
|
+
</p>
|
1302
|
+
<p class="since">Since 0.10.26</p>
|
1303
|
+
</div>
|
1304
|
+
<hr>
|
1305
|
+
<div class="refsect2">
|
1306
|
+
<a name="GST-TAG-LYRICS:CAPS"></a><h3>GST_TAG_LYRICS</h3>
|
1307
|
+
<pre class="programlisting">#define GST_TAG_LYRICS "lyrics"
|
1308
|
+
</pre>
|
1309
|
+
<p>
|
1310
|
+
The lyrics of the media (string)
|
1311
|
+
</p>
|
1312
|
+
<p class="since">Since 0.10.26</p>
|
1313
|
+
</div>
|
1314
|
+
<hr>
|
1315
|
+
<div class="refsect2">
|
1316
|
+
<a name="GST-TAG-COMPOSER-SORTNAME:CAPS"></a><h3>GST_TAG_COMPOSER_SORTNAME</h3>
|
1317
|
+
<pre class="programlisting">#define GST_TAG_COMPOSER_SORTNAME "composer-sortname"
|
1318
|
+
</pre>
|
1319
|
+
<p>
|
1320
|
+
The composer's name, used for sorting (string)
|
1321
|
+
</p>
|
1322
|
+
<p class="since">Since 0.10.26</p>
|
1323
|
+
</div>
|
1324
|
+
<hr>
|
1325
|
+
<div class="refsect2">
|
1326
|
+
<a name="GST-TAG-GROUPING:CAPS"></a><h3>GST_TAG_GROUPING</h3>
|
1327
|
+
<pre class="programlisting">#define GST_TAG_GROUPING "grouping"
|
1328
|
+
</pre>
|
1329
|
+
<p>
|
1330
|
+
Groups together media that are related and spans multiple tracks. An
|
1331
|
+
example are multiple pieces of a concerto. (string)
|
1332
|
+
</p>
|
1333
|
+
<p class="since">Since 0.10.26</p>
|
1334
|
+
</div>
|
1335
|
+
<hr>
|
1336
|
+
<div class="refsect2">
|
1337
|
+
<a name="GST-TAG-USER-RATING:CAPS"></a><h3>GST_TAG_USER_RATING</h3>
|
1338
|
+
<pre class="programlisting">#define GST_TAG_USER_RATING "user-rating"
|
1339
|
+
</pre>
|
1340
|
+
<p>
|
1341
|
+
Rating attributed by a person (likely the application user).
|
1342
|
+
The higher the value, the more the user likes this media
|
1343
|
+
(unsigned int from 0 to 100)
|
1344
|
+
</p>
|
1345
|
+
<p class="since">Since 0.10.29</p>
|
1346
|
+
</div>
|
1347
|
+
<hr>
|
1348
|
+
<div class="refsect2">
|
1349
|
+
<a name="GST-TAG-DEVICE-MANUFACTURER:CAPS"></a><h3>GST_TAG_DEVICE_MANUFACTURER</h3>
|
1350
|
+
<pre class="programlisting">#define GST_TAG_DEVICE_MANUFACTURER "device-manufacturer"
|
1351
|
+
</pre>
|
1352
|
+
<p>
|
1353
|
+
Manufacturer of the device used to create the media (string)
|
1354
|
+
</p>
|
1355
|
+
<p class="since">Since 0.10.30</p>
|
1356
|
+
</div>
|
1357
|
+
<hr>
|
1358
|
+
<div class="refsect2">
|
1359
|
+
<a name="GST-TAG-DEVICE-MODEL:CAPS"></a><h3>GST_TAG_DEVICE_MODEL</h3>
|
1360
|
+
<pre class="programlisting">#define GST_TAG_DEVICE_MODEL "device-model"
|
1361
|
+
</pre>
|
1362
|
+
<p>
|
1363
|
+
Model of the device used to create the media (string)
|
1364
|
+
</p>
|
1365
|
+
<p class="since">Since 0.10.30</p>
|
1366
|
+
</div>
|
1367
|
+
<hr>
|
1368
|
+
<div class="refsect2">
|
1369
|
+
<a name="GST-TAG-APPLICATION-NAME:CAPS"></a><h3>GST_TAG_APPLICATION_NAME</h3>
|
1370
|
+
<pre class="programlisting">#define GST_TAG_APPLICATION_NAME "application-name"
|
1371
|
+
</pre>
|
1372
|
+
<p>
|
1373
|
+
Name of the application used to create the media (string)
|
1374
|
+
</p>
|
1375
|
+
<p class="since">Since 0.10.31</p>
|
1376
|
+
</div>
|
1377
|
+
<hr>
|
1378
|
+
<div class="refsect2">
|
1379
|
+
<a name="GST-TAG-APPLICATION-DATA:CAPS"></a><h3>GST_TAG_APPLICATION_DATA</h3>
|
1380
|
+
<pre class="programlisting">#define GST_TAG_APPLICATION_DATA "application-data"
|
1381
|
+
</pre>
|
1382
|
+
<p>
|
1383
|
+
Arbitrary application data (buffer)
|
1384
|
+
</p>
|
1385
|
+
<p>
|
1386
|
+
Some formats allow application's to add their own arbitrary data
|
1387
|
+
into files. This data is application's dependent.
|
1388
|
+
</p>
|
1389
|
+
<p class="since">Since 0.10.31</p>
|
1390
|
+
</div>
|
1391
|
+
<hr>
|
1392
|
+
<div class="refsect2">
|
1393
|
+
<a name="GST-TAG-IMAGE-ORIENTATION:CAPS"></a><h3>GST_TAG_IMAGE_ORIENTATION</h3>
|
1394
|
+
<pre class="programlisting">#define GST_TAG_IMAGE_ORIENTATION "image-orientation"
|
1395
|
+
</pre>
|
1396
|
+
<p>
|
1397
|
+
Represents the 'Orientation' tag from EXIF. Defines how the image
|
1398
|
+
should be rotated and mirrored for display. (string)
|
1399
|
+
</p>
|
1400
|
+
<p>
|
1401
|
+
This tag has a predefined set of allowed values:
|
1402
|
+
"rotate-0"
|
1403
|
+
"rotate-90"
|
1404
|
+
"rotate-180"
|
1405
|
+
"rotate-270"
|
1406
|
+
"flip-rotate-0"
|
1407
|
+
"flip-rotate-90"
|
1408
|
+
"flip-rotate-180"
|
1409
|
+
"flip-rotate-270"
|
1410
|
+
</p>
|
1411
|
+
<p>
|
1412
|
+
The naming is adopted according to a possible transformation to perform
|
1413
|
+
on the image to fix its orientation, obviously equivalent operations will
|
1414
|
+
yield the same result.
|
1415
|
+
</p>
|
1416
|
+
<p>
|
1417
|
+
Rotations indicated by the values are in clockwise direction and
|
1418
|
+
'flip' means an horizontal mirroring.
|
1419
|
+
</p>
|
1420
|
+
<p class="since">Since 0.10.30</p>
|
1421
|
+
</div>
|
1422
|
+
<hr>
|
1423
|
+
<div class="refsect2">
|
1424
|
+
<a name="gst-tag-register"></a><h3>gst_tag_register ()</h3>
|
1425
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_register (<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>,
|
1426
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagFlag" title="enum GstTagFlag"><span class="type">GstTagFlag</span></a> flag</code></em>,
|
1427
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>,
|
1428
|
+
<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> *nick</code></em>,
|
1429
|
+
<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> *blurb</code></em>,
|
1430
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeFunc" title="GstTagMergeFunc ()"><span class="type">GstTagMergeFunc</span></a> func</code></em>);</pre>
|
1431
|
+
<p>
|
1432
|
+
Registers a new tag type for the use with GStreamer's type system. If a type
|
1433
|
+
with that name is already registered, that one is used.
|
1434
|
+
The old registration may have used a different type however. So don't rely
|
1435
|
+
on your supplied values.
|
1436
|
+
</p>
|
1437
|
+
<p>
|
1438
|
+
Important: if you do not supply a merge function the implication will be
|
1439
|
+
that there can only be one single value for this tag in a tag list and
|
1440
|
+
any additional values will silenty be discarded when being added (unless
|
1441
|
+
<a class="link" href="gstreamer-GstTagList.html#GST-TAG-MERGE-REPLACE:CAPS"><span class="type">GST_TAG_MERGE_REPLACE</span></a>, <a class="link" href="gstreamer-GstTagList.html#GST-TAG-MERGE-REPLACE-ALL:CAPS"><span class="type">GST_TAG_MERGE_REPLACE_ALL</span></a>, or
|
1442
|
+
<a class="link" href="gstreamer-GstTagList.html#GST-TAG-MERGE-PREPEND:CAPS"><span class="type">GST_TAG_MERGE_PREPEND</span></a> is used as merge mode, in which case the new
|
1443
|
+
value will replace the old one in the list).
|
1444
|
+
</p>
|
1445
|
+
<p>
|
1446
|
+
The merge function will be called from <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-copy-value" title="gst_tag_list_copy_value ()"><code class="function">gst_tag_list_copy_value()</code></a> when
|
1447
|
+
it is required that one or more values for a tag be condensed into
|
1448
|
+
one single value. This may happen from <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-get-string" title="gst_tag_list_get_string ()"><code class="function">gst_tag_list_get_string()</code></a>,
|
1449
|
+
<a class="link" href="gstreamer-GstTagList.html#gst-tag-list-get-int" title="gst_tag_list_get_int ()"><code class="function">gst_tag_list_get_int()</code></a>, <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-get-double" title="gst_tag_list_get_double ()"><code class="function">gst_tag_list_get_double()</code></a> etc. What will happen
|
1450
|
+
exactly in that case depends on how the tag was registered and if a
|
1451
|
+
merge function was supplied and if so which one.
|
1452
|
+
</p>
|
1453
|
+
<p>
|
1454
|
+
Two default merge functions are provided: <a class="link" href="gstreamer-GstTagList.html#gst-tag-merge-use-first" title="gst_tag_merge_use_first ()"><code class="function">gst_tag_merge_use_first()</code></a> and
|
1455
|
+
<a class="link" href="gstreamer-GstTagList.html#gst-tag-merge-strings-with-comma" title="gst_tag_merge_strings_with_comma ()"><code class="function">gst_tag_merge_strings_with_comma()</code></a>.
|
1456
|
+
</p>
|
1457
|
+
<div class="variablelist"><table border="0">
|
1458
|
+
<col align="left" valign="top">
|
1459
|
+
<tbody>
|
1460
|
+
<tr>
|
1461
|
+
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
1462
|
+
<td>the name or identifier string</td>
|
1463
|
+
</tr>
|
1464
|
+
<tr>
|
1465
|
+
<td><p><span class="term"><em class="parameter"><code>flag</code></em> :</span></p></td>
|
1466
|
+
<td>a flag describing the type of tag info</td>
|
1467
|
+
</tr>
|
1468
|
+
<tr>
|
1469
|
+
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
1470
|
+
<td>the type this data is in</td>
|
1471
|
+
</tr>
|
1472
|
+
<tr>
|
1473
|
+
<td><p><span class="term"><em class="parameter"><code>nick</code></em> :</span></p></td>
|
1474
|
+
<td>human-readable name</td>
|
1475
|
+
</tr>
|
1476
|
+
<tr>
|
1477
|
+
<td><p><span class="term"><em class="parameter"><code>blurb</code></em> :</span></p></td>
|
1478
|
+
<td>a human-readable description about this tag</td>
|
1479
|
+
</tr>
|
1480
|
+
<tr>
|
1481
|
+
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
1482
|
+
<td>function for merging multiple values of this tag, or NULL</td>
|
1483
|
+
</tr>
|
1484
|
+
</tbody>
|
1485
|
+
</table></div>
|
1486
|
+
</div>
|
1487
|
+
<hr>
|
1488
|
+
<div class="refsect2">
|
1489
|
+
<a name="gst-tag-merge-use-first"></a><h3>gst_tag_merge_use_first ()</h3>
|
1490
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_merge_use_first (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *dest</code></em>,
|
1491
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *src</code></em>);</pre>
|
1492
|
+
<p>
|
1493
|
+
This is a convenience function for the func argument of <a class="link" href="gstreamer-GstTagList.html#gst-tag-register" title="gst_tag_register ()"><code class="function">gst_tag_register()</code></a>.
|
1494
|
+
It creates a copy of the first value from the list.
|
1495
|
+
</p>
|
1496
|
+
<div class="variablelist"><table border="0">
|
1497
|
+
<col align="left" valign="top">
|
1498
|
+
<tbody>
|
1499
|
+
<tr>
|
1500
|
+
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
1501
|
+
<td>uninitialized GValue to store result in. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> caller-allocates]</span>
|
1502
|
+
</td>
|
1503
|
+
</tr>
|
1504
|
+
<tr>
|
1505
|
+
<td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
|
1506
|
+
<td>GValue to copy from</td>
|
1507
|
+
</tr>
|
1508
|
+
</tbody>
|
1509
|
+
</table></div>
|
1510
|
+
</div>
|
1511
|
+
<hr>
|
1512
|
+
<div class="refsect2">
|
1513
|
+
<a name="gst-tag-merge-strings-with-comma"></a><h3>gst_tag_merge_strings_with_comma ()</h3>
|
1514
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_merge_strings_with_comma (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *dest</code></em>,
|
1515
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *src</code></em>);</pre>
|
1516
|
+
<p>
|
1517
|
+
This is a convenience function for the func argument of <a class="link" href="gstreamer-GstTagList.html#gst-tag-register" title="gst_tag_register ()"><code class="function">gst_tag_register()</code></a>.
|
1518
|
+
It concatenates all given strings using a comma. The tag must be registered
|
1519
|
+
as a G_TYPE_STRING or this function will fail.
|
1520
|
+
</p>
|
1521
|
+
<div class="variablelist"><table border="0">
|
1522
|
+
<col align="left" valign="top">
|
1523
|
+
<tbody>
|
1524
|
+
<tr>
|
1525
|
+
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
1526
|
+
<td>uninitialized GValue to store result in. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> caller-allocates]</span>
|
1527
|
+
</td>
|
1528
|
+
</tr>
|
1529
|
+
<tr>
|
1530
|
+
<td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
|
1531
|
+
<td>GValue to copy from</td>
|
1532
|
+
</tr>
|
1533
|
+
</tbody>
|
1534
|
+
</table></div>
|
1535
|
+
</div>
|
1536
|
+
<hr>
|
1537
|
+
<div class="refsect2">
|
1538
|
+
<a name="gst-tag-exists"></a><h3>gst_tag_exists ()</h3>
|
1539
|
+
<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_tag_exists (<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> *tag</code></em>);</pre>
|
1540
|
+
<p>
|
1541
|
+
Checks if the given type is already registered.
|
1542
|
+
</p>
|
1543
|
+
<div class="variablelist"><table border="0">
|
1544
|
+
<col align="left" valign="top">
|
1545
|
+
<tbody>
|
1546
|
+
<tr>
|
1547
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1548
|
+
<td>name of the tag</td>
|
1549
|
+
</tr>
|
1550
|
+
<tr>
|
1551
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1552
|
+
<td>TRUE if the type is already registered</td>
|
1553
|
+
</tr>
|
1554
|
+
</tbody>
|
1555
|
+
</table></div>
|
1556
|
+
</div>
|
1557
|
+
<hr>
|
1558
|
+
<div class="refsect2">
|
1559
|
+
<a name="gst-tag-get-type"></a><h3>gst_tag_get_type ()</h3>
|
1560
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a> gst_tag_get_type (<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> *tag</code></em>);</pre>
|
1561
|
+
<p>
|
1562
|
+
Gets the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> used for this tag.
|
1563
|
+
</p>
|
1564
|
+
<div class="variablelist"><table border="0">
|
1565
|
+
<col align="left" valign="top">
|
1566
|
+
<tbody>
|
1567
|
+
<tr>
|
1568
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1569
|
+
<td>the tag</td>
|
1570
|
+
</tr>
|
1571
|
+
<tr>
|
1572
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1573
|
+
<td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> of this tag</td>
|
1574
|
+
</tr>
|
1575
|
+
</tbody>
|
1576
|
+
</table></div>
|
1577
|
+
</div>
|
1578
|
+
<hr>
|
1579
|
+
<div class="refsect2">
|
1580
|
+
<a name="gst-tag-get-nick"></a><h3>gst_tag_get_nick ()</h3>
|
1581
|
+
<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_tag_get_nick (<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> *tag</code></em>);</pre>
|
1582
|
+
<p>
|
1583
|
+
Returns the human-readable name of this tag, You must not change or free
|
1584
|
+
this string.
|
1585
|
+
</p>
|
1586
|
+
<div class="variablelist"><table border="0">
|
1587
|
+
<col align="left" valign="top">
|
1588
|
+
<tbody>
|
1589
|
+
<tr>
|
1590
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1591
|
+
<td>the tag</td>
|
1592
|
+
</tr>
|
1593
|
+
<tr>
|
1594
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1595
|
+
<td>the human-readable name of this tag</td>
|
1596
|
+
</tr>
|
1597
|
+
</tbody>
|
1598
|
+
</table></div>
|
1599
|
+
</div>
|
1600
|
+
<hr>
|
1601
|
+
<div class="refsect2">
|
1602
|
+
<a name="gst-tag-get-description"></a><h3>gst_tag_get_description ()</h3>
|
1603
|
+
<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_tag_get_description (<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> *tag</code></em>);</pre>
|
1604
|
+
<p>
|
1605
|
+
Returns the human-readable description of this tag, You must not change or
|
1606
|
+
free this string.
|
1607
|
+
</p>
|
1608
|
+
<div class="variablelist"><table border="0">
|
1609
|
+
<col align="left" valign="top">
|
1610
|
+
<tbody>
|
1611
|
+
<tr>
|
1612
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1613
|
+
<td>the tag</td>
|
1614
|
+
</tr>
|
1615
|
+
<tr>
|
1616
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1617
|
+
<td>the human-readable description of this tag</td>
|
1618
|
+
</tr>
|
1619
|
+
</tbody>
|
1620
|
+
</table></div>
|
1621
|
+
</div>
|
1622
|
+
<hr>
|
1623
|
+
<div class="refsect2">
|
1624
|
+
<a name="gst-tag-get-flag"></a><h3>gst_tag_get_flag ()</h3>
|
1625
|
+
<pre class="programlisting"><a class="link" href="gstreamer-GstTagList.html#GstTagFlag" title="enum GstTagFlag"><span class="returnvalue">GstTagFlag</span></a> gst_tag_get_flag (<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> *tag</code></em>);</pre>
|
1626
|
+
<p>
|
1627
|
+
Gets the flag of <em class="parameter"><code>tag</code></em>.
|
1628
|
+
</p>
|
1629
|
+
<div class="variablelist"><table border="0">
|
1630
|
+
<col align="left" valign="top">
|
1631
|
+
<tbody>
|
1632
|
+
<tr>
|
1633
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1634
|
+
<td>the tag</td>
|
1635
|
+
</tr>
|
1636
|
+
<tr>
|
1637
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1638
|
+
<td>the flag of this tag.</td>
|
1639
|
+
</tr>
|
1640
|
+
</tbody>
|
1641
|
+
</table></div>
|
1642
|
+
</div>
|
1643
|
+
<hr>
|
1644
|
+
<div class="refsect2">
|
1645
|
+
<a name="gst-tag-is-fixed"></a><h3>gst_tag_is_fixed ()</h3>
|
1646
|
+
<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_tag_is_fixed (<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> *tag</code></em>);</pre>
|
1647
|
+
<p>
|
1648
|
+
Checks if the given tag is fixed. A fixed tag can only contain one value.
|
1649
|
+
Unfixed tags can contain lists of values.
|
1650
|
+
</p>
|
1651
|
+
<div class="variablelist"><table border="0">
|
1652
|
+
<col align="left" valign="top">
|
1653
|
+
<tbody>
|
1654
|
+
<tr>
|
1655
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1656
|
+
<td>tag to check</td>
|
1657
|
+
</tr>
|
1658
|
+
<tr>
|
1659
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1660
|
+
<td>TRUE, if the given tag is fixed.</td>
|
1661
|
+
</tr>
|
1662
|
+
</tbody>
|
1663
|
+
</table></div>
|
1664
|
+
</div>
|
1665
|
+
<hr>
|
1666
|
+
<div class="refsect2">
|
1667
|
+
<a name="gst-tag-list-new"></a><h3>gst_tag_list_new ()</h3>
|
1668
|
+
<pre class="programlisting"><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * gst_tag_list_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1669
|
+
<p>
|
1670
|
+
Creates a new empty GstTagList.
|
1671
|
+
</p>
|
1672
|
+
<p>
|
1673
|
+
Free-function: gst_tag_list_free
|
1674
|
+
</p>
|
1675
|
+
<div class="variablelist"><table border="0">
|
1676
|
+
<col align="left" valign="top">
|
1677
|
+
<tbody><tr>
|
1678
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1679
|
+
<td>An empty tag list. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1680
|
+
</td>
|
1681
|
+
</tr></tbody>
|
1682
|
+
</table></div>
|
1683
|
+
</div>
|
1684
|
+
<hr>
|
1685
|
+
<div class="refsect2">
|
1686
|
+
<a name="gst-tag-list-new-full"></a><h3>gst_tag_list_new_full ()</h3>
|
1687
|
+
<pre class="programlisting"><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * gst_tag_list_new_full (<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> *tag</code></em>,
|
1688
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
1689
|
+
<p>
|
1690
|
+
Creates a new taglist and appends the values for the given tags. It expects
|
1691
|
+
tag-value pairs like <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-add" title="gst_tag_list_add ()"><code class="function">gst_tag_list_add()</code></a>, and a NULL terminator after the
|
1692
|
+
last pair. The type of the values is implicit and is documented in the API
|
1693
|
+
reference, but can also be queried at runtime with <a class="link" href="gstreamer-GstTagList.html#gst-tag-get-type" title="gst_tag_get_type ()"><code class="function">gst_tag_get_type()</code></a>. It
|
1694
|
+
is an error to pass a value of a type not matching the tag type into this
|
1695
|
+
function. The tag list will make copies of any arguments passed
|
1696
|
+
(e.g. strings, buffers).
|
1697
|
+
</p>
|
1698
|
+
<p>
|
1699
|
+
Free-function: gst_tag_list_free
|
1700
|
+
</p>
|
1701
|
+
<div class="variablelist"><table border="0">
|
1702
|
+
<col align="left" valign="top">
|
1703
|
+
<tbody>
|
1704
|
+
<tr>
|
1705
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1706
|
+
<td>tag</td>
|
1707
|
+
</tr>
|
1708
|
+
<tr>
|
1709
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1710
|
+
<td>NULL-terminated list of values to set</td>
|
1711
|
+
</tr>
|
1712
|
+
<tr>
|
1713
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1714
|
+
<td>a new <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a>. Free with <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-free" title="gst_tag_list_free ()"><code class="function">gst_tag_list_free()</code></a>
|
1715
|
+
when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1716
|
+
</td>
|
1717
|
+
</tr>
|
1718
|
+
</tbody>
|
1719
|
+
</table></div>
|
1720
|
+
<p class="since">Since 0.10.24</p>
|
1721
|
+
</div>
|
1722
|
+
<hr>
|
1723
|
+
<div class="refsect2">
|
1724
|
+
<a name="gst-tag-list-new-full-valist"></a><h3>gst_tag_list_new_full_valist ()</h3>
|
1725
|
+
<pre class="programlisting"><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * gst_tag_list_new_full_valist (<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
1726
|
+
<p>
|
1727
|
+
Just like <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-new-full" title="gst_tag_list_new_full ()"><code class="function">gst_tag_list_new_full()</code></a>, only that it takes a va_list argument.
|
1728
|
+
Useful mostly for language bindings.
|
1729
|
+
</p>
|
1730
|
+
<p>
|
1731
|
+
Free-function: gst_tag_list_free
|
1732
|
+
</p>
|
1733
|
+
<div class="variablelist"><table border="0">
|
1734
|
+
<col align="left" valign="top">
|
1735
|
+
<tbody>
|
1736
|
+
<tr>
|
1737
|
+
<td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
|
1738
|
+
<td>tag / value pairs to set</td>
|
1739
|
+
</tr>
|
1740
|
+
<tr>
|
1741
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1742
|
+
<td>a new <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a>. Free with <a class="link" href="gstreamer-GstTagList.html#gst-tag-list-free" title="gst_tag_list_free ()"><code class="function">gst_tag_list_free()</code></a>
|
1743
|
+
when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1744
|
+
</td>
|
1745
|
+
</tr>
|
1746
|
+
</tbody>
|
1747
|
+
</table></div>
|
1748
|
+
<p class="since">Since 0.10.24</p>
|
1749
|
+
</div>
|
1750
|
+
<hr>
|
1751
|
+
<div class="refsect2">
|
1752
|
+
<a name="gst-is-tag-list"></a><h3>gst_is_tag_list ()</h3>
|
1753
|
+
<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_is_tag_list (<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#gconstpointer"><span class="type">gconstpointer</span></a> p</code></em>);</pre>
|
1754
|
+
<p>
|
1755
|
+
Checks if the given pointer is a taglist.
|
1756
|
+
</p>
|
1757
|
+
<div class="variablelist"><table border="0">
|
1758
|
+
<col align="left" valign="top">
|
1759
|
+
<tbody>
|
1760
|
+
<tr>
|
1761
|
+
<td><p><span class="term"><em class="parameter"><code>p</code></em> :</span></p></td>
|
1762
|
+
<td>Object that might be a taglist</td>
|
1763
|
+
</tr>
|
1764
|
+
<tr>
|
1765
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1766
|
+
<td>TRUE, if the given pointer is a taglist</td>
|
1767
|
+
</tr>
|
1768
|
+
</tbody>
|
1769
|
+
</table></div>
|
1770
|
+
</div>
|
1771
|
+
<hr>
|
1772
|
+
<div class="refsect2">
|
1773
|
+
<a name="gst-tag-list-is-empty"></a><h3>gst_tag_list_is_empty ()</h3>
|
1774
|
+
<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_tag_list_is_empty (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);</pre>
|
1775
|
+
<p>
|
1776
|
+
Checks if the given taglist is empty.
|
1777
|
+
</p>
|
1778
|
+
<div class="variablelist"><table border="0">
|
1779
|
+
<col align="left" valign="top">
|
1780
|
+
<tbody>
|
1781
|
+
<tr>
|
1782
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1783
|
+
<td>A <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a>.</td>
|
1784
|
+
</tr>
|
1785
|
+
<tr>
|
1786
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1787
|
+
<td>TRUE if the taglist is empty, otherwise FALSE.</td>
|
1788
|
+
</tr>
|
1789
|
+
</tbody>
|
1790
|
+
</table></div>
|
1791
|
+
<p class="since">Since 0.10.11</p>
|
1792
|
+
</div>
|
1793
|
+
<hr>
|
1794
|
+
<div class="refsect2">
|
1795
|
+
<a name="gst-tag-list-copy"></a><h3>gst_tag_list_copy ()</h3>
|
1796
|
+
<pre class="programlisting"><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * gst_tag_list_copy (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);</pre>
|
1797
|
+
<p>
|
1798
|
+
Copies a given <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a>.
|
1799
|
+
</p>
|
1800
|
+
<p>
|
1801
|
+
Free-function: gst_tag_list_free
|
1802
|
+
</p>
|
1803
|
+
<div class="variablelist"><table border="0">
|
1804
|
+
<col align="left" valign="top">
|
1805
|
+
<tbody>
|
1806
|
+
<tr>
|
1807
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1808
|
+
<td>list to copy</td>
|
1809
|
+
</tr>
|
1810
|
+
<tr>
|
1811
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1812
|
+
<td>copy of the given list. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1813
|
+
</td>
|
1814
|
+
</tr>
|
1815
|
+
</tbody>
|
1816
|
+
</table></div>
|
1817
|
+
</div>
|
1818
|
+
<hr>
|
1819
|
+
<div class="refsect2">
|
1820
|
+
<a name="gst-tag-list-insert"></a><h3>gst_tag_list_insert ()</h3>
|
1821
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_list_insert (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *into</code></em>,
|
1822
|
+
<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *from</code></em>,
|
1823
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>);</pre>
|
1824
|
+
<p>
|
1825
|
+
Inserts the tags of the <em class="parameter"><code>from</code></em> list into the first list using the given mode.
|
1826
|
+
</p>
|
1827
|
+
<div class="variablelist"><table border="0">
|
1828
|
+
<col align="left" valign="top">
|
1829
|
+
<tbody>
|
1830
|
+
<tr>
|
1831
|
+
<td><p><span class="term"><em class="parameter"><code>into</code></em> :</span></p></td>
|
1832
|
+
<td>list to merge into</td>
|
1833
|
+
</tr>
|
1834
|
+
<tr>
|
1835
|
+
<td><p><span class="term"><em class="parameter"><code>from</code></em> :</span></p></td>
|
1836
|
+
<td>list to merge from</td>
|
1837
|
+
</tr>
|
1838
|
+
<tr>
|
1839
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
1840
|
+
<td>the mode to use</td>
|
1841
|
+
</tr>
|
1842
|
+
</tbody>
|
1843
|
+
</table></div>
|
1844
|
+
</div>
|
1845
|
+
<hr>
|
1846
|
+
<div class="refsect2">
|
1847
|
+
<a name="gst-tag-list-merge"></a><h3>gst_tag_list_merge ()</h3>
|
1848
|
+
<pre class="programlisting"><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="returnvalue">GstTagList</span></a> * gst_tag_list_merge (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list1</code></em>,
|
1849
|
+
<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list2</code></em>,
|
1850
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>);</pre>
|
1851
|
+
<p>
|
1852
|
+
Merges the two given lists into a new list. If one of the lists is NULL, a
|
1853
|
+
copy of the other is returned. If both lists are NULL, NULL is returned.
|
1854
|
+
</p>
|
1855
|
+
<p>
|
1856
|
+
Free-function: gst_tag_list_free
|
1857
|
+
</p>
|
1858
|
+
<div class="variablelist"><table border="0">
|
1859
|
+
<col align="left" valign="top">
|
1860
|
+
<tbody>
|
1861
|
+
<tr>
|
1862
|
+
<td><p><span class="term"><em class="parameter"><code>list1</code></em> :</span></p></td>
|
1863
|
+
<td>first list to merge</td>
|
1864
|
+
</tr>
|
1865
|
+
<tr>
|
1866
|
+
<td><p><span class="term"><em class="parameter"><code>list2</code></em> :</span></p></td>
|
1867
|
+
<td>second list to merge</td>
|
1868
|
+
</tr>
|
1869
|
+
<tr>
|
1870
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
1871
|
+
<td>the mode to use</td>
|
1872
|
+
</tr>
|
1873
|
+
<tr>
|
1874
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1875
|
+
<td>the new list. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1876
|
+
</td>
|
1877
|
+
</tr>
|
1878
|
+
</tbody>
|
1879
|
+
</table></div>
|
1880
|
+
</div>
|
1881
|
+
<hr>
|
1882
|
+
<div class="refsect2">
|
1883
|
+
<a name="gst-tag-list-free"></a><h3>gst_tag_list_free ()</h3>
|
1884
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_list_free (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);</pre>
|
1885
|
+
<p>
|
1886
|
+
Frees the given list and all associated values.
|
1887
|
+
</p>
|
1888
|
+
<div class="variablelist"><table border="0">
|
1889
|
+
<col align="left" valign="top">
|
1890
|
+
<tbody><tr>
|
1891
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1892
|
+
<td>the list to free. <span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1893
|
+
</td>
|
1894
|
+
</tr></tbody>
|
1895
|
+
</table></div>
|
1896
|
+
</div>
|
1897
|
+
<hr>
|
1898
|
+
<div class="refsect2">
|
1899
|
+
<a name="gst-tag-list-get-tag-size"></a><h3>gst_tag_list_get_tag_size ()</h3>
|
1900
|
+
<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_tag_list_get_tag_size (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
1901
|
+
<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> *tag</code></em>);</pre>
|
1902
|
+
<p>
|
1903
|
+
Checks how many value are stored in this tag list for the given tag.
|
1904
|
+
</p>
|
1905
|
+
<div class="variablelist"><table border="0">
|
1906
|
+
<col align="left" valign="top">
|
1907
|
+
<tbody>
|
1908
|
+
<tr>
|
1909
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1910
|
+
<td>a taglist</td>
|
1911
|
+
</tr>
|
1912
|
+
<tr>
|
1913
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1914
|
+
<td>the tag to query</td>
|
1915
|
+
</tr>
|
1916
|
+
<tr>
|
1917
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1918
|
+
<td>The number of tags stored</td>
|
1919
|
+
</tr>
|
1920
|
+
</tbody>
|
1921
|
+
</table></div>
|
1922
|
+
</div>
|
1923
|
+
<hr>
|
1924
|
+
<div class="refsect2">
|
1925
|
+
<a name="gst-tag-list-add"></a><h3>gst_tag_list_add ()</h3>
|
1926
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_list_add (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
1927
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
1928
|
+
<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> *tag</code></em>,
|
1929
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
1930
|
+
<p>
|
1931
|
+
Sets the values for the given tags using the specified mode.
|
1932
|
+
</p>
|
1933
|
+
<div class="variablelist"><table border="0">
|
1934
|
+
<col align="left" valign="top">
|
1935
|
+
<tbody>
|
1936
|
+
<tr>
|
1937
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1938
|
+
<td>list to set tags in</td>
|
1939
|
+
</tr>
|
1940
|
+
<tr>
|
1941
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
1942
|
+
<td>the mode to use</td>
|
1943
|
+
</tr>
|
1944
|
+
<tr>
|
1945
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1946
|
+
<td>tag</td>
|
1947
|
+
</tr>
|
1948
|
+
<tr>
|
1949
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1950
|
+
<td>NULL-terminated list of values to set</td>
|
1951
|
+
</tr>
|
1952
|
+
</tbody>
|
1953
|
+
</table></div>
|
1954
|
+
</div>
|
1955
|
+
<hr>
|
1956
|
+
<div class="refsect2">
|
1957
|
+
<a name="gst-tag-list-add-value"></a><h3>gst_tag_list_add_value ()</h3>
|
1958
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_list_add_value (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
1959
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
1960
|
+
<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> *tag</code></em>,
|
1961
|
+
<em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
|
1962
|
+
<p>
|
1963
|
+
Sets the GValue for a given tag using the specified mode.
|
1964
|
+
</p>
|
1965
|
+
<div class="variablelist"><table border="0">
|
1966
|
+
<col align="left" valign="top">
|
1967
|
+
<tbody>
|
1968
|
+
<tr>
|
1969
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1970
|
+
<td>list to set tags in</td>
|
1971
|
+
</tr>
|
1972
|
+
<tr>
|
1973
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
1974
|
+
<td>the mode to use</td>
|
1975
|
+
</tr>
|
1976
|
+
<tr>
|
1977
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1978
|
+
<td>tag</td>
|
1979
|
+
</tr>
|
1980
|
+
<tr>
|
1981
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
1982
|
+
<td>GValue for this tag</td>
|
1983
|
+
</tr>
|
1984
|
+
</tbody>
|
1985
|
+
</table></div>
|
1986
|
+
<p class="since">Since 0.10.24</p>
|
1987
|
+
</div>
|
1988
|
+
<hr>
|
1989
|
+
<div class="refsect2">
|
1990
|
+
<a name="gst-tag-list-add-values"></a><h3>gst_tag_list_add_values ()</h3>
|
1991
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_list_add_values (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
1992
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
1993
|
+
<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> *tag</code></em>,
|
1994
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
1995
|
+
<p>
|
1996
|
+
Sets the GValues for the given tags using the specified mode.
|
1997
|
+
</p>
|
1998
|
+
<div class="variablelist"><table border="0">
|
1999
|
+
<col align="left" valign="top">
|
2000
|
+
<tbody>
|
2001
|
+
<tr>
|
2002
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2003
|
+
<td>list to set tags in</td>
|
2004
|
+
</tr>
|
2005
|
+
<tr>
|
2006
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
2007
|
+
<td>the mode to use</td>
|
2008
|
+
</tr>
|
2009
|
+
<tr>
|
2010
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2011
|
+
<td>tag</td>
|
2012
|
+
</tr>
|
2013
|
+
<tr>
|
2014
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2015
|
+
<td>GValues to set</td>
|
2016
|
+
</tr>
|
2017
|
+
</tbody>
|
2018
|
+
</table></div>
|
2019
|
+
</div>
|
2020
|
+
<hr>
|
2021
|
+
<div class="refsect2">
|
2022
|
+
<a name="gst-tag-list-add-valist"></a><h3>gst_tag_list_add_valist ()</h3>
|
2023
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_list_add_valist (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2024
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
2025
|
+
<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> *tag</code></em>,
|
2026
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
2027
|
+
<p>
|
2028
|
+
Sets the values for the given tags using the specified mode.
|
2029
|
+
</p>
|
2030
|
+
<div class="variablelist"><table border="0">
|
2031
|
+
<col align="left" valign="top">
|
2032
|
+
<tbody>
|
2033
|
+
<tr>
|
2034
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2035
|
+
<td>list to set tags in</td>
|
2036
|
+
</tr>
|
2037
|
+
<tr>
|
2038
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
2039
|
+
<td>the mode to use</td>
|
2040
|
+
</tr>
|
2041
|
+
<tr>
|
2042
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2043
|
+
<td>tag</td>
|
2044
|
+
</tr>
|
2045
|
+
<tr>
|
2046
|
+
<td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
|
2047
|
+
<td>tag / value pairs to set</td>
|
2048
|
+
</tr>
|
2049
|
+
</tbody>
|
2050
|
+
</table></div>
|
2051
|
+
</div>
|
2052
|
+
<hr>
|
2053
|
+
<div class="refsect2">
|
2054
|
+
<a name="gst-tag-list-add-valist-values"></a><h3>gst_tag_list_add_valist_values ()</h3>
|
2055
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_list_add_valist_values (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2056
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagMergeMode" title="enum GstTagMergeMode"><span class="type">GstTagMergeMode</span></a> mode</code></em>,
|
2057
|
+
<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> *tag</code></em>,
|
2058
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
2059
|
+
<p>
|
2060
|
+
Sets the GValues for the given tags using the specified mode.
|
2061
|
+
</p>
|
2062
|
+
<div class="variablelist"><table border="0">
|
2063
|
+
<col align="left" valign="top">
|
2064
|
+
<tbody>
|
2065
|
+
<tr>
|
2066
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2067
|
+
<td>list to set tags in</td>
|
2068
|
+
</tr>
|
2069
|
+
<tr>
|
2070
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
2071
|
+
<td>the mode to use</td>
|
2072
|
+
</tr>
|
2073
|
+
<tr>
|
2074
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2075
|
+
<td>tag</td>
|
2076
|
+
</tr>
|
2077
|
+
<tr>
|
2078
|
+
<td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
|
2079
|
+
<td>tag / GValue pairs to set</td>
|
2080
|
+
</tr>
|
2081
|
+
</tbody>
|
2082
|
+
</table></div>
|
2083
|
+
</div>
|
2084
|
+
<hr>
|
2085
|
+
<div class="refsect2">
|
2086
|
+
<a name="gst-tag-list-remove-tag"></a><h3>gst_tag_list_remove_tag ()</h3>
|
2087
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_list_remove_tag (<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2088
|
+
<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> *tag</code></em>);</pre>
|
2089
|
+
<p>
|
2090
|
+
Removes the given tag from the taglist.
|
2091
|
+
</p>
|
2092
|
+
<div class="variablelist"><table border="0">
|
2093
|
+
<col align="left" valign="top">
|
2094
|
+
<tbody>
|
2095
|
+
<tr>
|
2096
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2097
|
+
<td>list to remove tag from</td>
|
2098
|
+
</tr>
|
2099
|
+
<tr>
|
2100
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2101
|
+
<td>tag to remove</td>
|
2102
|
+
</tr>
|
2103
|
+
</tbody>
|
2104
|
+
</table></div>
|
2105
|
+
</div>
|
2106
|
+
<hr>
|
2107
|
+
<div class="refsect2">
|
2108
|
+
<a name="gst-tag-list-foreach"></a><h3>gst_tag_list_foreach ()</h3>
|
2109
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gst_tag_list_foreach (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2110
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagForeachFunc" title="GstTagForeachFunc ()"><span class="type">GstTagForeachFunc</span></a> func</code></em>,
|
2111
|
+
<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> user_data</code></em>);</pre>
|
2112
|
+
<p>
|
2113
|
+
Calls the given function for each tag inside the tag list. Note that if there
|
2114
|
+
is no tag, the function won't be called at all.
|
2115
|
+
</p>
|
2116
|
+
<div class="variablelist"><table border="0">
|
2117
|
+
<col align="left" valign="top">
|
2118
|
+
<tbody>
|
2119
|
+
<tr>
|
2120
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2121
|
+
<td>list to iterate over</td>
|
2122
|
+
</tr>
|
2123
|
+
<tr>
|
2124
|
+
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
2125
|
+
<td>function to be called for each tag. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
|
2126
|
+
</td>
|
2127
|
+
</tr>
|
2128
|
+
<tr>
|
2129
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2130
|
+
<td>user specified 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>
|
2131
|
+
</td>
|
2132
|
+
</tr>
|
2133
|
+
</tbody>
|
2134
|
+
</table></div>
|
2135
|
+
</div>
|
2136
|
+
<hr>
|
2137
|
+
<div class="refsect2">
|
2138
|
+
<a name="gst-tag-list-get-value-index"></a><h3>gst_tag_list_get_value_index ()</h3>
|
2139
|
+
<pre class="programlisting">const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="returnvalue">GValue</span></a> * gst_tag_list_get_value_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2140
|
+
<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> *tag</code></em>,
|
2141
|
+
<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> index</code></em>);</pre>
|
2142
|
+
<p>
|
2143
|
+
Gets the value that is at the given index for the given tag in the given
|
2144
|
+
list.
|
2145
|
+
</p>
|
2146
|
+
<div class="variablelist"><table border="0">
|
2147
|
+
<col align="left" valign="top">
|
2148
|
+
<tbody>
|
2149
|
+
<tr>
|
2150
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2151
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a>
|
2152
|
+
</td>
|
2153
|
+
</tr>
|
2154
|
+
<tr>
|
2155
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2156
|
+
<td>tag to read out</td>
|
2157
|
+
</tr>
|
2158
|
+
<tr>
|
2159
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2160
|
+
<td>number of entry to read out</td>
|
2161
|
+
</tr>
|
2162
|
+
<tr>
|
2163
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2164
|
+
<td>The GValue for the specified entry or NULL if the
|
2165
|
+
tag wasn't available or the tag doesn't have as many entries. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2166
|
+
</td>
|
2167
|
+
</tr>
|
2168
|
+
</tbody>
|
2169
|
+
</table></div>
|
2170
|
+
</div>
|
2171
|
+
<hr>
|
2172
|
+
<div class="refsect2">
|
2173
|
+
<a name="gst-tag-list-copy-value"></a><h3>gst_tag_list_copy_value ()</h3>
|
2174
|
+
<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_tag_list_copy_value (<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *dest</code></em>,
|
2175
|
+
<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2176
|
+
<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> *tag</code></em>);</pre>
|
2177
|
+
<p>
|
2178
|
+
Copies the contents for the given tag into the value,
|
2179
|
+
merging multiple values into one if multiple values are associated
|
2180
|
+
with the tag.
|
2181
|
+
You must <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#g-value-unset"><code class="function">g_value_unset()</code></a> the value after use.
|
2182
|
+
</p>
|
2183
|
+
<div class="variablelist"><table border="0">
|
2184
|
+
<col align="left" valign="top">
|
2185
|
+
<tbody>
|
2186
|
+
<tr>
|
2187
|
+
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
2188
|
+
<td>uninitialized <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> to copy into. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> caller-allocates]</span>
|
2189
|
+
</td>
|
2190
|
+
</tr>
|
2191
|
+
<tr>
|
2192
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2193
|
+
<td>list to get the tag from</td>
|
2194
|
+
</tr>
|
2195
|
+
<tr>
|
2196
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2197
|
+
<td>tag to read out</td>
|
2198
|
+
</tr>
|
2199
|
+
<tr>
|
2200
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2201
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2202
|
+
given list.</td>
|
2203
|
+
</tr>
|
2204
|
+
</tbody>
|
2205
|
+
</table></div>
|
2206
|
+
</div>
|
2207
|
+
<hr>
|
2208
|
+
<div class="refsect2">
|
2209
|
+
<a name="gst-tag-list-get-char"></a><h3>gst_tag_list_get_char ()</h3>
|
2210
|
+
<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_tag_list_get_char (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2211
|
+
<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> *tag</code></em>,
|
2212
|
+
<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#gchar"><span class="type">gchar</span></a> *value</code></em>);</pre>
|
2213
|
+
<p>
|
2214
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2215
|
+
into one if multiple values are associated with the tag.
|
2216
|
+
</p>
|
2217
|
+
<div class="variablelist"><table border="0">
|
2218
|
+
<col align="left" valign="top">
|
2219
|
+
<tbody>
|
2220
|
+
<tr>
|
2221
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2222
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2223
|
+
</tr>
|
2224
|
+
<tr>
|
2225
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2226
|
+
<td>tag to read out</td>
|
2227
|
+
</tr>
|
2228
|
+
<tr>
|
2229
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2230
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2231
|
+
</td>
|
2232
|
+
</tr>
|
2233
|
+
<tr>
|
2234
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2235
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2236
|
+
given list.</td>
|
2237
|
+
</tr>
|
2238
|
+
</tbody>
|
2239
|
+
</table></div>
|
2240
|
+
</div>
|
2241
|
+
<hr>
|
2242
|
+
<div class="refsect2">
|
2243
|
+
<a name="gst-tag-list-get-char-index"></a><h3>gst_tag_list_get_char_index ()</h3>
|
2244
|
+
<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_tag_list_get_char_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2245
|
+
<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> *tag</code></em>,
|
2246
|
+
<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> index</code></em>,
|
2247
|
+
<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#gchar"><span class="type">gchar</span></a> *value</code></em>);</pre>
|
2248
|
+
<p>
|
2249
|
+
Gets the value that is at the given index for the given tag in the given
|
2250
|
+
list.
|
2251
|
+
</p>
|
2252
|
+
<div class="variablelist"><table border="0">
|
2253
|
+
<col align="left" valign="top">
|
2254
|
+
<tbody>
|
2255
|
+
<tr>
|
2256
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2257
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2258
|
+
</tr>
|
2259
|
+
<tr>
|
2260
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2261
|
+
<td>tag to read out</td>
|
2262
|
+
</tr>
|
2263
|
+
<tr>
|
2264
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2265
|
+
<td>number of entry to read out</td>
|
2266
|
+
</tr>
|
2267
|
+
<tr>
|
2268
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2269
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2270
|
+
</td>
|
2271
|
+
</tr>
|
2272
|
+
<tr>
|
2273
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2274
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2275
|
+
given list.</td>
|
2276
|
+
</tr>
|
2277
|
+
</tbody>
|
2278
|
+
</table></div>
|
2279
|
+
</div>
|
2280
|
+
<hr>
|
2281
|
+
<div class="refsect2">
|
2282
|
+
<a name="gst-tag-list-get-uchar"></a><h3>gst_tag_list_get_uchar ()</h3>
|
2283
|
+
<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_tag_list_get_uchar (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2284
|
+
<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> *tag</code></em>,
|
2285
|
+
<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#guchar"><span class="type">guchar</span></a> *value</code></em>);</pre>
|
2286
|
+
<p>
|
2287
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2288
|
+
into one if multiple values are associated with the tag.
|
2289
|
+
</p>
|
2290
|
+
<div class="variablelist"><table border="0">
|
2291
|
+
<col align="left" valign="top">
|
2292
|
+
<tbody>
|
2293
|
+
<tr>
|
2294
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2295
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2296
|
+
</tr>
|
2297
|
+
<tr>
|
2298
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2299
|
+
<td>tag to read out</td>
|
2300
|
+
</tr>
|
2301
|
+
<tr>
|
2302
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2303
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2304
|
+
</td>
|
2305
|
+
</tr>
|
2306
|
+
<tr>
|
2307
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2308
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2309
|
+
given list.</td>
|
2310
|
+
</tr>
|
2311
|
+
</tbody>
|
2312
|
+
</table></div>
|
2313
|
+
</div>
|
2314
|
+
<hr>
|
2315
|
+
<div class="refsect2">
|
2316
|
+
<a name="gst-tag-list-get-uchar-index"></a><h3>gst_tag_list_get_uchar_index ()</h3>
|
2317
|
+
<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_tag_list_get_uchar_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2318
|
+
<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> *tag</code></em>,
|
2319
|
+
<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> index</code></em>,
|
2320
|
+
<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#guchar"><span class="type">guchar</span></a> *value</code></em>);</pre>
|
2321
|
+
<p>
|
2322
|
+
Gets the value that is at the given index for the given tag in the given
|
2323
|
+
list.
|
2324
|
+
</p>
|
2325
|
+
<div class="variablelist"><table border="0">
|
2326
|
+
<col align="left" valign="top">
|
2327
|
+
<tbody>
|
2328
|
+
<tr>
|
2329
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2330
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2331
|
+
</tr>
|
2332
|
+
<tr>
|
2333
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2334
|
+
<td>tag to read out</td>
|
2335
|
+
</tr>
|
2336
|
+
<tr>
|
2337
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2338
|
+
<td>number of entry to read out</td>
|
2339
|
+
</tr>
|
2340
|
+
<tr>
|
2341
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2342
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2343
|
+
</td>
|
2344
|
+
</tr>
|
2345
|
+
<tr>
|
2346
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2347
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2348
|
+
given list.</td>
|
2349
|
+
</tr>
|
2350
|
+
</tbody>
|
2351
|
+
</table></div>
|
2352
|
+
</div>
|
2353
|
+
<hr>
|
2354
|
+
<div class="refsect2">
|
2355
|
+
<a name="gst-tag-list-get-boolean"></a><h3>gst_tag_list_get_boolean ()</h3>
|
2356
|
+
<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_tag_list_get_boolean (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2357
|
+
<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> *tag</code></em>,
|
2358
|
+
<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> *value</code></em>);</pre>
|
2359
|
+
<p>
|
2360
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2361
|
+
into one if multiple values are associated with the tag.
|
2362
|
+
</p>
|
2363
|
+
<div class="variablelist"><table border="0">
|
2364
|
+
<col align="left" valign="top">
|
2365
|
+
<tbody>
|
2366
|
+
<tr>
|
2367
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2368
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2369
|
+
</tr>
|
2370
|
+
<tr>
|
2371
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2372
|
+
<td>tag to read out</td>
|
2373
|
+
</tr>
|
2374
|
+
<tr>
|
2375
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2376
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2377
|
+
</td>
|
2378
|
+
</tr>
|
2379
|
+
<tr>
|
2380
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2381
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2382
|
+
given list.</td>
|
2383
|
+
</tr>
|
2384
|
+
</tbody>
|
2385
|
+
</table></div>
|
2386
|
+
</div>
|
2387
|
+
<hr>
|
2388
|
+
<div class="refsect2">
|
2389
|
+
<a name="gst-tag-list-get-boolean-index"></a><h3>gst_tag_list_get_boolean_index ()</h3>
|
2390
|
+
<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_tag_list_get_boolean_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2391
|
+
<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> *tag</code></em>,
|
2392
|
+
<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> index</code></em>,
|
2393
|
+
<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> *value</code></em>);</pre>
|
2394
|
+
<p>
|
2395
|
+
Gets the value that is at the given index for the given tag in the given
|
2396
|
+
list.
|
2397
|
+
</p>
|
2398
|
+
<div class="variablelist"><table border="0">
|
2399
|
+
<col align="left" valign="top">
|
2400
|
+
<tbody>
|
2401
|
+
<tr>
|
2402
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2403
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2404
|
+
</tr>
|
2405
|
+
<tr>
|
2406
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2407
|
+
<td>tag to read out</td>
|
2408
|
+
</tr>
|
2409
|
+
<tr>
|
2410
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2411
|
+
<td>number of entry to read out</td>
|
2412
|
+
</tr>
|
2413
|
+
<tr>
|
2414
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2415
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2416
|
+
</td>
|
2417
|
+
</tr>
|
2418
|
+
<tr>
|
2419
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2420
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2421
|
+
given list.</td>
|
2422
|
+
</tr>
|
2423
|
+
</tbody>
|
2424
|
+
</table></div>
|
2425
|
+
</div>
|
2426
|
+
<hr>
|
2427
|
+
<div class="refsect2">
|
2428
|
+
<a name="gst-tag-list-get-int"></a><h3>gst_tag_list_get_int ()</h3>
|
2429
|
+
<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_tag_list_get_int (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2430
|
+
<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> *tag</code></em>,
|
2431
|
+
<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> *value</code></em>);</pre>
|
2432
|
+
<p>
|
2433
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2434
|
+
into one if multiple values are associated with the tag.
|
2435
|
+
</p>
|
2436
|
+
<div class="variablelist"><table border="0">
|
2437
|
+
<col align="left" valign="top">
|
2438
|
+
<tbody>
|
2439
|
+
<tr>
|
2440
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2441
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2442
|
+
</tr>
|
2443
|
+
<tr>
|
2444
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2445
|
+
<td>tag to read out</td>
|
2446
|
+
</tr>
|
2447
|
+
<tr>
|
2448
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2449
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2450
|
+
</td>
|
2451
|
+
</tr>
|
2452
|
+
<tr>
|
2453
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2454
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2455
|
+
given list.</td>
|
2456
|
+
</tr>
|
2457
|
+
</tbody>
|
2458
|
+
</table></div>
|
2459
|
+
</div>
|
2460
|
+
<hr>
|
2461
|
+
<div class="refsect2">
|
2462
|
+
<a name="gst-tag-list-get-int-index"></a><h3>gst_tag_list_get_int_index ()</h3>
|
2463
|
+
<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_tag_list_get_int_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2464
|
+
<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> *tag</code></em>,
|
2465
|
+
<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> index</code></em>,
|
2466
|
+
<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> *value</code></em>);</pre>
|
2467
|
+
<p>
|
2468
|
+
Gets the value that is at the given index for the given tag in the given
|
2469
|
+
list.
|
2470
|
+
</p>
|
2471
|
+
<div class="variablelist"><table border="0">
|
2472
|
+
<col align="left" valign="top">
|
2473
|
+
<tbody>
|
2474
|
+
<tr>
|
2475
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2476
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2477
|
+
</tr>
|
2478
|
+
<tr>
|
2479
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2480
|
+
<td>tag to read out</td>
|
2481
|
+
</tr>
|
2482
|
+
<tr>
|
2483
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2484
|
+
<td>number of entry to read out</td>
|
2485
|
+
</tr>
|
2486
|
+
<tr>
|
2487
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2488
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2489
|
+
</td>
|
2490
|
+
</tr>
|
2491
|
+
<tr>
|
2492
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2493
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2494
|
+
given list.</td>
|
2495
|
+
</tr>
|
2496
|
+
</tbody>
|
2497
|
+
</table></div>
|
2498
|
+
</div>
|
2499
|
+
<hr>
|
2500
|
+
<div class="refsect2">
|
2501
|
+
<a name="gst-tag-list-get-uint"></a><h3>gst_tag_list_get_uint ()</h3>
|
2502
|
+
<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_tag_list_get_uint (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2503
|
+
<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> *tag</code></em>,
|
2504
|
+
<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> *value</code></em>);</pre>
|
2505
|
+
<p>
|
2506
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2507
|
+
into one if multiple values are associated with the tag.
|
2508
|
+
</p>
|
2509
|
+
<div class="variablelist"><table border="0">
|
2510
|
+
<col align="left" valign="top">
|
2511
|
+
<tbody>
|
2512
|
+
<tr>
|
2513
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2514
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2515
|
+
</tr>
|
2516
|
+
<tr>
|
2517
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2518
|
+
<td>tag to read out</td>
|
2519
|
+
</tr>
|
2520
|
+
<tr>
|
2521
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2522
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2523
|
+
</td>
|
2524
|
+
</tr>
|
2525
|
+
<tr>
|
2526
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2527
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2528
|
+
given list.</td>
|
2529
|
+
</tr>
|
2530
|
+
</tbody>
|
2531
|
+
</table></div>
|
2532
|
+
</div>
|
2533
|
+
<hr>
|
2534
|
+
<div class="refsect2">
|
2535
|
+
<a name="gst-tag-list-get-uint-index"></a><h3>gst_tag_list_get_uint_index ()</h3>
|
2536
|
+
<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_tag_list_get_uint_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2537
|
+
<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> *tag</code></em>,
|
2538
|
+
<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> index</code></em>,
|
2539
|
+
<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> *value</code></em>);</pre>
|
2540
|
+
<p>
|
2541
|
+
Gets the value that is at the given index for the given tag in the given
|
2542
|
+
list.
|
2543
|
+
</p>
|
2544
|
+
<div class="variablelist"><table border="0">
|
2545
|
+
<col align="left" valign="top">
|
2546
|
+
<tbody>
|
2547
|
+
<tr>
|
2548
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2549
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2550
|
+
</tr>
|
2551
|
+
<tr>
|
2552
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2553
|
+
<td>tag to read out</td>
|
2554
|
+
</tr>
|
2555
|
+
<tr>
|
2556
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2557
|
+
<td>number of entry to read out</td>
|
2558
|
+
</tr>
|
2559
|
+
<tr>
|
2560
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2561
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2562
|
+
</td>
|
2563
|
+
</tr>
|
2564
|
+
<tr>
|
2565
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2566
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2567
|
+
given list.</td>
|
2568
|
+
</tr>
|
2569
|
+
</tbody>
|
2570
|
+
</table></div>
|
2571
|
+
</div>
|
2572
|
+
<hr>
|
2573
|
+
<div class="refsect2">
|
2574
|
+
<a name="gst-tag-list-get-long"></a><h3>gst_tag_list_get_long ()</h3>
|
2575
|
+
<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_tag_list_get_long (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2576
|
+
<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> *tag</code></em>,
|
2577
|
+
<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#glong"><span class="type">glong</span></a> *value</code></em>);</pre>
|
2578
|
+
<p>
|
2579
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2580
|
+
into one if multiple values are associated with the tag.
|
2581
|
+
</p>
|
2582
|
+
<div class="variablelist"><table border="0">
|
2583
|
+
<col align="left" valign="top">
|
2584
|
+
<tbody>
|
2585
|
+
<tr>
|
2586
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2587
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2588
|
+
</tr>
|
2589
|
+
<tr>
|
2590
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2591
|
+
<td>tag to read out</td>
|
2592
|
+
</tr>
|
2593
|
+
<tr>
|
2594
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2595
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2596
|
+
</td>
|
2597
|
+
</tr>
|
2598
|
+
<tr>
|
2599
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2600
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2601
|
+
given list.</td>
|
2602
|
+
</tr>
|
2603
|
+
</tbody>
|
2604
|
+
</table></div>
|
2605
|
+
</div>
|
2606
|
+
<hr>
|
2607
|
+
<div class="refsect2">
|
2608
|
+
<a name="gst-tag-list-get-long-index"></a><h3>gst_tag_list_get_long_index ()</h3>
|
2609
|
+
<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_tag_list_get_long_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2610
|
+
<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> *tag</code></em>,
|
2611
|
+
<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> index</code></em>,
|
2612
|
+
<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#glong"><span class="type">glong</span></a> *value</code></em>);</pre>
|
2613
|
+
<p>
|
2614
|
+
Gets the value that is at the given index for the given tag in the given
|
2615
|
+
list.
|
2616
|
+
</p>
|
2617
|
+
<div class="variablelist"><table border="0">
|
2618
|
+
<col align="left" valign="top">
|
2619
|
+
<tbody>
|
2620
|
+
<tr>
|
2621
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2622
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2623
|
+
</tr>
|
2624
|
+
<tr>
|
2625
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2626
|
+
<td>tag to read out</td>
|
2627
|
+
</tr>
|
2628
|
+
<tr>
|
2629
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2630
|
+
<td>number of entry to read out</td>
|
2631
|
+
</tr>
|
2632
|
+
<tr>
|
2633
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2634
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2635
|
+
</td>
|
2636
|
+
</tr>
|
2637
|
+
<tr>
|
2638
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2639
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2640
|
+
given list.</td>
|
2641
|
+
</tr>
|
2642
|
+
</tbody>
|
2643
|
+
</table></div>
|
2644
|
+
</div>
|
2645
|
+
<hr>
|
2646
|
+
<div class="refsect2">
|
2647
|
+
<a name="gst-tag-list-get-ulong"></a><h3>gst_tag_list_get_ulong ()</h3>
|
2648
|
+
<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_tag_list_get_ulong (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2649
|
+
<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> *tag</code></em>,
|
2650
|
+
<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#gulong"><span class="type">gulong</span></a> *value</code></em>);</pre>
|
2651
|
+
<p>
|
2652
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2653
|
+
into one if multiple values are associated with the tag.
|
2654
|
+
</p>
|
2655
|
+
<div class="variablelist"><table border="0">
|
2656
|
+
<col align="left" valign="top">
|
2657
|
+
<tbody>
|
2658
|
+
<tr>
|
2659
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2660
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2661
|
+
</tr>
|
2662
|
+
<tr>
|
2663
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2664
|
+
<td>tag to read out</td>
|
2665
|
+
</tr>
|
2666
|
+
<tr>
|
2667
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2668
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2669
|
+
</td>
|
2670
|
+
</tr>
|
2671
|
+
<tr>
|
2672
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2673
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2674
|
+
given list.</td>
|
2675
|
+
</tr>
|
2676
|
+
</tbody>
|
2677
|
+
</table></div>
|
2678
|
+
</div>
|
2679
|
+
<hr>
|
2680
|
+
<div class="refsect2">
|
2681
|
+
<a name="gst-tag-list-get-ulong-index"></a><h3>gst_tag_list_get_ulong_index ()</h3>
|
2682
|
+
<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_tag_list_get_ulong_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2683
|
+
<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> *tag</code></em>,
|
2684
|
+
<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> index</code></em>,
|
2685
|
+
<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#gulong"><span class="type">gulong</span></a> *value</code></em>);</pre>
|
2686
|
+
<p>
|
2687
|
+
Gets the value that is at the given index for the given tag in the given
|
2688
|
+
list.
|
2689
|
+
</p>
|
2690
|
+
<div class="variablelist"><table border="0">
|
2691
|
+
<col align="left" valign="top">
|
2692
|
+
<tbody>
|
2693
|
+
<tr>
|
2694
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2695
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2696
|
+
</tr>
|
2697
|
+
<tr>
|
2698
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2699
|
+
<td>tag to read out</td>
|
2700
|
+
</tr>
|
2701
|
+
<tr>
|
2702
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2703
|
+
<td>number of entry to read out</td>
|
2704
|
+
</tr>
|
2705
|
+
<tr>
|
2706
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2707
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2708
|
+
</td>
|
2709
|
+
</tr>
|
2710
|
+
<tr>
|
2711
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2712
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2713
|
+
given list.</td>
|
2714
|
+
</tr>
|
2715
|
+
</tbody>
|
2716
|
+
</table></div>
|
2717
|
+
</div>
|
2718
|
+
<hr>
|
2719
|
+
<div class="refsect2">
|
2720
|
+
<a name="gst-tag-list-get-int64"></a><h3>gst_tag_list_get_int64 ()</h3>
|
2721
|
+
<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_tag_list_get_int64 (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2722
|
+
<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> *tag</code></em>,
|
2723
|
+
<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#gint64"><span class="type">gint64</span></a> *value</code></em>);</pre>
|
2724
|
+
<p>
|
2725
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2726
|
+
into one if multiple values are associated with the tag.
|
2727
|
+
</p>
|
2728
|
+
<div class="variablelist"><table border="0">
|
2729
|
+
<col align="left" valign="top">
|
2730
|
+
<tbody>
|
2731
|
+
<tr>
|
2732
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2733
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2734
|
+
</tr>
|
2735
|
+
<tr>
|
2736
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2737
|
+
<td>tag to read out</td>
|
2738
|
+
</tr>
|
2739
|
+
<tr>
|
2740
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2741
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2742
|
+
</td>
|
2743
|
+
</tr>
|
2744
|
+
<tr>
|
2745
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2746
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2747
|
+
given list.</td>
|
2748
|
+
</tr>
|
2749
|
+
</tbody>
|
2750
|
+
</table></div>
|
2751
|
+
</div>
|
2752
|
+
<hr>
|
2753
|
+
<div class="refsect2">
|
2754
|
+
<a name="gst-tag-list-get-int64-index"></a><h3>gst_tag_list_get_int64_index ()</h3>
|
2755
|
+
<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_tag_list_get_int64_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2756
|
+
<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> *tag</code></em>,
|
2757
|
+
<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> index</code></em>,
|
2758
|
+
<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#gint64"><span class="type">gint64</span></a> *value</code></em>);</pre>
|
2759
|
+
<p>
|
2760
|
+
Gets the value that is at the given index for the given tag in the given
|
2761
|
+
list.
|
2762
|
+
</p>
|
2763
|
+
<div class="variablelist"><table border="0">
|
2764
|
+
<col align="left" valign="top">
|
2765
|
+
<tbody>
|
2766
|
+
<tr>
|
2767
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2768
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2769
|
+
</tr>
|
2770
|
+
<tr>
|
2771
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2772
|
+
<td>tag to read out</td>
|
2773
|
+
</tr>
|
2774
|
+
<tr>
|
2775
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2776
|
+
<td>number of entry to read out</td>
|
2777
|
+
</tr>
|
2778
|
+
<tr>
|
2779
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2780
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2781
|
+
</td>
|
2782
|
+
</tr>
|
2783
|
+
<tr>
|
2784
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2785
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2786
|
+
given list.</td>
|
2787
|
+
</tr>
|
2788
|
+
</tbody>
|
2789
|
+
</table></div>
|
2790
|
+
</div>
|
2791
|
+
<hr>
|
2792
|
+
<div class="refsect2">
|
2793
|
+
<a name="gst-tag-list-get-uint64"></a><h3>gst_tag_list_get_uint64 ()</h3>
|
2794
|
+
<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_tag_list_get_uint64 (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2795
|
+
<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> *tag</code></em>,
|
2796
|
+
<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#guint64"><span class="type">guint64</span></a> *value</code></em>);</pre>
|
2797
|
+
<p>
|
2798
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2799
|
+
into one if multiple values are associated with the tag.
|
2800
|
+
</p>
|
2801
|
+
<div class="variablelist"><table border="0">
|
2802
|
+
<col align="left" valign="top">
|
2803
|
+
<tbody>
|
2804
|
+
<tr>
|
2805
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2806
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2807
|
+
</tr>
|
2808
|
+
<tr>
|
2809
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2810
|
+
<td>tag to read out</td>
|
2811
|
+
</tr>
|
2812
|
+
<tr>
|
2813
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2814
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2815
|
+
</td>
|
2816
|
+
</tr>
|
2817
|
+
<tr>
|
2818
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2819
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2820
|
+
given list.</td>
|
2821
|
+
</tr>
|
2822
|
+
</tbody>
|
2823
|
+
</table></div>
|
2824
|
+
</div>
|
2825
|
+
<hr>
|
2826
|
+
<div class="refsect2">
|
2827
|
+
<a name="gst-tag-list-get-uint64-index"></a><h3>gst_tag_list_get_uint64_index ()</h3>
|
2828
|
+
<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_tag_list_get_uint64_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2829
|
+
<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> *tag</code></em>,
|
2830
|
+
<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> index</code></em>,
|
2831
|
+
<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#guint64"><span class="type">guint64</span></a> *value</code></em>);</pre>
|
2832
|
+
<p>
|
2833
|
+
Gets the value that is at the given index for the given tag in the given
|
2834
|
+
list.
|
2835
|
+
</p>
|
2836
|
+
<div class="variablelist"><table border="0">
|
2837
|
+
<col align="left" valign="top">
|
2838
|
+
<tbody>
|
2839
|
+
<tr>
|
2840
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2841
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2842
|
+
</tr>
|
2843
|
+
<tr>
|
2844
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2845
|
+
<td>tag to read out</td>
|
2846
|
+
</tr>
|
2847
|
+
<tr>
|
2848
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2849
|
+
<td>number of entry to read out</td>
|
2850
|
+
</tr>
|
2851
|
+
<tr>
|
2852
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2853
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2854
|
+
</td>
|
2855
|
+
</tr>
|
2856
|
+
<tr>
|
2857
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2858
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2859
|
+
given list.</td>
|
2860
|
+
</tr>
|
2861
|
+
</tbody>
|
2862
|
+
</table></div>
|
2863
|
+
</div>
|
2864
|
+
<hr>
|
2865
|
+
<div class="refsect2">
|
2866
|
+
<a name="gst-tag-list-get-float"></a><h3>gst_tag_list_get_float ()</h3>
|
2867
|
+
<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_tag_list_get_float (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2868
|
+
<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> *tag</code></em>,
|
2869
|
+
<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#gfloat"><span class="type">gfloat</span></a> *value</code></em>);</pre>
|
2870
|
+
<p>
|
2871
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2872
|
+
into one if multiple values are associated with the tag.
|
2873
|
+
</p>
|
2874
|
+
<div class="variablelist"><table border="0">
|
2875
|
+
<col align="left" valign="top">
|
2876
|
+
<tbody>
|
2877
|
+
<tr>
|
2878
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2879
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2880
|
+
</tr>
|
2881
|
+
<tr>
|
2882
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2883
|
+
<td>tag to read out</td>
|
2884
|
+
</tr>
|
2885
|
+
<tr>
|
2886
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2887
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2888
|
+
</td>
|
2889
|
+
</tr>
|
2890
|
+
<tr>
|
2891
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2892
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2893
|
+
given list.</td>
|
2894
|
+
</tr>
|
2895
|
+
</tbody>
|
2896
|
+
</table></div>
|
2897
|
+
</div>
|
2898
|
+
<hr>
|
2899
|
+
<div class="refsect2">
|
2900
|
+
<a name="gst-tag-list-get-float-index"></a><h3>gst_tag_list_get_float_index ()</h3>
|
2901
|
+
<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_tag_list_get_float_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2902
|
+
<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> *tag</code></em>,
|
2903
|
+
<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> index</code></em>,
|
2904
|
+
<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#gfloat"><span class="type">gfloat</span></a> *value</code></em>);</pre>
|
2905
|
+
<p>
|
2906
|
+
Gets the value that is at the given index for the given tag in the given
|
2907
|
+
list.
|
2908
|
+
</p>
|
2909
|
+
<div class="variablelist"><table border="0">
|
2910
|
+
<col align="left" valign="top">
|
2911
|
+
<tbody>
|
2912
|
+
<tr>
|
2913
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2914
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2915
|
+
</tr>
|
2916
|
+
<tr>
|
2917
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2918
|
+
<td>tag to read out</td>
|
2919
|
+
</tr>
|
2920
|
+
<tr>
|
2921
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2922
|
+
<td>number of entry to read out</td>
|
2923
|
+
</tr>
|
2924
|
+
<tr>
|
2925
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2926
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2927
|
+
</td>
|
2928
|
+
</tr>
|
2929
|
+
<tr>
|
2930
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2931
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2932
|
+
given list.</td>
|
2933
|
+
</tr>
|
2934
|
+
</tbody>
|
2935
|
+
</table></div>
|
2936
|
+
</div>
|
2937
|
+
<hr>
|
2938
|
+
<div class="refsect2">
|
2939
|
+
<a name="gst-tag-list-get-double"></a><h3>gst_tag_list_get_double ()</h3>
|
2940
|
+
<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_tag_list_get_double (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2941
|
+
<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> *tag</code></em>,
|
2942
|
+
<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#gdouble"><span class="type">gdouble</span></a> *value</code></em>);</pre>
|
2943
|
+
<p>
|
2944
|
+
Copies the contents for the given tag into the value, merging multiple values
|
2945
|
+
into one if multiple values are associated with the tag.
|
2946
|
+
</p>
|
2947
|
+
<div class="variablelist"><table border="0">
|
2948
|
+
<col align="left" valign="top">
|
2949
|
+
<tbody>
|
2950
|
+
<tr>
|
2951
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2952
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2953
|
+
</tr>
|
2954
|
+
<tr>
|
2955
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2956
|
+
<td>tag to read out</td>
|
2957
|
+
</tr>
|
2958
|
+
<tr>
|
2959
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2960
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2961
|
+
</td>
|
2962
|
+
</tr>
|
2963
|
+
<tr>
|
2964
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2965
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
2966
|
+
given list.</td>
|
2967
|
+
</tr>
|
2968
|
+
</tbody>
|
2969
|
+
</table></div>
|
2970
|
+
</div>
|
2971
|
+
<hr>
|
2972
|
+
<div class="refsect2">
|
2973
|
+
<a name="gst-tag-list-get-double-index"></a><h3>gst_tag_list_get_double_index ()</h3>
|
2974
|
+
<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_tag_list_get_double_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
2975
|
+
<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> *tag</code></em>,
|
2976
|
+
<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> index</code></em>,
|
2977
|
+
<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#gdouble"><span class="type">gdouble</span></a> *value</code></em>);</pre>
|
2978
|
+
<p>
|
2979
|
+
Gets the value that is at the given index for the given tag in the given
|
2980
|
+
list.
|
2981
|
+
</p>
|
2982
|
+
<div class="variablelist"><table border="0">
|
2983
|
+
<col align="left" valign="top">
|
2984
|
+
<tbody>
|
2985
|
+
<tr>
|
2986
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2987
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
2988
|
+
</tr>
|
2989
|
+
<tr>
|
2990
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
2991
|
+
<td>tag to read out</td>
|
2992
|
+
</tr>
|
2993
|
+
<tr>
|
2994
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
2995
|
+
<td>number of entry to read out</td>
|
2996
|
+
</tr>
|
2997
|
+
<tr>
|
2998
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2999
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
3000
|
+
</td>
|
3001
|
+
</tr>
|
3002
|
+
<tr>
|
3003
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3004
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
3005
|
+
given list.</td>
|
3006
|
+
</tr>
|
3007
|
+
</tbody>
|
3008
|
+
</table></div>
|
3009
|
+
</div>
|
3010
|
+
<hr>
|
3011
|
+
<div class="refsect2">
|
3012
|
+
<a name="gst-tag-list-get-string"></a><h3>gst_tag_list_get_string ()</h3>
|
3013
|
+
<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_tag_list_get_string (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3014
|
+
<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> *tag</code></em>,
|
3015
|
+
<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#gchar"><span class="type">gchar</span></a> **value</code></em>);</pre>
|
3016
|
+
<p>
|
3017
|
+
Copies the contents for the given tag into the value, possibly merging
|
3018
|
+
multiple values into one if multiple values are associated with the tag.
|
3019
|
+
</p>
|
3020
|
+
<p>
|
3021
|
+
Use gst_tag_list_get_string_index (list, tag, 0, value) if you want
|
3022
|
+
to retrieve the first string associated with this tag unmodified.
|
3023
|
+
</p>
|
3024
|
+
<p>
|
3025
|
+
The resulting string in <em class="parameter"><code>value</code></em> will be in UTF-8 encoding and should be
|
3026
|
+
freed by the caller using g_free when no longer needed. Since 0.10.24 the
|
3027
|
+
returned string is also guaranteed to be non-NULL and non-empty.
|
3028
|
+
</p>
|
3029
|
+
<p>
|
3030
|
+
Free-function: g_free
|
3031
|
+
</p>
|
3032
|
+
<div class="variablelist"><table border="0">
|
3033
|
+
<col align="left" valign="top">
|
3034
|
+
<tbody>
|
3035
|
+
<tr>
|
3036
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3037
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3038
|
+
</tr>
|
3039
|
+
<tr>
|
3040
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3041
|
+
<td>tag to read out</td>
|
3042
|
+
</tr>
|
3043
|
+
<tr>
|
3044
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3045
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> callee-allocates][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
3046
|
+
</td>
|
3047
|
+
</tr>
|
3048
|
+
<tr>
|
3049
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3050
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
3051
|
+
given list.</td>
|
3052
|
+
</tr>
|
3053
|
+
</tbody>
|
3054
|
+
</table></div>
|
3055
|
+
</div>
|
3056
|
+
<hr>
|
3057
|
+
<div class="refsect2">
|
3058
|
+
<a name="gst-tag-list-get-string-index"></a><h3>gst_tag_list_get_string_index ()</h3>
|
3059
|
+
<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_tag_list_get_string_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3060
|
+
<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> *tag</code></em>,
|
3061
|
+
<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> index</code></em>,
|
3062
|
+
<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#gchar"><span class="type">gchar</span></a> **value</code></em>);</pre>
|
3063
|
+
<p>
|
3064
|
+
Gets the value that is at the given index for the given tag in the given
|
3065
|
+
list.
|
3066
|
+
</p>
|
3067
|
+
<p>
|
3068
|
+
The resulting string in <em class="parameter"><code>value</code></em> will be in UTF-8 encoding and should be
|
3069
|
+
freed by the caller using g_free when no longer needed. Since 0.10.24 the
|
3070
|
+
returned string is also guaranteed to be non-NULL and non-empty.
|
3071
|
+
</p>
|
3072
|
+
<p>
|
3073
|
+
Free-function: g_free
|
3074
|
+
</p>
|
3075
|
+
<div class="variablelist"><table border="0">
|
3076
|
+
<col align="left" valign="top">
|
3077
|
+
<tbody>
|
3078
|
+
<tr>
|
3079
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3080
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3081
|
+
</tr>
|
3082
|
+
<tr>
|
3083
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3084
|
+
<td>tag to read out</td>
|
3085
|
+
</tr>
|
3086
|
+
<tr>
|
3087
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
3088
|
+
<td>number of entry to read out</td>
|
3089
|
+
</tr>
|
3090
|
+
<tr>
|
3091
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3092
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> callee-allocates][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
3093
|
+
</td>
|
3094
|
+
</tr>
|
3095
|
+
<tr>
|
3096
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3097
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
3098
|
+
given list.</td>
|
3099
|
+
</tr>
|
3100
|
+
</tbody>
|
3101
|
+
</table></div>
|
3102
|
+
</div>
|
3103
|
+
<hr>
|
3104
|
+
<div class="refsect2">
|
3105
|
+
<a name="gst-tag-list-peek-string-index"></a><h3>gst_tag_list_peek_string_index ()</h3>
|
3106
|
+
<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_tag_list_peek_string_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3107
|
+
<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> *tag</code></em>,
|
3108
|
+
<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> index</code></em>,
|
3109
|
+
<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> **value</code></em>);</pre>
|
3110
|
+
<p>
|
3111
|
+
Peeks at the value that is at the given index for the given tag in the given
|
3112
|
+
list.
|
3113
|
+
</p>
|
3114
|
+
<p>
|
3115
|
+
The resulting string in <em class="parameter"><code>value</code></em> will be in UTF-8 encoding and doesn't need
|
3116
|
+
to be freed by the caller. The returned string is also guaranteed to
|
3117
|
+
be non-NULL and non-empty.
|
3118
|
+
</p>
|
3119
|
+
<div class="variablelist"><table border="0">
|
3120
|
+
<col align="left" valign="top">
|
3121
|
+
<tbody>
|
3122
|
+
<tr>
|
3123
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3124
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3125
|
+
</tr>
|
3126
|
+
<tr>
|
3127
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3128
|
+
<td>tag to read out</td>
|
3129
|
+
</tr>
|
3130
|
+
<tr>
|
3131
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
3132
|
+
<td>number of entry to read out</td>
|
3133
|
+
</tr>
|
3134
|
+
<tr>
|
3135
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3136
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
3137
|
+
</td>
|
3138
|
+
</tr>
|
3139
|
+
<tr>
|
3140
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3141
|
+
<td>TRUE, if a value was set, FALSE if the tag didn't exist in the
|
3142
|
+
given list.</td>
|
3143
|
+
</tr>
|
3144
|
+
</tbody>
|
3145
|
+
</table></div>
|
3146
|
+
</div>
|
3147
|
+
<hr>
|
3148
|
+
<div class="refsect2">
|
3149
|
+
<a name="gst-tag-list-get-pointer"></a><h3>gst_tag_list_get_pointer ()</h3>
|
3150
|
+
<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_tag_list_get_pointer (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3151
|
+
<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> *tag</code></em>,
|
3152
|
+
<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> *value</code></em>);</pre>
|
3153
|
+
<p>
|
3154
|
+
Copies the contents for the given tag into the value, merging multiple values
|
3155
|
+
into one if multiple values are associated with the tag.
|
3156
|
+
</p>
|
3157
|
+
<div class="variablelist"><table border="0">
|
3158
|
+
<col align="left" valign="top">
|
3159
|
+
<tbody>
|
3160
|
+
<tr>
|
3161
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3162
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3163
|
+
</tr>
|
3164
|
+
<tr>
|
3165
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3166
|
+
<td>tag to read out</td>
|
3167
|
+
</tr>
|
3168
|
+
<tr>
|
3169
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3170
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
3171
|
+
</td>
|
3172
|
+
</tr>
|
3173
|
+
<tr>
|
3174
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3175
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
3176
|
+
given list.</td>
|
3177
|
+
</tr>
|
3178
|
+
</tbody>
|
3179
|
+
</table></div>
|
3180
|
+
</div>
|
3181
|
+
<hr>
|
3182
|
+
<div class="refsect2">
|
3183
|
+
<a name="gst-tag-list-get-pointer-index"></a><h3>gst_tag_list_get_pointer_index ()</h3>
|
3184
|
+
<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_tag_list_get_pointer_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3185
|
+
<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> *tag</code></em>,
|
3186
|
+
<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> index</code></em>,
|
3187
|
+
<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> *value</code></em>);</pre>
|
3188
|
+
<p>
|
3189
|
+
Gets the value that is at the given index for the given tag in the given
|
3190
|
+
list.
|
3191
|
+
</p>
|
3192
|
+
<div class="variablelist"><table border="0">
|
3193
|
+
<col align="left" valign="top">
|
3194
|
+
<tbody>
|
3195
|
+
<tr>
|
3196
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3197
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3198
|
+
</tr>
|
3199
|
+
<tr>
|
3200
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3201
|
+
<td>tag to read out</td>
|
3202
|
+
</tr>
|
3203
|
+
<tr>
|
3204
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
3205
|
+
<td>number of entry to read out</td>
|
3206
|
+
</tr>
|
3207
|
+
<tr>
|
3208
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3209
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
3210
|
+
</td>
|
3211
|
+
</tr>
|
3212
|
+
<tr>
|
3213
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3214
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
3215
|
+
given list.</td>
|
3216
|
+
</tr>
|
3217
|
+
</tbody>
|
3218
|
+
</table></div>
|
3219
|
+
</div>
|
3220
|
+
<hr>
|
3221
|
+
<div class="refsect2">
|
3222
|
+
<a name="gst-tag-list-get-date"></a><h3>gst_tag_list_get_date ()</h3>
|
3223
|
+
<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_tag_list_get_date (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3224
|
+
<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> *tag</code></em>,
|
3225
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GDate"><span class="type">GDate</span></a> **value</code></em>);</pre>
|
3226
|
+
<p>
|
3227
|
+
Copies the first date for the given tag in the taglist into the variable
|
3228
|
+
pointed to by <em class="parameter"><code>value</code></em>. Free the date with <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#g-date-free"><code class="function">g_date_free()</code></a> when it is no longer
|
3229
|
+
needed.
|
3230
|
+
</p>
|
3231
|
+
<p>
|
3232
|
+
Free-function: g_date_free
|
3233
|
+
</p>
|
3234
|
+
<div class="variablelist"><table border="0">
|
3235
|
+
<col align="left" valign="top">
|
3236
|
+
<tbody>
|
3237
|
+
<tr>
|
3238
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3239
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3240
|
+
</tr>
|
3241
|
+
<tr>
|
3242
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3243
|
+
<td>tag to read out</td>
|
3244
|
+
</tr>
|
3245
|
+
<tr>
|
3246
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3247
|
+
<td>address of a GDate pointer
|
3248
|
+
variable to store the result into. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> callee-allocates][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
3249
|
+
</td>
|
3250
|
+
</tr>
|
3251
|
+
<tr>
|
3252
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3253
|
+
<td>TRUE, if a date was copied, FALSE if the tag didn't exist in the
|
3254
|
+
given list or if it was <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>.</td>
|
3255
|
+
</tr>
|
3256
|
+
</tbody>
|
3257
|
+
</table></div>
|
3258
|
+
</div>
|
3259
|
+
<hr>
|
3260
|
+
<div class="refsect2">
|
3261
|
+
<a name="gst-tag-list-get-date-index"></a><h3>gst_tag_list_get_date_index ()</h3>
|
3262
|
+
<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_tag_list_get_date_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3263
|
+
<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> *tag</code></em>,
|
3264
|
+
<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> index</code></em>,
|
3265
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GDate"><span class="type">GDate</span></a> **value</code></em>);</pre>
|
3266
|
+
<p>
|
3267
|
+
Gets the date that is at the given index for the given tag in the given
|
3268
|
+
list and copies it into the variable pointed to by <em class="parameter"><code>value</code></em>. Free the date
|
3269
|
+
with <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#g-date-free"><code class="function">g_date_free()</code></a> when it is no longer needed.
|
3270
|
+
</p>
|
3271
|
+
<p>
|
3272
|
+
Free-function: g_date_free
|
3273
|
+
</p>
|
3274
|
+
<div class="variablelist"><table border="0">
|
3275
|
+
<col align="left" valign="top">
|
3276
|
+
<tbody>
|
3277
|
+
<tr>
|
3278
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3279
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3280
|
+
</tr>
|
3281
|
+
<tr>
|
3282
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3283
|
+
<td>tag to read out</td>
|
3284
|
+
</tr>
|
3285
|
+
<tr>
|
3286
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
3287
|
+
<td>number of entry to read out</td>
|
3288
|
+
</tr>
|
3289
|
+
<tr>
|
3290
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3291
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> callee-allocates][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
3292
|
+
</td>
|
3293
|
+
</tr>
|
3294
|
+
<tr>
|
3295
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3296
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
3297
|
+
given list or if it was <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>.</td>
|
3298
|
+
</tr>
|
3299
|
+
</tbody>
|
3300
|
+
</table></div>
|
3301
|
+
</div>
|
3302
|
+
<hr>
|
3303
|
+
<div class="refsect2">
|
3304
|
+
<a name="gst-tag-list-get-date-time"></a><h3>gst_tag_list_get_date_time ()</h3>
|
3305
|
+
<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_tag_list_get_date_time (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3306
|
+
<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> *tag</code></em>,
|
3307
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstDateTime.html#GstDateTime" title="GstDateTime"><span class="type">GstDateTime</span></a> **value</code></em>);</pre>
|
3308
|
+
<p>
|
3309
|
+
Copies the first datetime for the given tag in the taglist into the variable
|
3310
|
+
pointed to by <em class="parameter"><code>value</code></em>. Unref the date with <a class="link" href="gstreamer-GstDateTime.html#gst-date-time-unref" title="gst_date_time_unref ()"><code class="function">gst_date_time_unref()</code></a> when
|
3311
|
+
it is no longer needed.
|
3312
|
+
</p>
|
3313
|
+
<p>
|
3314
|
+
Free-function: gst_date_time_unref
|
3315
|
+
</p>
|
3316
|
+
<div class="variablelist"><table border="0">
|
3317
|
+
<col align="left" valign="top">
|
3318
|
+
<tbody>
|
3319
|
+
<tr>
|
3320
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3321
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3322
|
+
</tr>
|
3323
|
+
<tr>
|
3324
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3325
|
+
<td>tag to read out</td>
|
3326
|
+
</tr>
|
3327
|
+
<tr>
|
3328
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3329
|
+
<td>address of a <a class="link" href="gstreamer-GstDateTime.html#GstDateTime" title="GstDateTime"><span class="type">GstDateTime</span></a>
|
3330
|
+
pointer variable to store the result into. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> callee-allocates][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
3331
|
+
</td>
|
3332
|
+
</tr>
|
3333
|
+
<tr>
|
3334
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3335
|
+
<td>TRUE, if a datetime was copied, FALSE if the tag didn't exist in
|
3336
|
+
thegiven list or if it was <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>.</td>
|
3337
|
+
</tr>
|
3338
|
+
</tbody>
|
3339
|
+
</table></div>
|
3340
|
+
<p class="since">Since 0.10.31</p>
|
3341
|
+
</div>
|
3342
|
+
<hr>
|
3343
|
+
<div class="refsect2">
|
3344
|
+
<a name="gst-tag-list-get-date-time-index"></a><h3>gst_tag_list_get_date_time_index ()</h3>
|
3345
|
+
<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_tag_list_get_date_time_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3346
|
+
<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> *tag</code></em>,
|
3347
|
+
<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> index</code></em>,
|
3348
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstDateTime.html#GstDateTime" title="GstDateTime"><span class="type">GstDateTime</span></a> **value</code></em>);</pre>
|
3349
|
+
<p>
|
3350
|
+
Gets the datetime that is at the given index for the given tag in the given
|
3351
|
+
list and copies it into the variable pointed to by <em class="parameter"><code>value</code></em>. Unref the datetime
|
3352
|
+
with <a class="link" href="gstreamer-GstDateTime.html#gst-date-time-unref" title="gst_date_time_unref ()"><code class="function">gst_date_time_unref()</code></a> when it is no longer needed.
|
3353
|
+
</p>
|
3354
|
+
<p>
|
3355
|
+
Free-function: gst_date_time_unref
|
3356
|
+
</p>
|
3357
|
+
<div class="variablelist"><table border="0">
|
3358
|
+
<col align="left" valign="top">
|
3359
|
+
<tbody>
|
3360
|
+
<tr>
|
3361
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3362
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3363
|
+
</tr>
|
3364
|
+
<tr>
|
3365
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3366
|
+
<td>tag to read out</td>
|
3367
|
+
</tr>
|
3368
|
+
<tr>
|
3369
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
3370
|
+
<td>number of entry to read out</td>
|
3371
|
+
</tr>
|
3372
|
+
<tr>
|
3373
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3374
|
+
<td>location for the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> callee-allocates][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
3375
|
+
</td>
|
3376
|
+
</tr>
|
3377
|
+
<tr>
|
3378
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3379
|
+
<td>TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
3380
|
+
given list or if it was <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>.</td>
|
3381
|
+
</tr>
|
3382
|
+
</tbody>
|
3383
|
+
</table></div>
|
3384
|
+
<p class="since">Since 0.10.31</p>
|
3385
|
+
</div>
|
3386
|
+
<hr>
|
3387
|
+
<div class="refsect2">
|
3388
|
+
<a name="gst-tag-list-get-buffer"></a><h3>gst_tag_list_get_buffer ()</h3>
|
3389
|
+
<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_tag_list_get_buffer (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3390
|
+
<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> *tag</code></em>,
|
3391
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstBuffer.html#GstBuffer" title="struct GstBuffer"><span class="type">GstBuffer</span></a> **value</code></em>);</pre>
|
3392
|
+
<p>
|
3393
|
+
Copies the first buffer for the given tag in the taglist into the variable
|
3394
|
+
pointed to by <em class="parameter"><code>value</code></em>. Free the buffer with <a class="link" href="gstreamer-GstBuffer.html#gst-buffer-unref" title="gst_buffer_unref ()"><code class="function">gst_buffer_unref()</code></a> when it is
|
3395
|
+
no longer needed.
|
3396
|
+
</p>
|
3397
|
+
<p>
|
3398
|
+
Free-function: gst_buffer_unref
|
3399
|
+
</p>
|
3400
|
+
<div class="variablelist"><table border="0">
|
3401
|
+
<col align="left" valign="top">
|
3402
|
+
<tbody>
|
3403
|
+
<tr>
|
3404
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3405
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3406
|
+
</tr>
|
3407
|
+
<tr>
|
3408
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3409
|
+
<td>tag to read out</td>
|
3410
|
+
</tr>
|
3411
|
+
<tr>
|
3412
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3413
|
+
<td>address of a GstBuffer
|
3414
|
+
pointer variable to store the result into. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> callee-allocates][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
3415
|
+
</td>
|
3416
|
+
</tr>
|
3417
|
+
<tr>
|
3418
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3419
|
+
<td>TRUE, if a buffer was copied, FALSE if the tag didn't exist in the
|
3420
|
+
given list or if it was <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>.</td>
|
3421
|
+
</tr>
|
3422
|
+
</tbody>
|
3423
|
+
</table></div>
|
3424
|
+
<p class="since">Since 0.10.23</p>
|
3425
|
+
</div>
|
3426
|
+
<hr>
|
3427
|
+
<div class="refsect2">
|
3428
|
+
<a name="gst-tag-list-get-buffer-index"></a><h3>gst_tag_list_get_buffer_index ()</h3>
|
3429
|
+
<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_tag_list_get_buffer_index (<em class="parameter"><code>const <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>,
|
3430
|
+
<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> *tag</code></em>,
|
3431
|
+
<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> index</code></em>,
|
3432
|
+
<em class="parameter"><code><a class="link" href="gstreamer-GstBuffer.html#GstBuffer" title="struct GstBuffer"><span class="type">GstBuffer</span></a> **value</code></em>);</pre>
|
3433
|
+
<p>
|
3434
|
+
Gets the buffer that is at the given index for the given tag in the given
|
3435
|
+
list and copies it into the variable pointed to by <em class="parameter"><code>value</code></em>. Free the buffer
|
3436
|
+
with <a class="link" href="gstreamer-GstBuffer.html#gst-buffer-unref" title="gst_buffer_unref ()"><code class="function">gst_buffer_unref()</code></a> when it is no longer needed.
|
3437
|
+
</p>
|
3438
|
+
<p>
|
3439
|
+
Free-function: gst_buffer_unref
|
3440
|
+
</p>
|
3441
|
+
<div class="variablelist"><table border="0">
|
3442
|
+
<col align="left" valign="top">
|
3443
|
+
<tbody>
|
3444
|
+
<tr>
|
3445
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
3446
|
+
<td>a <a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> to get the tag from</td>
|
3447
|
+
</tr>
|
3448
|
+
<tr>
|
3449
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3450
|
+
<td>tag to read out</td>
|
3451
|
+
</tr>
|
3452
|
+
<tr>
|
3453
|
+
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
|
3454
|
+
<td>number of entry to read out</td>
|
3455
|
+
</tr>
|
3456
|
+
<tr>
|
3457
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
3458
|
+
<td>address of a GstBuffer
|
3459
|
+
pointer variable to store the result into. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym> callee-allocates][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
3460
|
+
</td>
|
3461
|
+
</tr>
|
3462
|
+
<tr>
|
3463
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3464
|
+
<td>TRUE, if a buffer was copied, FALSE if the tag didn't exist in the
|
3465
|
+
given list or if it was <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>.</td>
|
3466
|
+
</tr>
|
3467
|
+
</tbody>
|
3468
|
+
</table></div>
|
3469
|
+
<p class="since">Since 0.10.23</p>
|
3470
|
+
</div>
|
3471
|
+
</div>
|
3472
|
+
</div>
|
3473
|
+
<div class="footer">
|
3474
|
+
<hr>
|
3475
|
+
Generated by GTK-Doc V1.17</div>
|
3476
|
+
</body>
|
3477
|
+
</html>
|