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,1459 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
Network Working Group L. Barbato
|
8
|
+
Request for Comments: 5215 Xiph
|
9
|
+
Category: Standards Track August 2008
|
10
|
+
|
11
|
+
|
12
|
+
RTP Payload Format for Vorbis Encoded Audio
|
13
|
+
|
14
|
+
Status of This Memo
|
15
|
+
|
16
|
+
This document specifies an Internet standards track protocol for the
|
17
|
+
Internet community, and requests discussion and suggestions for
|
18
|
+
improvements. Please refer to the current edition of the "Internet
|
19
|
+
Official Protocol Standards" (STD 1) for the standardization state
|
20
|
+
and status of this protocol. Distribution of this memo is unlimited.
|
21
|
+
|
22
|
+
Abstract
|
23
|
+
|
24
|
+
This document describes an RTP payload format for transporting Vorbis
|
25
|
+
encoded audio. It details the RTP encapsulation mechanism for raw
|
26
|
+
Vorbis data and the delivery mechanisms for the decoder probability
|
27
|
+
model (referred to as a codebook), as well as other setup
|
28
|
+
information.
|
29
|
+
|
30
|
+
Also included within this memo are media type registrations and the
|
31
|
+
details necessary for the use of Vorbis with the Session Description
|
32
|
+
Protocol (SDP).
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
Barbato Standards Track [Page 1]
|
59
|
+
|
60
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
61
|
+
|
62
|
+
|
63
|
+
Table of Contents
|
64
|
+
|
65
|
+
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3
|
66
|
+
1.1. Conformance and Document Conventions . . . . . . . . . . . 3
|
67
|
+
2. Payload Format . . . . . . . . . . . . . . . . . . . . . . . . 3
|
68
|
+
2.1. RTP Header . . . . . . . . . . . . . . . . . . . . . . . . 4
|
69
|
+
2.2. Payload Header . . . . . . . . . . . . . . . . . . . . . . 5
|
70
|
+
2.3. Payload Data . . . . . . . . . . . . . . . . . . . . . . . 6
|
71
|
+
2.4. Example RTP Packet . . . . . . . . . . . . . . . . . . . . 8
|
72
|
+
3. Configuration Headers . . . . . . . . . . . . . . . . . . . . 8
|
73
|
+
3.1. In-band Header Transmission . . . . . . . . . . . . . . . 9
|
74
|
+
3.1.1. Packed Configuration . . . . . . . . . . . . . . . . . 10
|
75
|
+
3.2. Out of Band Transmission . . . . . . . . . . . . . . . . . 12
|
76
|
+
3.2.1. Packed Headers . . . . . . . . . . . . . . . . . . . . 12
|
77
|
+
3.3. Loss of Configuration Headers . . . . . . . . . . . . . . 13
|
78
|
+
4. Comment Headers . . . . . . . . . . . . . . . . . . . . . . . 13
|
79
|
+
5. Frame Packetization . . . . . . . . . . . . . . . . . . . . . 14
|
80
|
+
5.1. Example Fragmented Vorbis Packet . . . . . . . . . . . . . 15
|
81
|
+
5.2. Packet Loss . . . . . . . . . . . . . . . . . . . . . . . 17
|
82
|
+
6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 18
|
83
|
+
6.1. Packed Headers IANA Considerations . . . . . . . . . . . . 19
|
84
|
+
7. SDP Related Considerations . . . . . . . . . . . . . . . . . . 20
|
85
|
+
7.1. Mapping Media Type Parameters into SDP . . . . . . . . . . 20
|
86
|
+
7.1.1. SDP Example . . . . . . . . . . . . . . . . . . . . . 21
|
87
|
+
7.2. Usage with the SDP Offer/Answer Model . . . . . . . . . . 22
|
88
|
+
8. Congestion Control . . . . . . . . . . . . . . . . . . . . . . 22
|
89
|
+
9. Example . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
|
90
|
+
9.1. Stream Radio . . . . . . . . . . . . . . . . . . . . . . . 22
|
91
|
+
10. Security Considerations . . . . . . . . . . . . . . . . . . . 23
|
92
|
+
11. Copying Conditions . . . . . . . . . . . . . . . . . . . . . . 23
|
93
|
+
12. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . 23
|
94
|
+
13. References . . . . . . . . . . . . . . . . . . . . . . . . . . 24
|
95
|
+
13.1. Normative References . . . . . . . . . . . . . . . . . . . 24
|
96
|
+
13.2. Informative References . . . . . . . . . . . . . . . . . . 25
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
Barbato Standards Track [Page 2]
|
115
|
+
|
116
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
117
|
+
|
118
|
+
|
119
|
+
1. Introduction
|
120
|
+
|
121
|
+
Vorbis is a general purpose perceptual audio codec intended to allow
|
122
|
+
maximum encoder flexibility, thus allowing it to scale competitively
|
123
|
+
over an exceptionally wide range of bit rates. At the high quality/
|
124
|
+
bitrate end of the scale (CD or DAT rate stereo, 16/24 bits), it is
|
125
|
+
in the same league as MPEG-4 AAC. Vorbis is also intended for lower
|
126
|
+
and higher sample rates (from 8kHz telephony to 192kHz digital
|
127
|
+
masters) and a range of channel representations (monaural,
|
128
|
+
polyphonic, stereo, quadraphonic, 5.1, ambisonic, or up to 255
|
129
|
+
discrete channels).
|
130
|
+
|
131
|
+
Vorbis encoded audio is generally encapsulated within an Ogg format
|
132
|
+
bitstream [RFC3533], which provides framing and synchronization. For
|
133
|
+
the purposes of RTP transport, this layer is unnecessary, and so raw
|
134
|
+
Vorbis packets are used in the payload.
|
135
|
+
|
136
|
+
1.1. Conformance and Document Conventions
|
137
|
+
|
138
|
+
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
|
139
|
+
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
|
140
|
+
document are to be interpreted as described in BCP 14, [RFC2119] and
|
141
|
+
indicate requirement levels for compliant implementations.
|
142
|
+
Requirements apply to all implementations unless otherwise stated.
|
143
|
+
|
144
|
+
An implementation is a software module that supports one of the media
|
145
|
+
types defined in this document. Software modules may support
|
146
|
+
multiple media types, but conformance is considered individually for
|
147
|
+
each type.
|
148
|
+
|
149
|
+
Implementations that fail to satisfy one or more "MUST" requirements
|
150
|
+
are considered non-compliant. Implementations that satisfy all
|
151
|
+
"MUST" requirements, but fail to satisfy one or more "SHOULD"
|
152
|
+
requirements, are said to be "conditionally compliant". All other
|
153
|
+
implementations are "unconditionally compliant".
|
154
|
+
|
155
|
+
2. Payload Format
|
156
|
+
|
157
|
+
For RTP-based transport of Vorbis-encoded audio, the standard RTP
|
158
|
+
header is followed by a 4-octet payload header, and then the payload
|
159
|
+
data. The payload headers are used to associate the Vorbis data with
|
160
|
+
its associated decoding codebooks as well as indicate if the
|
161
|
+
following packet contains fragmented Vorbis data and/or the number of
|
162
|
+
whole Vorbis data frames. The payload data contains the raw Vorbis
|
163
|
+
bitstream information. There are 3 types of Vorbis data; an RTP
|
164
|
+
payload MUST contain just one of them at a time.
|
165
|
+
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
|
170
|
+
Barbato Standards Track [Page 3]
|
171
|
+
|
172
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
173
|
+
|
174
|
+
|
175
|
+
2.1. RTP Header
|
176
|
+
|
177
|
+
The format of the RTP header is specified in [RFC3550] and shown in
|
178
|
+
Figure 1. This payload format uses the fields of the header in a
|
179
|
+
manner consistent with that specification.
|
180
|
+
|
181
|
+
0 1 2 3
|
182
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
183
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
184
|
+
|V=2|P|X| CC |M| PT | sequence number |
|
185
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
186
|
+
| timestamp |
|
187
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
188
|
+
| synchronization source (SSRC) identifier |
|
189
|
+
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
|
190
|
+
| contributing source (CSRC) identifiers |
|
191
|
+
| ... |
|
192
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
193
|
+
|
194
|
+
Figure 1: RTP Header
|
195
|
+
|
196
|
+
The RTP header begins with an octet of fields (V, P, X, and CC) to
|
197
|
+
support specialized RTP uses (see [RFC3550] and [RFC3551] for
|
198
|
+
details). For Vorbis RTP, the following values are used.
|
199
|
+
|
200
|
+
Version (V): 2 bits
|
201
|
+
|
202
|
+
This field identifies the version of RTP. The version used by this
|
203
|
+
specification is two (2).
|
204
|
+
|
205
|
+
Padding (P): 1 bit
|
206
|
+
|
207
|
+
Padding MAY be used with this payload format according to Section 5.1
|
208
|
+
of [RFC3550].
|
209
|
+
|
210
|
+
Extension (X): 1 bit
|
211
|
+
|
212
|
+
The Extension bit is used in accordance with [RFC3550].
|
213
|
+
|
214
|
+
CSRC count (CC): 4 bits
|
215
|
+
|
216
|
+
The CSRC count is used in accordance with [RFC3550].
|
217
|
+
|
218
|
+
Marker (M): 1 bit
|
219
|
+
|
220
|
+
Set to zero. Audio silence suppression is not used. This conforms
|
221
|
+
to Section 4.1 of [VORBIS-SPEC-REF].
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
|
226
|
+
Barbato Standards Track [Page 4]
|
227
|
+
|
228
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
229
|
+
|
230
|
+
|
231
|
+
Payload Type (PT): 7 bits
|
232
|
+
|
233
|
+
An RTP profile for a class of applications is expected to assign a
|
234
|
+
payload type for this format, or a dynamically allocated payload type
|
235
|
+
SHOULD be chosen that designates the payload as Vorbis.
|
236
|
+
|
237
|
+
Sequence number: 16 bits
|
238
|
+
|
239
|
+
The sequence number increments by one for each RTP data packet sent,
|
240
|
+
and may be used by the receiver to detect packet loss and to restore
|
241
|
+
the packet sequence. This field is detailed further in [RFC3550].
|
242
|
+
|
243
|
+
Timestamp: 32 bits
|
244
|
+
|
245
|
+
A timestamp representing the sampling time of the first sample of the
|
246
|
+
first Vorbis packet in the RTP payload. The clock frequency MUST be
|
247
|
+
set to the sample rate of the encoded audio data and is conveyed out-
|
248
|
+
of-band (e.g., as an SDP parameter).
|
249
|
+
|
250
|
+
SSRC/CSRC identifiers:
|
251
|
+
|
252
|
+
These two fields, 32 bits each with one SSRC field and a maximum of
|
253
|
+
16 CSRC fields, are as defined in [RFC3550].
|
254
|
+
|
255
|
+
2.2. Payload Header
|
256
|
+
|
257
|
+
The 4 octets following the RTP Header section are the Payload Header.
|
258
|
+
This header is split into a number of bit fields detailing the format
|
259
|
+
of the following payload data packets.
|
260
|
+
|
261
|
+
0 1 2 3
|
262
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
263
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
264
|
+
| Ident | F |VDT|# pkts.|
|
265
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
266
|
+
|
267
|
+
Figure 2: Payload Header
|
268
|
+
|
269
|
+
Ident: 24 bits
|
270
|
+
|
271
|
+
This 24-bit field is used to associate the Vorbis data to a decoding
|
272
|
+
Configuration. It is stored as a network byte order integer.
|
273
|
+
|
274
|
+
Fragment type (F): 2 bits
|
275
|
+
|
276
|
+
|
277
|
+
|
278
|
+
|
279
|
+
|
280
|
+
|
281
|
+
|
282
|
+
Barbato Standards Track [Page 5]
|
283
|
+
|
284
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
285
|
+
|
286
|
+
|
287
|
+
This field is set according to the following list:
|
288
|
+
|
289
|
+
0 = Not Fragmented
|
290
|
+
|
291
|
+
1 = Start Fragment
|
292
|
+
|
293
|
+
2 = Continuation Fragment
|
294
|
+
|
295
|
+
3 = End Fragment
|
296
|
+
|
297
|
+
Vorbis Data Type (VDT): 2 bits
|
298
|
+
|
299
|
+
This field specifies the kind of Vorbis data stored in this RTP
|
300
|
+
packet. There are currently three different types of Vorbis
|
301
|
+
payloads. Each packet MUST contain only a single type of Vorbis
|
302
|
+
packet (e.g., you must not aggregate configuration and comment
|
303
|
+
packets in the same RTP payload).
|
304
|
+
|
305
|
+
0 = Raw Vorbis payload
|
306
|
+
|
307
|
+
1 = Vorbis Packed Configuration payload
|
308
|
+
|
309
|
+
2 = Legacy Vorbis Comment payload
|
310
|
+
|
311
|
+
3 = Reserved
|
312
|
+
|
313
|
+
The packets with a VDT of value 3 MUST be ignored.
|
314
|
+
|
315
|
+
The last 4 bits represent the number of complete packets in this
|
316
|
+
payload. This provides for a maximum number of 15 Vorbis packets in
|
317
|
+
the payload. If the payload contains fragmented data, the number of
|
318
|
+
packets MUST be set to 0.
|
319
|
+
|
320
|
+
2.3. Payload Data
|
321
|
+
|
322
|
+
Raw Vorbis packets are currently unbounded in length; application
|
323
|
+
profiles will likely define a practical limit. Typical Vorbis packet
|
324
|
+
sizes range from very small (2-3 bytes) to quite large (8-12
|
325
|
+
kilobytes). The reference implementation [LIBVORBIS] typically
|
326
|
+
produces packets less than ~800 bytes, except for the setup header
|
327
|
+
packets, which are ~4-12 kilobytes. Within an RTP context, to avoid
|
328
|
+
fragmentation, the Vorbis data packet size SHOULD be kept
|
329
|
+
sufficiently small so that after adding the RTP and payload headers,
|
330
|
+
the complete RTP packet is smaller than the path MTU.
|
331
|
+
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
|
336
|
+
|
337
|
+
|
338
|
+
Barbato Standards Track [Page 6]
|
339
|
+
|
340
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
341
|
+
|
342
|
+
|
343
|
+
0 1 2 3
|
344
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
345
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
346
|
+
| length | vorbis packet data ..
|
347
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
348
|
+
|
349
|
+
Figure 3: Payload Data Header
|
350
|
+
|
351
|
+
Each Vorbis payload packet starts with a two octet length header,
|
352
|
+
which is used to represent the size in bytes of the following data
|
353
|
+
payload, and is followed by the raw Vorbis data padded to the nearest
|
354
|
+
byte boundary, as explained by the Vorbis I Specification
|
355
|
+
[VORBIS-SPEC-REF]. The length value is stored as a network byte
|
356
|
+
order integer.
|
357
|
+
|
358
|
+
For payloads that consist of multiple Vorbis packets, the payload
|
359
|
+
data consists of the packet length followed by the packet data for
|
360
|
+
each of the Vorbis packets in the payload.
|
361
|
+
|
362
|
+
The Vorbis packet length header is the length of the Vorbis data
|
363
|
+
block only and does not include the length field.
|
364
|
+
|
365
|
+
The payload packing of the Vorbis data packets MUST follow the
|
366
|
+
guidelines set out in [RFC3551], where the oldest Vorbis packet
|
367
|
+
occurs immediately after the RTP packet header. Subsequent Vorbis
|
368
|
+
packets, if any, MUST follow in temporal order.
|
369
|
+
|
370
|
+
Audio channel mapping is in accordance with the Vorbis I
|
371
|
+
Specification [VORBIS-SPEC-REF].
|
372
|
+
|
373
|
+
|
374
|
+
|
375
|
+
|
376
|
+
|
377
|
+
|
378
|
+
|
379
|
+
|
380
|
+
|
381
|
+
|
382
|
+
|
383
|
+
|
384
|
+
|
385
|
+
|
386
|
+
|
387
|
+
|
388
|
+
|
389
|
+
|
390
|
+
|
391
|
+
|
392
|
+
|
393
|
+
|
394
|
+
Barbato Standards Track [Page 7]
|
395
|
+
|
396
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
397
|
+
|
398
|
+
|
399
|
+
2.4. Example RTP Packet
|
400
|
+
|
401
|
+
Here is an example RTP payload containing two Vorbis packets.
|
402
|
+
|
403
|
+
0 1 2 3
|
404
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
405
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
406
|
+
| 2 |0|0| 0 |0| PT | sequence number |
|
407
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
408
|
+
| timestamp (in sample rate units) |
|
409
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
410
|
+
| synchronisation source (SSRC) identifier |
|
411
|
+
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
|
412
|
+
| contributing source (CSRC) identifiers |
|
413
|
+
| ... |
|
414
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
415
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
416
|
+
| Ident | 0 | 0 | 2 pks |
|
417
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
418
|
+
| length | vorbis data ..
|
419
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
420
|
+
.. vorbis data |
|
421
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
422
|
+
| length | next vorbis packet data ..
|
423
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
424
|
+
.. vorbis data ..
|
425
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
426
|
+
.. vorbis data |
|
427
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
428
|
+
|
429
|
+
Figure 4: Example Raw Vorbis Packet
|
430
|
+
|
431
|
+
The payload data section of the RTP packet begins with the 24-bit
|
432
|
+
Ident field followed by the one octet bit field header, which has the
|
433
|
+
number of Vorbis frames set to 2. Each of the Vorbis data frames is
|
434
|
+
prefixed by the two octets length field. The Packet Type and
|
435
|
+
Fragment Type are set to 0. The Configuration that will be used to
|
436
|
+
decode the packets is the one indexed by the ident value.
|
437
|
+
|
438
|
+
3. Configuration Headers
|
439
|
+
|
440
|
+
Unlike other mainstream audio codecs, Vorbis has no statically
|
441
|
+
configured probability model. Instead, it packs all entropy decoding
|
442
|
+
configuration, Vector Quantization and Huffman models into a data
|
443
|
+
block that must be transmitted to the decoder with the compressed
|
444
|
+
data. A decoder also requires information detailing the number of
|
445
|
+
audio channels, bitrates, and similar information to configure itself
|
446
|
+
for a particular compressed data stream. These two blocks of
|
447
|
+
|
448
|
+
|
449
|
+
|
450
|
+
Barbato Standards Track [Page 8]
|
451
|
+
|
452
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
453
|
+
|
454
|
+
|
455
|
+
information are often referred to collectively as the "codebooks" for
|
456
|
+
a Vorbis stream, and are included as special "header" packets at the
|
457
|
+
start of the compressed data. In addition, the Vorbis I
|
458
|
+
specification [VORBIS-SPEC-REF] requires the presence of a comment
|
459
|
+
header packet that gives simple metadata about the stream, but this
|
460
|
+
information is not required for decoding the frame sequence.
|
461
|
+
|
462
|
+
Thus, these two codebook header packets must be received by the
|
463
|
+
decoder before any audio data can be interpreted. These requirements
|
464
|
+
pose problems in RTP, which is often used over unreliable transports.
|
465
|
+
|
466
|
+
Since this information must be transmitted reliably and, as the RTP
|
467
|
+
stream may change certain configuration data mid-session, there are
|
468
|
+
different methods for delivering this configuration data to a client,
|
469
|
+
both in-band and out-of-band, which are detailed below. In order to
|
470
|
+
set up an initial state for the client application, the configuration
|
471
|
+
MUST be conveyed via the signalling channel used to set up the
|
472
|
+
session. One example of such signalling is SDP [RFC4566] with the
|
473
|
+
Offer/Answer Model [RFC3264]. Changes to the configuration MAY be
|
474
|
+
communicated via a re-invite, conveying a new SDP, or sent in-band in
|
475
|
+
the RTP channel. Implementations MUST support an in-band delivery of
|
476
|
+
updated codebooks, and SHOULD support out-of-band codebook update
|
477
|
+
using a new SDP file. The changes may be due to different codebooks
|
478
|
+
as well as different bitrates of the RTP stream.
|
479
|
+
|
480
|
+
For non-chained streams, the recommended Configuration delivery
|
481
|
+
method is inside the Packed Configuration (Section 3.1.1) in the SDP
|
482
|
+
as explained the Mapping Media Type Parameters into SDP
|
483
|
+
(Section 7.1).
|
484
|
+
|
485
|
+
The 24-bit Ident field is used to map which Configuration will be
|
486
|
+
used to decode a packet. When the Ident field changes, it indicates
|
487
|
+
that a change in the stream has taken place. The client application
|
488
|
+
MUST have in advance the correct configuration. If the client
|
489
|
+
detects a change in the Ident value and does not have this
|
490
|
+
information, it MUST NOT decode the raw associated Vorbis data until
|
491
|
+
it fetches the correct Configuration.
|
492
|
+
|
493
|
+
3.1. In-band Header Transmission
|
494
|
+
|
495
|
+
The Packed Configuration (Section 3.1.1) Payload is sent in-band with
|
496
|
+
the packet type bits set to match the Vorbis Data Type. Clients MUST
|
497
|
+
be capable of dealing with fragmentation and periodic re-transmission
|
498
|
+
of [RFC4588] the configuration headers. The RTP timestamp value MUST
|
499
|
+
reflect the transmission time of the first data packet for which this
|
500
|
+
configuration applies.
|
501
|
+
|
502
|
+
|
503
|
+
|
504
|
+
|
505
|
+
|
506
|
+
Barbato Standards Track [Page 9]
|
507
|
+
|
508
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
509
|
+
|
510
|
+
|
511
|
+
3.1.1. Packed Configuration
|
512
|
+
|
513
|
+
A Vorbis Packed Configuration is indicated with the Vorbis Data Type
|
514
|
+
field set to 1. Of the three headers defined in the Vorbis I
|
515
|
+
specification [VORBIS-SPEC-REF], the Identification and the Setup
|
516
|
+
MUST be packed as they are, while the Comment header MAY be replaced
|
517
|
+
with a dummy one.
|
518
|
+
|
519
|
+
The packed configuration stores Xiph codec configurations in a
|
520
|
+
generic way: the first field stores the number of the following
|
521
|
+
packets minus one (count field), the next ones represent the size of
|
522
|
+
the headers (length fields), and the headers immediately follow the
|
523
|
+
list of length fields. The size of the last header is implicit.
|
524
|
+
|
525
|
+
The count and the length fields are encoded using the following
|
526
|
+
logic: the data is in network byte order; every byte has the most
|
527
|
+
significant bit used as a flag, and the following 7 bits are used to
|
528
|
+
store the value. The first 7 most significant bits are stored in the
|
529
|
+
first byte. If there are remaining bits, the flag bit is set to 1
|
530
|
+
and the subsequent 7 bits are stored in the following byte. If there
|
531
|
+
are remaining bits, set the flag to 1 and the same procedure is
|
532
|
+
repeated. The ending byte has the flag bit set to 0. To decode,
|
533
|
+
simply iterate over the bytes until the flag bit is set to 0. For
|
534
|
+
every byte, the data is added to the accumulated value multiplied by
|
535
|
+
128.
|
536
|
+
|
537
|
+
The headers are packed in the same order as they are present in Ogg
|
538
|
+
[VORBIS-SPEC-REF]: Identification, Comment, Setup.
|
539
|
+
|
540
|
+
The 2 byte length tag defines the length of the packed headers as the
|
541
|
+
sum of the Configuration, Comment, and Setup lengths.
|
542
|
+
|
543
|
+
|
544
|
+
|
545
|
+
|
546
|
+
|
547
|
+
|
548
|
+
|
549
|
+
|
550
|
+
|
551
|
+
|
552
|
+
|
553
|
+
|
554
|
+
|
555
|
+
|
556
|
+
|
557
|
+
|
558
|
+
|
559
|
+
|
560
|
+
|
561
|
+
|
562
|
+
Barbato Standards Track [Page 10]
|
563
|
+
|
564
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
565
|
+
|
566
|
+
|
567
|
+
0 1 2 3
|
568
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
569
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
570
|
+
|V=2|P|X| CC |M| PT | xxxx |
|
571
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
572
|
+
| xxxxx |
|
573
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
574
|
+
| synchronization source (SSRC) identifier |
|
575
|
+
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
|
576
|
+
| contributing source (CSRC) identifiers |
|
577
|
+
| ... |
|
578
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
579
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
580
|
+
| Ident | 0 | 1 | 1|
|
581
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
582
|
+
| length | n. of headers | length1 |
|
583
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
584
|
+
| length2 | Identification ..
|
585
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
586
|
+
.. Identification ..
|
587
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
588
|
+
.. Identification ..
|
589
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
590
|
+
.. Identification ..
|
591
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
592
|
+
.. Identification | Comment ..
|
593
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
594
|
+
.. Comment ..
|
595
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
596
|
+
.. Comment ..
|
597
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
598
|
+
.. Comment ..
|
599
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
600
|
+
.. Comment | Setup ..
|
601
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
602
|
+
.. Setup ..
|
603
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
604
|
+
.. Setup ..
|
605
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
606
|
+
|
607
|
+
Figure 5: Packed Configuration Figure
|
608
|
+
|
609
|
+
The Ident field is set with the value that will be used by the Raw
|
610
|
+
Payload Packets to address this Configuration. The Fragment type is
|
611
|
+
set to 0 because the packet bears the full Packed configuration. The
|
612
|
+
number of the packet is set to 1.
|
613
|
+
|
614
|
+
|
615
|
+
|
616
|
+
|
617
|
+
|
618
|
+
Barbato Standards Track [Page 11]
|
619
|
+
|
620
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
621
|
+
|
622
|
+
|
623
|
+
3.2. Out of Band Transmission
|
624
|
+
|
625
|
+
The following packet definition MUST be used when Configuration is
|
626
|
+
inside in the SDP.
|
627
|
+
|
628
|
+
3.2.1. Packed Headers
|
629
|
+
|
630
|
+
As mentioned above, the RECOMMENDED delivery vector for Vorbis
|
631
|
+
configuration data is via a retrieval method that can be performed
|
632
|
+
using a reliable transport protocol. As the RTP headers are not
|
633
|
+
required for this method of delivery, the structure of the
|
634
|
+
configuration data is slightly different. The packed header starts
|
635
|
+
with a 32-bit (network-byte ordered) count field, which details the
|
636
|
+
number of packed headers that are contained in the bundle. The
|
637
|
+
following shows the Packed header payload for each chained Vorbis
|
638
|
+
stream.
|
639
|
+
|
640
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
641
|
+
| Number of packed headers |
|
642
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
643
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
644
|
+
| Packed header |
|
645
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
646
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
647
|
+
| Packed header |
|
648
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
649
|
+
|
650
|
+
Figure 6: Packed Headers Overview
|
651
|
+
|
652
|
+
|
653
|
+
|
654
|
+
|
655
|
+
|
656
|
+
|
657
|
+
|
658
|
+
|
659
|
+
|
660
|
+
|
661
|
+
|
662
|
+
|
663
|
+
|
664
|
+
|
665
|
+
|
666
|
+
|
667
|
+
|
668
|
+
|
669
|
+
|
670
|
+
|
671
|
+
|
672
|
+
|
673
|
+
|
674
|
+
Barbato Standards Track [Page 12]
|
675
|
+
|
676
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
677
|
+
|
678
|
+
|
679
|
+
0 1 2 3
|
680
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
681
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
682
|
+
| Ident | length ..
|
683
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
684
|
+
.. | n. of headers | length1 | length2 ..
|
685
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
686
|
+
.. | Identification Header ..
|
687
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
688
|
+
.................................................................
|
689
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
690
|
+
.. | Comment Header ..
|
691
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
692
|
+
.................................................................
|
693
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
694
|
+
.. Comment Header |
|
695
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
696
|
+
| Setup Header ..
|
697
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
698
|
+
.................................................................
|
699
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
700
|
+
.. Setup Header |
|
701
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
702
|
+
|
703
|
+
Figure 7: Packed Headers Detail
|
704
|
+
|
705
|
+
The key difference between the in-band format and this one is that
|
706
|
+
there is no need for the payload header octet. In this figure, the
|
707
|
+
comment has a size bigger than 127 bytes.
|
708
|
+
|
709
|
+
3.3. Loss of Configuration Headers
|
710
|
+
|
711
|
+
Unlike the loss of raw Vorbis payload data, loss of a configuration
|
712
|
+
header leads to a situation where it will not be possible to
|
713
|
+
successfully decode the stream. Implementations MAY try to recover
|
714
|
+
from an error by requesting again the missing Configuration or, if
|
715
|
+
the delivery method is in-band, by buffering the payloads waiting for
|
716
|
+
the Configuration needed to decode them. The baseline reaction
|
717
|
+
SHOULD either be reset or end the RTP session.
|
718
|
+
|
719
|
+
4. Comment Headers
|
720
|
+
|
721
|
+
Vorbis Data Type flag set to 2 indicates that the packet contains the
|
722
|
+
comment metadata, such as artist name, track title, and so on. These
|
723
|
+
metadata messages are not intended to be fully descriptive but rather
|
724
|
+
to offer basic track/song information. Clients MAY ignore it
|
725
|
+
completely. The details on the format of the comments can be found
|
726
|
+
in the Vorbis I Specification [VORBIS-SPEC-REF].
|
727
|
+
|
728
|
+
|
729
|
+
|
730
|
+
Barbato Standards Track [Page 13]
|
731
|
+
|
732
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
733
|
+
|
734
|
+
|
735
|
+
0 1 2 3
|
736
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
737
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
738
|
+
|V=2|P|X| CC |M| PT | xxxx |
|
739
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
740
|
+
| xxxxx |
|
741
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
742
|
+
| synchronization source (SSRC) identifier |
|
743
|
+
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
|
744
|
+
| contributing source (CSRC) identifiers |
|
745
|
+
| ... |
|
746
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
747
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
748
|
+
| Ident | 0 | 2 | 1|
|
749
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
750
|
+
| length | Comment ..
|
751
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
752
|
+
.. Comment ..
|
753
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
754
|
+
.. Comment |
|
755
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
756
|
+
|
757
|
+
Figure 8: Comment Packet
|
758
|
+
|
759
|
+
The 2-byte length field is necessary since this packet could be
|
760
|
+
fragmented.
|
761
|
+
|
762
|
+
5. Frame Packetization
|
763
|
+
|
764
|
+
Each RTP payload contains either one Vorbis packet fragment or an
|
765
|
+
integer number of complete Vorbis packets (up to a maximum of 15
|
766
|
+
packets, since the number of packets is defined by a 4-bit value).
|
767
|
+
|
768
|
+
Any Vorbis data packet that is less than path MTU SHOULD be bundled
|
769
|
+
in the RTP payload with as many Vorbis packets as will fit, up to a
|
770
|
+
maximum of 15, except when such bundling would exceed an
|
771
|
+
application's desired transmission latency. Path MTU is detailed in
|
772
|
+
[RFC1191] and [RFC1981].
|
773
|
+
|
774
|
+
A fragmented packet has a zero in the last four bits of the payload
|
775
|
+
header. The first fragment will set the Fragment type to 1. Each
|
776
|
+
fragment after the first will set the Fragment type to 2 in the
|
777
|
+
payload header. The consecutive fragments MUST be sent without any
|
778
|
+
other payload being sent between the first and the last fragment.
|
779
|
+
The RTP payload containing the last fragment of the Vorbis packet
|
780
|
+
will have the Fragment type set to 3. To maintain the correct
|
781
|
+
sequence for fragmented packet reception, the timestamp field of
|
782
|
+
fragmented packets MUST be the same as the first packet sent, with
|
783
|
+
|
784
|
+
|
785
|
+
|
786
|
+
Barbato Standards Track [Page 14]
|
787
|
+
|
788
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
789
|
+
|
790
|
+
|
791
|
+
the sequence number incremented as normal for the subsequent RTP
|
792
|
+
payloads; this will affect the RTCP jitter measurement. The length
|
793
|
+
field shows the fragment length.
|
794
|
+
|
795
|
+
5.1. Example Fragmented Vorbis Packet
|
796
|
+
|
797
|
+
Here is an example of a fragmented Vorbis packet split over three RTP
|
798
|
+
payloads. Each of them contains the standard RTP headers as well as
|
799
|
+
the 4-octet Vorbis headers.
|
800
|
+
|
801
|
+
Packet 1:
|
802
|
+
|
803
|
+
0 1 2 3
|
804
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
805
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
806
|
+
|V=2|P|X| CC |M| PT | 1000 |
|
807
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
808
|
+
| 12345 |
|
809
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
810
|
+
| synchronization source (SSRC) identifier |
|
811
|
+
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
|
812
|
+
| contributing source (CSRC) identifiers |
|
813
|
+
| ... |
|
814
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
815
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
816
|
+
| Ident | 1 | 0 | 0|
|
817
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
818
|
+
| length | vorbis data ..
|
819
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
820
|
+
.. vorbis data |
|
821
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
822
|
+
|
823
|
+
Figure 9: Example Fragmented Packet (Packet 1)
|
824
|
+
|
825
|
+
In this payload, the initial sequence number is 1000 and the
|
826
|
+
timestamp is 12345. The Fragment type is set to 1, the number of
|
827
|
+
packets field is set to 0, and as the payload is raw Vorbis data, the
|
828
|
+
VDT field is set to 0.
|
829
|
+
|
830
|
+
|
831
|
+
|
832
|
+
|
833
|
+
|
834
|
+
|
835
|
+
|
836
|
+
|
837
|
+
|
838
|
+
|
839
|
+
|
840
|
+
|
841
|
+
|
842
|
+
Barbato Standards Track [Page 15]
|
843
|
+
|
844
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
845
|
+
|
846
|
+
|
847
|
+
Packet 2:
|
848
|
+
|
849
|
+
0 1 2 3
|
850
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
851
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
852
|
+
|V=2|P|X| CC |M| PT | 1001 |
|
853
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
854
|
+
| 12345 |
|
855
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
856
|
+
| synchronization source (SSRC) identifier |
|
857
|
+
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
|
858
|
+
| contributing source (CSRC) identifiers |
|
859
|
+
| ... |
|
860
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
861
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
862
|
+
| Ident | 2 | 0 | 0|
|
863
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
864
|
+
| length | vorbis data ..
|
865
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
866
|
+
.. vorbis data |
|
867
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
868
|
+
|
869
|
+
Figure 10: Example Fragmented Packet (Packet 2)
|
870
|
+
|
871
|
+
The Fragment type field is set to 2, and the number of packets field
|
872
|
+
is set to 0. For large Vorbis fragments, there can be several of
|
873
|
+
these types of payloads. The maximum packet size SHOULD be no
|
874
|
+
greater than the path MTU, including all RTP and payload headers.
|
875
|
+
The sequence number has been incremented by one, but the timestamp
|
876
|
+
field remains the same as the initial payload.
|
877
|
+
|
878
|
+
|
879
|
+
|
880
|
+
|
881
|
+
|
882
|
+
|
883
|
+
|
884
|
+
|
885
|
+
|
886
|
+
|
887
|
+
|
888
|
+
|
889
|
+
|
890
|
+
|
891
|
+
|
892
|
+
|
893
|
+
|
894
|
+
|
895
|
+
|
896
|
+
|
897
|
+
|
898
|
+
Barbato Standards Track [Page 16]
|
899
|
+
|
900
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
901
|
+
|
902
|
+
|
903
|
+
Packet 3:
|
904
|
+
|
905
|
+
0 1 2 3
|
906
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
907
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
908
|
+
|V=2|P|X| CC |M| PT | 1002 |
|
909
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
910
|
+
| 12345 |
|
911
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
912
|
+
| synchronization source (SSRC) identifier |
|
913
|
+
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
|
914
|
+
| contributing source (CSRC) identifiers |
|
915
|
+
| ... |
|
916
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
917
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
918
|
+
| Ident | 3 | 0 | 0|
|
919
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
920
|
+
| length | vorbis data ..
|
921
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
922
|
+
.. vorbis data |
|
923
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
924
|
+
|
925
|
+
Figure 11: Example Fragmented Packet (Packet 3)
|
926
|
+
|
927
|
+
This is the last Vorbis fragment payload. The Fragment type is set
|
928
|
+
to 3 and the packet count remains set to 0. As in the previous
|
929
|
+
payloads, the timestamp remains set to the first payload timestamp in
|
930
|
+
the sequence and the sequence number has been incremented.
|
931
|
+
|
932
|
+
5.2. Packet Loss
|
933
|
+
|
934
|
+
As there is no error correction within the Vorbis stream, packet loss
|
935
|
+
will result in a loss of signal. Packet loss is more of an issue for
|
936
|
+
fragmented Vorbis packets as the client will have to cope with the
|
937
|
+
handling of the Fragment Type. In case of loss of fragments, the
|
938
|
+
client MUST discard all the remaining Vorbis fragments and decode the
|
939
|
+
incomplete packet. If we use the fragmented Vorbis packet example
|
940
|
+
above and the first RTP payload is lost, the client MUST detect that
|
941
|
+
the next RTP payload has the packet count field set to 0 and the
|
942
|
+
Fragment type 2 and MUST drop it. The next RTP payload, which is the
|
943
|
+
final fragmented packet, MUST be dropped in the same manner. If the
|
944
|
+
missing RTP payload is the last, the two fragments received will be
|
945
|
+
kept and the incomplete Vorbis packet decoded.
|
946
|
+
|
947
|
+
Loss of any of the Configuration fragment will result in the loss of
|
948
|
+
the full Configuration packet with the result detailed in the Loss of
|
949
|
+
Configuration Headers (Section 3.3) section.
|
950
|
+
|
951
|
+
|
952
|
+
|
953
|
+
|
954
|
+
Barbato Standards Track [Page 17]
|
955
|
+
|
956
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
957
|
+
|
958
|
+
|
959
|
+
6. IANA Considerations
|
960
|
+
|
961
|
+
Type name: audio
|
962
|
+
|
963
|
+
Subtype name: vorbis
|
964
|
+
|
965
|
+
Required parameters:
|
966
|
+
|
967
|
+
rate: indicates the RTP timestamp clock rate as described in RTP
|
968
|
+
Profile for Audio and Video Conferences with Minimal Control
|
969
|
+
[RFC3551].
|
970
|
+
|
971
|
+
channels: indicates the number of audio channels as described in
|
972
|
+
RTP Profile for Audio and Video Conferences with Minimal
|
973
|
+
Control [RFC3551].
|
974
|
+
|
975
|
+
configuration: the base64 [RFC4648] representation of the Packed
|
976
|
+
Headers (Section 3.2.1).
|
977
|
+
|
978
|
+
Encoding considerations:
|
979
|
+
|
980
|
+
This media type is framed and contains binary data.
|
981
|
+
|
982
|
+
Security considerations:
|
983
|
+
|
984
|
+
See Section 10 of RFC 5215.
|
985
|
+
|
986
|
+
Interoperability considerations:
|
987
|
+
|
988
|
+
None
|
989
|
+
|
990
|
+
Published specification:
|
991
|
+
|
992
|
+
RFC 5215
|
993
|
+
|
994
|
+
Ogg Vorbis I specification: Codec setup and packet decode.
|
995
|
+
Available from the Xiph website, http://xiph.org/
|
996
|
+
|
997
|
+
Applications which use this media type:
|
998
|
+
|
999
|
+
Audio streaming and conferencing tools
|
1000
|
+
|
1001
|
+
Additional information:
|
1002
|
+
|
1003
|
+
None
|
1004
|
+
|
1005
|
+
|
1006
|
+
|
1007
|
+
|
1008
|
+
|
1009
|
+
|
1010
|
+
Barbato Standards Track [Page 18]
|
1011
|
+
|
1012
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
1013
|
+
|
1014
|
+
|
1015
|
+
Person & email address to contact for further information:
|
1016
|
+
|
1017
|
+
Luca Barbato: <lu_zero@gentoo.org>
|
1018
|
+
IETF Audio/Video Transport Working Group
|
1019
|
+
|
1020
|
+
Intended usage:
|
1021
|
+
|
1022
|
+
COMMON
|
1023
|
+
|
1024
|
+
Restriction on usage:
|
1025
|
+
|
1026
|
+
This media type depends on RTP framing, hence is only defined for
|
1027
|
+
transfer via RTP [RFC3550].
|
1028
|
+
|
1029
|
+
Author:
|
1030
|
+
|
1031
|
+
Luca Barbato
|
1032
|
+
|
1033
|
+
Change controller:
|
1034
|
+
|
1035
|
+
IETF AVT Working Group delegated from the IESG
|
1036
|
+
|
1037
|
+
6.1. Packed Headers IANA Considerations
|
1038
|
+
|
1039
|
+
The following IANA considerations refers to the split configuration
|
1040
|
+
Packed Headers (Section 3.2.1) used within RFC 5215.
|
1041
|
+
|
1042
|
+
Type name: audio
|
1043
|
+
|
1044
|
+
Subtype name: vorbis-config
|
1045
|
+
|
1046
|
+
Required parameters:
|
1047
|
+
|
1048
|
+
None
|
1049
|
+
|
1050
|
+
Optional parameters:
|
1051
|
+
|
1052
|
+
None
|
1053
|
+
|
1054
|
+
Encoding considerations:
|
1055
|
+
|
1056
|
+
This media type contains binary data.
|
1057
|
+
|
1058
|
+
Security considerations:
|
1059
|
+
|
1060
|
+
See Section 10 of RFC 5215.
|
1061
|
+
|
1062
|
+
|
1063
|
+
|
1064
|
+
|
1065
|
+
|
1066
|
+
Barbato Standards Track [Page 19]
|
1067
|
+
|
1068
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
1069
|
+
|
1070
|
+
|
1071
|
+
Interoperability considerations:
|
1072
|
+
|
1073
|
+
None
|
1074
|
+
|
1075
|
+
Published specification:
|
1076
|
+
|
1077
|
+
RFC 5215
|
1078
|
+
|
1079
|
+
Applications which use this media type:
|
1080
|
+
|
1081
|
+
Vorbis encoded audio, configuration data
|
1082
|
+
|
1083
|
+
Additional information:
|
1084
|
+
|
1085
|
+
None
|
1086
|
+
|
1087
|
+
Person & email address to contact for further information:
|
1088
|
+
|
1089
|
+
Luca Barbato: <lu_zero@gentoo.org>
|
1090
|
+
IETF Audio/Video Transport Working Group
|
1091
|
+
|
1092
|
+
Intended usage: COMMON
|
1093
|
+
|
1094
|
+
Restriction on usage:
|
1095
|
+
|
1096
|
+
This media type doesn't depend on the transport.
|
1097
|
+
|
1098
|
+
Author:
|
1099
|
+
|
1100
|
+
Luca Barbato
|
1101
|
+
|
1102
|
+
Change controller:
|
1103
|
+
|
1104
|
+
IETF AVT Working Group delegated from the IESG
|
1105
|
+
|
1106
|
+
7. SDP Related Considerations
|
1107
|
+
|
1108
|
+
The following paragraphs define the mapping of the parameters
|
1109
|
+
described in the IANA considerations section and their usage in the
|
1110
|
+
Offer/Answer Model [RFC3264]. In order to be forward compatible, the
|
1111
|
+
implementation MUST ignore unknown parameters.
|
1112
|
+
|
1113
|
+
7.1. Mapping Media Type Parameters into SDP
|
1114
|
+
|
1115
|
+
The information carried in the Media Type specification has a
|
1116
|
+
specific mapping to fields in the Session Description Protocol (SDP)
|
1117
|
+
[RFC4566], which is commonly used to describe RTP sessions. When SDP
|
1118
|
+
is used to specify sessions, the mapping are as follows:
|
1119
|
+
|
1120
|
+
|
1121
|
+
|
1122
|
+
Barbato Standards Track [Page 20]
|
1123
|
+
|
1124
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
1125
|
+
|
1126
|
+
|
1127
|
+
o The type name ("audio") goes in SDP "m=" as the media name.
|
1128
|
+
|
1129
|
+
o The subtype name ("vorbis") goes in SDP "a=rtpmap" as the encoding
|
1130
|
+
name.
|
1131
|
+
|
1132
|
+
o The parameter "rate" also goes in "a=rtpmap" as the clock rate.
|
1133
|
+
|
1134
|
+
o The parameter "channels" also goes in "a=rtpmap" as the channel
|
1135
|
+
count.
|
1136
|
+
|
1137
|
+
o The mandated parameters "configuration" MUST be included in the
|
1138
|
+
SDP "a=fmtp" attribute.
|
1139
|
+
|
1140
|
+
If the stream comprises chained Vorbis files and all of them are
|
1141
|
+
known in advance, the Configuration Packet for each file SHOULD be
|
1142
|
+
passed to the client using the configuration attribute.
|
1143
|
+
|
1144
|
+
The port value is specified by the server application bound to the
|
1145
|
+
address specified in the c= line. The channel count value specified
|
1146
|
+
in the rtpmap attribute SHOULD match the current Vorbis stream or
|
1147
|
+
should be considered the maximum number of channels to be expected.
|
1148
|
+
The timestamp clock rate MUST be a multiple of the sample rate; a
|
1149
|
+
different payload number MUST be used if the clock rate changes. The
|
1150
|
+
Configuration payload delivers the exact information, thus the SDP
|
1151
|
+
information SHOULD be considered a hint. An example is found below.
|
1152
|
+
|
1153
|
+
7.1.1. SDP Example
|
1154
|
+
|
1155
|
+
The following example shows a basic SDP single stream. The first
|
1156
|
+
configuration packet is inside the SDP; other configurations could be
|
1157
|
+
fetched at any time from the URIs provided. The following base64
|
1158
|
+
[RFC4648] configuration string is folded in this example due to RFC
|
1159
|
+
line length limitations.
|
1160
|
+
|
1161
|
+
c=IN IP4 192.0.2.1
|
1162
|
+
|
1163
|
+
m=audio RTP/AVP 98
|
1164
|
+
|
1165
|
+
a=rtpmap:98 vorbis/44100/2
|
1166
|
+
|
1167
|
+
a=fmtp:98 configuration=AAAAAZ2f4g9NAh4aAXZvcmJpcwA...;
|
1168
|
+
|
1169
|
+
Note that the payload format (encoding) names are commonly shown in
|
1170
|
+
uppercase. Media Type subtypes are commonly shown in lowercase.
|
1171
|
+
These names are case-insensitive in both places. Similarly,
|
1172
|
+
parameter names are case-insensitive both in Media Type types and in
|
1173
|
+
the default mapping to the SDP a=fmtp attribute. The a=fmtp line is
|
1174
|
+
|
1175
|
+
|
1176
|
+
|
1177
|
+
|
1178
|
+
Barbato Standards Track [Page 21]
|
1179
|
+
|
1180
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
1181
|
+
|
1182
|
+
|
1183
|
+
a single line, even if it is shown as multiple lines in this document
|
1184
|
+
for clarity.
|
1185
|
+
|
1186
|
+
7.2. Usage with the SDP Offer/Answer Model
|
1187
|
+
|
1188
|
+
There are no negotiable parameters. All of them are declarative.
|
1189
|
+
|
1190
|
+
8. Congestion Control
|
1191
|
+
|
1192
|
+
The general congestion control considerations for transporting RTP
|
1193
|
+
data apply to Vorbis audio over RTP as well. See the RTP
|
1194
|
+
specification [RFC3550] and any applicable RTP profile (e.g.,
|
1195
|
+
[RFC3551]). Audio data can be encoded using a range of different bit
|
1196
|
+
rates, so it is possible to adapt network bandwidth by adjusting the
|
1197
|
+
encoder bit rate in real time or by having multiple copies of content
|
1198
|
+
encoded at different bit rates.
|
1199
|
+
|
1200
|
+
9. Example
|
1201
|
+
|
1202
|
+
The following example shows a common usage pattern that MAY be
|
1203
|
+
applied in such a situation. The main scope of this section is to
|
1204
|
+
explain better usage of the transmission vectors.
|
1205
|
+
|
1206
|
+
9.1. Stream Radio
|
1207
|
+
|
1208
|
+
This is one of the most common situations: there is one single server
|
1209
|
+
streaming content in multicast, and the clients may start a session
|
1210
|
+
at a random time. The content itself could be a mix of a live stream
|
1211
|
+
(as the webjockey's voice) and stored streams (as the music she
|
1212
|
+
plays).
|
1213
|
+
|
1214
|
+
In this situation, we don't know in advance how many codebooks we
|
1215
|
+
will use. The clients can join anytime and users expect to start
|
1216
|
+
listening to the content in a short time.
|
1217
|
+
|
1218
|
+
Upon joining, the client will receive the current Configuration
|
1219
|
+
necessary to decode the current stream inside the SDP so that the
|
1220
|
+
decoding will start immediately after.
|
1221
|
+
|
1222
|
+
When the streamed content changes, the new Configuration is sent in-
|
1223
|
+
band before the actual stream, and the Configuration that has to be
|
1224
|
+
sent inside the SDP is updated. Since the in-band method is
|
1225
|
+
unreliable, an out-of-band fallback is provided.
|
1226
|
+
|
1227
|
+
The client may choose to fetch the Configuration from the alternate
|
1228
|
+
source as soon as it discovers a Configuration packet got lost in-
|
1229
|
+
band, or use selective retransmission [RFC3611] if the server
|
1230
|
+
supports this feature.
|
1231
|
+
|
1232
|
+
|
1233
|
+
|
1234
|
+
Barbato Standards Track [Page 22]
|
1235
|
+
|
1236
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
1237
|
+
|
1238
|
+
|
1239
|
+
A server-side optimization would be to keep a hash list of the
|
1240
|
+
Configurations per session, which avoids packing all of them and
|
1241
|
+
sending the same Configuration with different Ident tags.
|
1242
|
+
|
1243
|
+
A client-side optimization would be to keep a tag list of the
|
1244
|
+
Configurations per session and not process configuration packets that
|
1245
|
+
are already known.
|
1246
|
+
|
1247
|
+
10. Security Considerations
|
1248
|
+
|
1249
|
+
RTP packets using this payload format are subject to the security
|
1250
|
+
considerations discussed in the RTP specification [RFC3550], the
|
1251
|
+
base64 specification [RFC4648], and the URI Generic syntax
|
1252
|
+
specification [RFC3986]. Among other considerations, this implies
|
1253
|
+
that the confidentiality of the media stream is achieved by using
|
1254
|
+
encryption. Because the data compression used with this payload
|
1255
|
+
format is applied end-to-end, encryption may be performed on the
|
1256
|
+
compressed data.
|
1257
|
+
|
1258
|
+
11. Copying Conditions
|
1259
|
+
|
1260
|
+
The authors agree to grant third parties the irrevocable right to
|
1261
|
+
copy, use, and distribute the work, with or without modification, in
|
1262
|
+
any medium, without royalty, provided that, unless separate
|
1263
|
+
permission is granted, redistributed modified works do not contain
|
1264
|
+
misleading author, version, name of work, or endorsement information.
|
1265
|
+
|
1266
|
+
12. Acknowledgments
|
1267
|
+
|
1268
|
+
This document is a continuation of the following documents:
|
1269
|
+
|
1270
|
+
Moffitt, J., "RTP Payload Format for Vorbis Encoded Audio", February
|
1271
|
+
2001.
|
1272
|
+
|
1273
|
+
Kerr, R., "RTP Payload Format for Vorbis Encoded Audio", December
|
1274
|
+
2004.
|
1275
|
+
|
1276
|
+
The Media Type declaration is a continuation of the following
|
1277
|
+
document:
|
1278
|
+
|
1279
|
+
Short, B., "The audio/rtp-vorbis MIME Type", January 2008.
|
1280
|
+
|
1281
|
+
Thanks to the AVT, Vorbis Communities / Xiph.Org Foundation including
|
1282
|
+
Steve Casner, Aaron Colwell, Ross Finlayson, Fluendo, Ramon Garcia,
|
1283
|
+
Pascal Hennequin, Ralph Giles, Tor-Einar Jarnbjo, Colin Law, John
|
1284
|
+
Lazzaro, Jack Moffitt, Christopher Montgomery, Colin Perkins, Barry
|
1285
|
+
Short, Mike Smith, Phil Kerr, Michael Sparks, Magnus Westerlund,
|
1286
|
+
David Barrett, Silvia Pfeiffer, Stefan Ehmann, Gianni Ceccarelli, and
|
1287
|
+
|
1288
|
+
|
1289
|
+
|
1290
|
+
Barbato Standards Track [Page 23]
|
1291
|
+
|
1292
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
1293
|
+
|
1294
|
+
|
1295
|
+
Alessandro Salvatori. Thanks to the LScube Group, in particular
|
1296
|
+
Federico Ridolfo, Francesco Varano, Giampaolo Mancini, Dario
|
1297
|
+
Gallucci, and Juan Carlos De Martin.
|
1298
|
+
|
1299
|
+
13. References
|
1300
|
+
|
1301
|
+
13.1. Normative References
|
1302
|
+
|
1303
|
+
[RFC1191] Mogul, J. and S. Deering, "Path MTU discovery",
|
1304
|
+
RFC 1191, November 1990.
|
1305
|
+
|
1306
|
+
[RFC1981] McCann, J., Deering, S., and J. Mogul, "Path MTU
|
1307
|
+
Discovery for IP version 6", RFC 1981,
|
1308
|
+
August 1996.
|
1309
|
+
|
1310
|
+
[RFC2119] Bradner, S., "Key words for use in RFCs to
|
1311
|
+
Indicate Requirement Levels", BCP 14, RFC 2119,
|
1312
|
+
March 1997.
|
1313
|
+
|
1314
|
+
[RFC3264] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer
|
1315
|
+
Model with Session Description Protocol (SDP)",
|
1316
|
+
RFC 3264, June 2002.
|
1317
|
+
|
1318
|
+
[RFC3550] Schulzrinne, H., Casner, S., Frederick, R., and V.
|
1319
|
+
Jacobson, "RTP: A Transport Protocol for Real-Time
|
1320
|
+
Applications", STD 64, RFC 3550, July 2003.
|
1321
|
+
|
1322
|
+
[RFC3551] Schulzrinne, H. and S. Casner, "RTP Profile for
|
1323
|
+
Audio and Video Conferences with Minimal Control",
|
1324
|
+
STD 65, RFC 3551, July 2003.
|
1325
|
+
|
1326
|
+
[RFC3986] Berners-Lee, T., Fielding, R., and L. Masinter,
|
1327
|
+
"Uniform Resource Identifier (URI): Generic
|
1328
|
+
Syntax", STD 66, RFC 3986, January 2005.
|
1329
|
+
|
1330
|
+
[RFC4566] Handley, M., Jacobson, V., and C. Perkins, "SDP:
|
1331
|
+
Session Description Protocol", RFC 4566,
|
1332
|
+
July 2006.
|
1333
|
+
|
1334
|
+
[RFC4648] Josefsson, S., "The Base16, Base32, and Base64
|
1335
|
+
Data Encodings", RFC 4648, October 2006.
|
1336
|
+
|
1337
|
+
[VORBIS-SPEC-REF] "Ogg Vorbis I specification: Codec setup and
|
1338
|
+
packet decode. Available from the Xiph website,
|
1339
|
+
http://xiph.org/vorbis/doc/Vorbis_I_spec.html".
|
1340
|
+
|
1341
|
+
|
1342
|
+
|
1343
|
+
|
1344
|
+
|
1345
|
+
|
1346
|
+
Barbato Standards Track [Page 24]
|
1347
|
+
|
1348
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
1349
|
+
|
1350
|
+
|
1351
|
+
13.2. Informative References
|
1352
|
+
|
1353
|
+
[LIBVORBIS] "libvorbis: Available from the dedicated website,
|
1354
|
+
http://vorbis.com/".
|
1355
|
+
|
1356
|
+
[RFC3533] Pfeiffer, S., "The Ogg Encapsulation Format
|
1357
|
+
Version 0", RFC 3533, May 2003.
|
1358
|
+
|
1359
|
+
[RFC3611] Friedman, T., Caceres, R., and A. Clark, "RTP
|
1360
|
+
Control Protocol Extended Reports (RTCP XR)",
|
1361
|
+
RFC 3611, November 2003.
|
1362
|
+
|
1363
|
+
[RFC4588] Rey, J., Leon, D., Miyazaki, A., Varsa, V., and R.
|
1364
|
+
Hakenberg, "RTP Retransmission Payload Format",
|
1365
|
+
RFC 4588, July 2006.
|
1366
|
+
|
1367
|
+
Author's Address
|
1368
|
+
|
1369
|
+
Luca Barbato
|
1370
|
+
Xiph.Org Foundation
|
1371
|
+
|
1372
|
+
EMail: lu_zero@gentoo.org
|
1373
|
+
URI: http://xiph.org/
|
1374
|
+
|
1375
|
+
|
1376
|
+
|
1377
|
+
|
1378
|
+
|
1379
|
+
|
1380
|
+
|
1381
|
+
|
1382
|
+
|
1383
|
+
|
1384
|
+
|
1385
|
+
|
1386
|
+
|
1387
|
+
|
1388
|
+
|
1389
|
+
|
1390
|
+
|
1391
|
+
|
1392
|
+
|
1393
|
+
|
1394
|
+
|
1395
|
+
|
1396
|
+
|
1397
|
+
|
1398
|
+
|
1399
|
+
|
1400
|
+
|
1401
|
+
|
1402
|
+
Barbato Standards Track [Page 25]
|
1403
|
+
|
1404
|
+
RFC 5215 Vorbis RTP Payload Format August 2008
|
1405
|
+
|
1406
|
+
|
1407
|
+
Full Copyright Statement
|
1408
|
+
|
1409
|
+
Copyright (C) The IETF Trust (2008).
|
1410
|
+
|
1411
|
+
This document is subject to the rights, licenses and restrictions
|
1412
|
+
contained in BCP 78, and except as set forth therein, the authors
|
1413
|
+
retain all their rights.
|
1414
|
+
|
1415
|
+
This document and the information contained herein are provided on an
|
1416
|
+
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
|
1417
|
+
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND
|
1418
|
+
THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS
|
1419
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
|
1420
|
+
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
|
1421
|
+
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
1422
|
+
|
1423
|
+
Intellectual Property
|
1424
|
+
|
1425
|
+
The IETF takes no position regarding the validity or scope of any
|
1426
|
+
Intellectual Property Rights or other rights that might be claimed to
|
1427
|
+
pertain to the implementation or use of the technology described in
|
1428
|
+
this document or the extent to which any license under such rights
|
1429
|
+
might or might not be available; nor does it represent that it has
|
1430
|
+
made any independent effort to identify any such rights. Information
|
1431
|
+
on the procedures with respect to rights in RFC documents can be
|
1432
|
+
found in BCP 78 and BCP 79.
|
1433
|
+
|
1434
|
+
Copies of IPR disclosures made to the IETF Secretariat and any
|
1435
|
+
assurances of licenses to be made available, or the result of an
|
1436
|
+
attempt made to obtain a general license or permission for the use of
|
1437
|
+
such proprietary rights by implementers or users of this
|
1438
|
+
specification can be obtained from the IETF on-line IPR repository at
|
1439
|
+
http://www.ietf.org/ipr.
|
1440
|
+
|
1441
|
+
The IETF invites any interested party to bring to its attention any
|
1442
|
+
copyrights, patents or patent applications, or other proprietary
|
1443
|
+
rights that may cover technology that may be required to implement
|
1444
|
+
this standard. Please address the information to the IETF at
|
1445
|
+
ietf-ipr@ietf.org.
|
1446
|
+
|
1447
|
+
|
1448
|
+
|
1449
|
+
|
1450
|
+
|
1451
|
+
|
1452
|
+
|
1453
|
+
|
1454
|
+
|
1455
|
+
|
1456
|
+
|
1457
|
+
|
1458
|
+
Barbato Standards Track [Page 26]
|
1459
|
+
|