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,195 @@
|
|
1
|
+
\section{\-Functions for \-Encoding}
|
2
|
+
\label{group__encfuncs}\index{\-Functions for Encoding@{\-Functions for Encoding}}
|
3
|
+
\subsection*{\-Functions for encoding}
|
4
|
+
\label{_amgrpc58fb8743a7ca83eb895d57e29e032c8}%
|
5
|
+
\-You must link to {\ttfamily libtheoraenc} and {\ttfamily libtheoradec} if you use any of the functions in this section.
|
6
|
+
|
7
|
+
\-The functions are listed in the order they are used in a typical encode. \-The basic steps are\-:
|
8
|
+
\begin{DoxyItemize}
|
9
|
+
\item \-Fill in a \doxyref{th\-\_\-info}{p.}{structth__info} structure with details on the format of the video you wish to encode.
|
10
|
+
\item \-Allocate a \doxyref{th\-\_\-enc\-\_\-ctx}{p.}{theoraenc_8h_af5cc40472b925456d42526a035d66edd} handle with \doxyref{th\-\_\-encode\-\_\-alloc()}{p.}{group__encfuncs_gaa91e47bc9dd5f6ee52045bd7b815e5a7}.
|
11
|
+
\item \-Perform any additional encoder configuration required with \doxyref{th\-\_\-encode\-\_\-ctl()}{p.}{group__encfuncs_ga3a427f6514dfdc01ea72172c469d51d9}.
|
12
|
+
\item \-Repeatedly call \doxyref{th\-\_\-encode\-\_\-flushheader()}{p.}{group__encfuncs_ga9439d61b566039d194ff782681fbc408} to retrieve all the header packets.
|
13
|
+
\item \-For each uncompressed frame\-:
|
14
|
+
\begin{DoxyItemize}
|
15
|
+
\item \-Submit the uncompressed frame via \doxyref{th\-\_\-encode\-\_\-ycbcr\-\_\-in()}{p.}{group__encfuncs_gadbe7dd66b411c2d61ab8153c15308750}
|
16
|
+
\item \-Repeatedly call \doxyref{th\-\_\-encode\-\_\-packetout()}{p.}{group__encfuncs_ga96d8ac1dda53187455352f99bbb5b04b} to retrieve any video data packets that are ready.
|
17
|
+
\end{DoxyItemize}
|
18
|
+
\item \-Call \doxyref{th\-\_\-encode\-\_\-free()}{p.}{group__encfuncs_ga36b23d216532231925c4107894204680} to release all encoder memory.
|
19
|
+
\end{DoxyItemize}\begin{DoxyCompactItemize}
|
20
|
+
\item
|
21
|
+
{\bf th\-\_\-enc\-\_\-ctx} $\ast$ {\bf th\-\_\-encode\-\_\-alloc} (const {\bf th\-\_\-info} $\ast$\-\_\-info)
|
22
|
+
\begin{DoxyCompactList}\small\item\em \-Allocates an encoder instance. \end{DoxyCompactList}\item
|
23
|
+
int {\bf th\-\_\-encode\-\_\-ctl} ({\bf th\-\_\-enc\-\_\-ctx} $\ast$\-\_\-enc, int \-\_\-req, void $\ast$\-\_\-buf, size\-\_\-t \-\_\-buf\-\_\-sz)
|
24
|
+
\begin{DoxyCompactList}\small\item\em \-Encoder control function. \end{DoxyCompactList}\item
|
25
|
+
int {\bf th\-\_\-encode\-\_\-flushheader} ({\bf th\-\_\-enc\-\_\-ctx} $\ast$\-\_\-enc, {\bf th\-\_\-comment} $\ast$\-\_\-comments, ogg\-\_\-packet $\ast$\-\_\-op)
|
26
|
+
\begin{DoxyCompactList}\small\item\em \-Outputs the next header packet. \end{DoxyCompactList}\item
|
27
|
+
int {\bf th\-\_\-encode\-\_\-ycbcr\-\_\-in} ({\bf th\-\_\-enc\-\_\-ctx} $\ast$\-\_\-enc, {\bf th\-\_\-ycbcr\-\_\-buffer} \-\_\-ycbcr)
|
28
|
+
\begin{DoxyCompactList}\small\item\em \-Submits an uncompressed frame to the encoder. \end{DoxyCompactList}\item
|
29
|
+
int {\bf th\-\_\-encode\-\_\-packetout} ({\bf th\-\_\-enc\-\_\-ctx} $\ast$\-\_\-enc, int \-\_\-last, ogg\-\_\-packet $\ast$\-\_\-op)
|
30
|
+
\begin{DoxyCompactList}\small\item\em \-Retrieves encoded video data packets. \end{DoxyCompactList}\item
|
31
|
+
void {\bf th\-\_\-encode\-\_\-free} ({\bf th\-\_\-enc\-\_\-ctx} $\ast$\-\_\-enc)
|
32
|
+
\begin{DoxyCompactList}\small\item\em \-Frees an allocated encoder instance. \end{DoxyCompactList}\end{DoxyCompactItemize}
|
33
|
+
|
34
|
+
|
35
|
+
\subsection{\-Function \-Documentation}
|
36
|
+
\index{\-Functions for Encoding@{\-Functions for Encoding}!th\-\_\-encode\-\_\-alloc@{th\-\_\-encode\-\_\-alloc}}
|
37
|
+
\index{th\-\_\-encode\-\_\-alloc@{th\-\_\-encode\-\_\-alloc}!Functions for Encoding@{\-Functions for Encoding}}
|
38
|
+
\subsubsection[{th\-\_\-encode\-\_\-alloc}]{\setlength{\rightskip}{0pt plus 5cm}{\bf th\-\_\-enc\-\_\-ctx}$\ast$ {\bf th\-\_\-encode\-\_\-alloc} (
|
39
|
+
\begin{DoxyParamCaption}
|
40
|
+
\item[{const {\bf th\-\_\-info} $\ast$}]{\-\_\-info}
|
41
|
+
\end{DoxyParamCaption}
|
42
|
+
)}\label{group__encfuncs_gaa91e47bc9dd5f6ee52045bd7b815e5a7}
|
43
|
+
|
44
|
+
|
45
|
+
\-Allocates an encoder instance.
|
46
|
+
|
47
|
+
|
48
|
+
\begin{DoxyParams}{\-Parameters}
|
49
|
+
{\em \-\_\-info} & \-A \doxyref{th\-\_\-info}{p.}{structth__info} struct filled with the desired encoding parameters. \\
|
50
|
+
\hline
|
51
|
+
\end{DoxyParams}
|
52
|
+
\begin{DoxyReturn}{\-Returns}
|
53
|
+
\-The initialized \doxyref{th\-\_\-enc\-\_\-ctx}{p.}{theoraenc_8h_af5cc40472b925456d42526a035d66edd} handle.
|
54
|
+
\end{DoxyReturn}
|
55
|
+
|
56
|
+
\begin{DoxyRetVals}{\-Return values}
|
57
|
+
{\em \-N\-U\-L\-L} & \-If the encoding parameters were invalid. \\
|
58
|
+
\hline
|
59
|
+
\end{DoxyRetVals}
|
60
|
+
\index{\-Functions for Encoding@{\-Functions for Encoding}!th\-\_\-encode\-\_\-ctl@{th\-\_\-encode\-\_\-ctl}}
|
61
|
+
\index{th\-\_\-encode\-\_\-ctl@{th\-\_\-encode\-\_\-ctl}!Functions for Encoding@{\-Functions for Encoding}}
|
62
|
+
\subsubsection[{th\-\_\-encode\-\_\-ctl}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf th\-\_\-encode\-\_\-ctl} (
|
63
|
+
\begin{DoxyParamCaption}
|
64
|
+
\item[{{\bf th\-\_\-enc\-\_\-ctx} $\ast$}]{\-\_\-enc, }
|
65
|
+
\item[{int}]{\-\_\-req, }
|
66
|
+
\item[{void $\ast$}]{\-\_\-buf, }
|
67
|
+
\item[{size\-\_\-t}]{\-\_\-buf\-\_\-sz}
|
68
|
+
\end{DoxyParamCaption}
|
69
|
+
)}\label{group__encfuncs_ga3a427f6514dfdc01ea72172c469d51d9}
|
70
|
+
|
71
|
+
|
72
|
+
\-Encoder control function.
|
73
|
+
|
74
|
+
\-This is used to provide advanced control the encoding process.
|
75
|
+
\begin{DoxyParams}{\-Parameters}
|
76
|
+
{\em \-\_\-enc} & \-A \doxyref{th\-\_\-enc\-\_\-ctx}{p.}{theoraenc_8h_af5cc40472b925456d42526a035d66edd} handle. \\
|
77
|
+
\hline
|
78
|
+
{\em \-\_\-req} & \-The control code to process. \-See \doxyref{the list of available control codes}{p.}{theoraenc_8h_encctlcodes} for details. \\
|
79
|
+
\hline
|
80
|
+
{\em \-\_\-buf} & \-The parameters for this control code. \\
|
81
|
+
\hline
|
82
|
+
{\em \-\_\-buf\-\_\-sz} & \-The size of the parameter buffer. \\
|
83
|
+
\hline
|
84
|
+
\end{DoxyParams}
|
85
|
+
\index{\-Functions for Encoding@{\-Functions for Encoding}!th\-\_\-encode\-\_\-flushheader@{th\-\_\-encode\-\_\-flushheader}}
|
86
|
+
\index{th\-\_\-encode\-\_\-flushheader@{th\-\_\-encode\-\_\-flushheader}!Functions for Encoding@{\-Functions for Encoding}}
|
87
|
+
\subsubsection[{th\-\_\-encode\-\_\-flushheader}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf th\-\_\-encode\-\_\-flushheader} (
|
88
|
+
\begin{DoxyParamCaption}
|
89
|
+
\item[{{\bf th\-\_\-enc\-\_\-ctx} $\ast$}]{\-\_\-enc, }
|
90
|
+
\item[{{\bf th\-\_\-comment} $\ast$}]{\-\_\-comments, }
|
91
|
+
\item[{ogg\-\_\-packet $\ast$}]{\-\_\-op}
|
92
|
+
\end{DoxyParamCaption}
|
93
|
+
)}\label{group__encfuncs_ga9439d61b566039d194ff782681fbc408}
|
94
|
+
|
95
|
+
|
96
|
+
\-Outputs the next header packet.
|
97
|
+
|
98
|
+
\-This should be called repeatedly after encoder initialization until it returns 0 in order to get all of the header packets, in order, before encoding actual video data.
|
99
|
+
\begin{DoxyParams}{\-Parameters}
|
100
|
+
{\em \-\_\-enc} & \-A \doxyref{th\-\_\-enc\-\_\-ctx}{p.}{theoraenc_8h_af5cc40472b925456d42526a035d66edd} handle. \\
|
101
|
+
\hline
|
102
|
+
{\em \-\_\-comments} & \-The metadata to place in the comment header, when it is encoded. \\
|
103
|
+
\hline
|
104
|
+
{\em \-\_\-op} & \-An {\ttfamily ogg\-\_\-packet} structure to fill. \-All of the elements of this structure will be set, including a pointer to the header data. \-The memory for the header data is owned by {\ttfamily libtheoraenc}, and may be invalidated when the next encoder function is called. \\
|
105
|
+
\hline
|
106
|
+
\end{DoxyParams}
|
107
|
+
\begin{DoxyReturn}{\-Returns}
|
108
|
+
\-A positive value indicates that a header packet was successfully produced.
|
109
|
+
\end{DoxyReturn}
|
110
|
+
|
111
|
+
\begin{DoxyRetVals}{\-Return values}
|
112
|
+
{\em 0} & \-No packet was produced, and no more header packets remain. \\
|
113
|
+
\hline
|
114
|
+
{\em \-T\-H\-\_\-\-E\-F\-A\-U\-L\-T} & {\itshape \-\_\-enc\/}, {\itshape \-\_\-comments\/}, or {\itshape \-\_\-op\/} was {\ttfamily \-N\-U\-L\-L}. \\
|
115
|
+
\hline
|
116
|
+
\end{DoxyRetVals}
|
117
|
+
\index{\-Functions for Encoding@{\-Functions for Encoding}!th\-\_\-encode\-\_\-free@{th\-\_\-encode\-\_\-free}}
|
118
|
+
\index{th\-\_\-encode\-\_\-free@{th\-\_\-encode\-\_\-free}!Functions for Encoding@{\-Functions for Encoding}}
|
119
|
+
\subsubsection[{th\-\_\-encode\-\_\-free}]{\setlength{\rightskip}{0pt plus 5cm}void {\bf th\-\_\-encode\-\_\-free} (
|
120
|
+
\begin{DoxyParamCaption}
|
121
|
+
\item[{{\bf th\-\_\-enc\-\_\-ctx} $\ast$}]{\-\_\-enc}
|
122
|
+
\end{DoxyParamCaption}
|
123
|
+
)}\label{group__encfuncs_ga36b23d216532231925c4107894204680}
|
124
|
+
|
125
|
+
|
126
|
+
\-Frees an allocated encoder instance.
|
127
|
+
|
128
|
+
|
129
|
+
\begin{DoxyParams}{\-Parameters}
|
130
|
+
{\em \-\_\-enc} & \-A \doxyref{th\-\_\-enc\-\_\-ctx}{p.}{theoraenc_8h_af5cc40472b925456d42526a035d66edd} handle. \\
|
131
|
+
\hline
|
132
|
+
\end{DoxyParams}
|
133
|
+
\index{\-Functions for Encoding@{\-Functions for Encoding}!th\-\_\-encode\-\_\-packetout@{th\-\_\-encode\-\_\-packetout}}
|
134
|
+
\index{th\-\_\-encode\-\_\-packetout@{th\-\_\-encode\-\_\-packetout}!Functions for Encoding@{\-Functions for Encoding}}
|
135
|
+
\subsubsection[{th\-\_\-encode\-\_\-packetout}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf th\-\_\-encode\-\_\-packetout} (
|
136
|
+
\begin{DoxyParamCaption}
|
137
|
+
\item[{{\bf th\-\_\-enc\-\_\-ctx} $\ast$}]{\-\_\-enc, }
|
138
|
+
\item[{int}]{\-\_\-last, }
|
139
|
+
\item[{ogg\-\_\-packet $\ast$}]{\-\_\-op}
|
140
|
+
\end{DoxyParamCaption}
|
141
|
+
)}\label{group__encfuncs_ga96d8ac1dda53187455352f99bbb5b04b}
|
142
|
+
|
143
|
+
|
144
|
+
\-Retrieves encoded video data packets.
|
145
|
+
|
146
|
+
\-This should be called repeatedly after each frame is submitted to flush any encoded packets, until it returns 0. \-The encoder will not buffer these packets as subsequent frames are compressed, so a failure to do so will result in lost video data. \begin{DoxyNote}{\-Note}
|
147
|
+
\-Currently the encoder operates in a one-\/frame-\/in, one-\/packet-\/out manner. \-However, this may be changed in the future.
|
148
|
+
\end{DoxyNote}
|
149
|
+
|
150
|
+
\begin{DoxyParams}{\-Parameters}
|
151
|
+
{\em \-\_\-enc} & \-A \doxyref{th\-\_\-enc\-\_\-ctx}{p.}{theoraenc_8h_af5cc40472b925456d42526a035d66edd} handle. \\
|
152
|
+
\hline
|
153
|
+
{\em \-\_\-last} & \-Set this flag to a non-\/zero value if no more uncompressed frames will be submitted. \-This ensures that a proper \-E\-O\-S flag is set on the last packet. \\
|
154
|
+
\hline
|
155
|
+
{\em \-\_\-op} & \-An {\ttfamily ogg\-\_\-packet} structure to fill. \-All of the elements of this structure will be set, including a pointer to the video data. \-The memory for the video data is owned by {\ttfamily libtheoraenc}, and may be invalidated when the next encoder function is called. \\
|
156
|
+
\hline
|
157
|
+
\end{DoxyParams}
|
158
|
+
\begin{DoxyReturn}{\-Returns}
|
159
|
+
\-A positive value indicates that a video data packet was successfully produced.
|
160
|
+
\end{DoxyReturn}
|
161
|
+
|
162
|
+
\begin{DoxyRetVals}{\-Return values}
|
163
|
+
{\em 0} & \-No packet was produced, and no more encoded video data remains. \\
|
164
|
+
\hline
|
165
|
+
{\em \-T\-H\-\_\-\-E\-F\-A\-U\-L\-T} & {\itshape \-\_\-enc\/} or {\itshape \-\_\-op\/} was {\ttfamily \-N\-U\-L\-L}. \\
|
166
|
+
\hline
|
167
|
+
\end{DoxyRetVals}
|
168
|
+
\index{\-Functions for Encoding@{\-Functions for Encoding}!th\-\_\-encode\-\_\-ycbcr\-\_\-in@{th\-\_\-encode\-\_\-ycbcr\-\_\-in}}
|
169
|
+
\index{th\-\_\-encode\-\_\-ycbcr\-\_\-in@{th\-\_\-encode\-\_\-ycbcr\-\_\-in}!Functions for Encoding@{\-Functions for Encoding}}
|
170
|
+
\subsubsection[{th\-\_\-encode\-\_\-ycbcr\-\_\-in}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf th\-\_\-encode\-\_\-ycbcr\-\_\-in} (
|
171
|
+
\begin{DoxyParamCaption}
|
172
|
+
\item[{{\bf th\-\_\-enc\-\_\-ctx} $\ast$}]{\-\_\-enc, }
|
173
|
+
\item[{{\bf th\-\_\-ycbcr\-\_\-buffer}}]{\-\_\-ycbcr}
|
174
|
+
\end{DoxyParamCaption}
|
175
|
+
)}\label{group__encfuncs_gadbe7dd66b411c2d61ab8153c15308750}
|
176
|
+
|
177
|
+
|
178
|
+
\-Submits an uncompressed frame to the encoder.
|
179
|
+
|
180
|
+
|
181
|
+
\begin{DoxyParams}{\-Parameters}
|
182
|
+
{\em \-\_\-enc} & \-A \doxyref{th\-\_\-enc\-\_\-ctx}{p.}{theoraenc_8h_af5cc40472b925456d42526a035d66edd} handle. \\
|
183
|
+
\hline
|
184
|
+
{\em \-\_\-ycbcr} & \-A buffer of \-Y'\-Cb\-Cr data to encode. \\
|
185
|
+
\hline
|
186
|
+
\end{DoxyParams}
|
187
|
+
|
188
|
+
\begin{DoxyRetVals}{\-Return values}
|
189
|
+
{\em 0} & \-Success. \\
|
190
|
+
\hline
|
191
|
+
{\em \-T\-H\-\_\-\-E\-F\-A\-U\-L\-T} & {\itshape \-\_\-enc\/} or {\itshape \-\_\-ycbcr\/} is {\ttfamily \-N\-U\-L\-L}. \\
|
192
|
+
\hline
|
193
|
+
{\em \-T\-H\-\_\-\-E\-I\-N\-V\-A\-L} & \-The buffer size does not match the frame size the encoder was initialized with, or encoding has already completed. \\
|
194
|
+
\hline
|
195
|
+
\end{DoxyRetVals}
|
@@ -0,0 +1,1046 @@
|
|
1
|
+
\section{\-Legacy pre-\/1.0 \-C \-A\-P\-I}
|
2
|
+
\label{group__oldfuncs}\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
3
|
+
\subsection*{\-Data \-Structures}
|
4
|
+
\begin{DoxyCompactItemize}
|
5
|
+
\item
|
6
|
+
struct {\bf yuv\-\_\-buffer}
|
7
|
+
\begin{DoxyCompactList}\small\item\em \-A \-Y\-U\-V buffer for passing uncompressed frames to and from the codec. \end{DoxyCompactList}\item
|
8
|
+
struct {\bf theora\-\_\-info}
|
9
|
+
\begin{DoxyCompactList}\small\item\em \-Theora bitstream info. \end{DoxyCompactList}\item
|
10
|
+
struct {\bf theora\-\_\-state}
|
11
|
+
\begin{DoxyCompactList}\small\item\em \-Codec internal state and context. \end{DoxyCompactList}\item
|
12
|
+
struct {\bf theora\-\_\-comment}
|
13
|
+
\begin{DoxyCompactList}\small\item\em \-Comment header metadata. \end{DoxyCompactList}\end{DoxyCompactItemize}
|
14
|
+
\subsection*{\-Files}
|
15
|
+
\begin{DoxyCompactItemize}
|
16
|
+
\item
|
17
|
+
file {\bf theora.\-h}
|
18
|
+
\begin{DoxyCompactList}\small\item\em \-The libtheora pre-\/1.\-0 legacy \-C \-A\-P\-I. \end{DoxyCompactList}\end{DoxyCompactItemize}
|
19
|
+
\subsection*{\-Defines}
|
20
|
+
\begin{DoxyCompactItemize}
|
21
|
+
\item
|
22
|
+
\#define {\bf \-O\-C\-\_\-\-F\-A\-U\-L\-T}~-\/1
|
23
|
+
\begin{DoxyCompactList}\small\item\em \-General failure. \end{DoxyCompactList}\item
|
24
|
+
\#define {\bf \-O\-C\-\_\-\-E\-I\-N\-V\-A\-L}~-\/10
|
25
|
+
\begin{DoxyCompactList}\small\item\em \-Library encountered invalid internal data. \end{DoxyCompactList}\item
|
26
|
+
\#define {\bf \-O\-C\-\_\-\-D\-I\-S\-A\-B\-L\-E\-D}~-\/11
|
27
|
+
\begin{DoxyCompactList}\small\item\em \-Requested action is disabled. \end{DoxyCompactList}\item
|
28
|
+
\#define {\bf \-O\-C\-\_\-\-B\-A\-D\-H\-E\-A\-D\-E\-R}~-\/20
|
29
|
+
\begin{DoxyCompactList}\small\item\em \-Header packet was corrupt/invalid. \end{DoxyCompactList}\item
|
30
|
+
\#define {\bf \-O\-C\-\_\-\-N\-O\-T\-F\-O\-R\-M\-A\-T}~-\/21
|
31
|
+
\begin{DoxyCompactList}\small\item\em \-Packet is not a theora packet. \end{DoxyCompactList}\item
|
32
|
+
\#define {\bf \-O\-C\-\_\-\-V\-E\-R\-S\-I\-O\-N}~-\/22
|
33
|
+
\begin{DoxyCompactList}\small\item\em \-Bitstream version is not handled. \end{DoxyCompactList}\item
|
34
|
+
\#define {\bf \-O\-C\-\_\-\-I\-M\-P\-L}~-\/23
|
35
|
+
\begin{DoxyCompactList}\small\item\em \-Feature or action not implemented. \end{DoxyCompactList}\item
|
36
|
+
\#define {\bf \-O\-C\-\_\-\-B\-A\-D\-P\-A\-C\-K\-E\-T}~-\/24
|
37
|
+
\begin{DoxyCompactList}\small\item\em \-Packet is corrupt. \end{DoxyCompactList}\item
|
38
|
+
\#define {\bf \-O\-C\-\_\-\-N\-E\-W\-P\-A\-C\-K\-E\-T}~-\/25
|
39
|
+
\begin{DoxyCompactList}\small\item\em \-Packet is an (ignorable) unhandled extension. \end{DoxyCompactList}\item
|
40
|
+
\#define {\bf \-O\-C\-\_\-\-D\-U\-P\-F\-R\-A\-M\-E}~1
|
41
|
+
\begin{DoxyCompactList}\small\item\em \-Packet is a dropped frame. \end{DoxyCompactList}\end{DoxyCompactItemize}
|
42
|
+
\subsection*{\-Typedefs}
|
43
|
+
\begin{DoxyCompactItemize}
|
44
|
+
\item
|
45
|
+
typedef struct {\bf theora\-\_\-comment} {\bf theora\-\_\-comment}
|
46
|
+
\begin{DoxyCompactList}\small\item\em \-Comment header metadata. \end{DoxyCompactList}\end{DoxyCompactItemize}
|
47
|
+
\subsection*{\-Enumerations}
|
48
|
+
\begin{DoxyCompactItemize}
|
49
|
+
\item
|
50
|
+
enum {\bf theora\-\_\-colorspace} \{ {\bf \-O\-C\-\_\-\-C\-S\-\_\-\-U\-N\-S\-P\-E\-C\-I\-F\-I\-E\-D},
|
51
|
+
{\bf \-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-M},
|
52
|
+
{\bf \-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-B\-G},
|
53
|
+
{\bf \-O\-C\-\_\-\-C\-S\-\_\-\-N\-S\-P\-A\-C\-E\-S}
|
54
|
+
\}
|
55
|
+
\begin{DoxyCompactList}\small\item\em \-A \-Colorspace. \end{DoxyCompactList}\item
|
56
|
+
enum {\bf theora\-\_\-pixelformat} \{ {\bf \-O\-C\-\_\-\-P\-F\-\_\-420},
|
57
|
+
{\bf \-O\-C\-\_\-\-P\-F\-\_\-\-R\-S\-V\-D},
|
58
|
+
{\bf \-O\-C\-\_\-\-P\-F\-\_\-422},
|
59
|
+
{\bf \-O\-C\-\_\-\-P\-F\-\_\-444}
|
60
|
+
\}
|
61
|
+
\begin{DoxyCompactList}\small\item\em \-A \-Chroma subsampling. \end{DoxyCompactList}\end{DoxyCompactItemize}
|
62
|
+
\subsection*{\-Functions}
|
63
|
+
\begin{DoxyCompactItemize}
|
64
|
+
\item
|
65
|
+
const char $\ast$ {\bf theora\-\_\-version\-\_\-string} (void)
|
66
|
+
\begin{DoxyCompactList}\small\item\em \-Retrieve a human-\/readable string to identify the encoder vendor and version. \end{DoxyCompactList}\item
|
67
|
+
ogg\-\_\-uint32\-\_\-t {\bf theora\-\_\-version\-\_\-number} (void)
|
68
|
+
\begin{DoxyCompactList}\small\item\em \-Retrieve a 32-\/bit version number. \end{DoxyCompactList}\item
|
69
|
+
int {\bf theora\-\_\-encode\-\_\-init} ({\bf theora\-\_\-state} $\ast$th, {\bf theora\-\_\-info} $\ast$ti)
|
70
|
+
\begin{DoxyCompactList}\small\item\em \-Initialize the theora encoder. \end{DoxyCompactList}\item
|
71
|
+
int {\bf theora\-\_\-encode\-\_\-\-Y\-U\-Vin} ({\bf theora\-\_\-state} $\ast$t, {\bf yuv\-\_\-buffer} $\ast$yuv)
|
72
|
+
\begin{DoxyCompactList}\small\item\em \-Submit a \-Y\-U\-V buffer to the theora encoder. \end{DoxyCompactList}\item
|
73
|
+
int {\bf theora\-\_\-encode\-\_\-packetout} ({\bf theora\-\_\-state} $\ast$t, int last\-\_\-p, ogg\-\_\-packet $\ast$op)
|
74
|
+
\begin{DoxyCompactList}\small\item\em \-Request the next packet of encoded video. \end{DoxyCompactList}\item
|
75
|
+
int {\bf theora\-\_\-encode\-\_\-header} ({\bf theora\-\_\-state} $\ast$t, ogg\-\_\-packet $\ast$op)
|
76
|
+
\begin{DoxyCompactList}\small\item\em \-Request a packet containing the initial header. \end{DoxyCompactList}\item
|
77
|
+
int {\bf theora\-\_\-encode\-\_\-comment} ({\bf theora\-\_\-comment} $\ast$tc, ogg\-\_\-packet $\ast$op)
|
78
|
+
\begin{DoxyCompactList}\small\item\em \-Request a comment header packet from provided metadata. \end{DoxyCompactList}\item
|
79
|
+
int {\bf theora\-\_\-encode\-\_\-tables} ({\bf theora\-\_\-state} $\ast$t, ogg\-\_\-packet $\ast$op)
|
80
|
+
\begin{DoxyCompactList}\small\item\em \-Request a packet containing the codebook tables for the stream. \end{DoxyCompactList}\item
|
81
|
+
int {\bf theora\-\_\-decode\-\_\-header} ({\bf theora\-\_\-info} $\ast$ci, {\bf theora\-\_\-comment} $\ast$cc, ogg\-\_\-packet $\ast$op)
|
82
|
+
\begin{DoxyCompactList}\small\item\em \-Decode an \-Ogg packet, with the expectation that the packet contains an initial header, comment data or codebook tables. \end{DoxyCompactList}\item
|
83
|
+
int {\bf theora\-\_\-decode\-\_\-init} ({\bf theora\-\_\-state} $\ast$th, {\bf theora\-\_\-info} $\ast$c)
|
84
|
+
\begin{DoxyCompactList}\small\item\em \-Initialize a \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle for decoding. \end{DoxyCompactList}\item
|
85
|
+
int {\bf theora\-\_\-decode\-\_\-packetin} ({\bf theora\-\_\-state} $\ast$th, ogg\-\_\-packet $\ast$op)
|
86
|
+
\begin{DoxyCompactList}\small\item\em \-Input a packet containing encoded data into the theora decoder. \end{DoxyCompactList}\item
|
87
|
+
int {\bf theora\-\_\-decode\-\_\-\-Y\-U\-Vout} ({\bf theora\-\_\-state} $\ast$th, {\bf yuv\-\_\-buffer} $\ast$yuv)
|
88
|
+
\begin{DoxyCompactList}\small\item\em \-Output the next available frame of decoded \-Y\-U\-V data. \end{DoxyCompactList}\item
|
89
|
+
int {\bf theora\-\_\-packet\-\_\-isheader} (ogg\-\_\-packet $\ast$op)
|
90
|
+
\begin{DoxyCompactList}\small\item\em \-Report whether a theora packet is a header or not \-This function does no verification beyond checking the header flag bit so it should not be used for bitstream identification; use \doxyref{theora\-\_\-decode\-\_\-header()}{p.}{group__oldfuncs_ga02915e63c1bd733ee291f577a8b75a82} for that. \end{DoxyCompactList}\item
|
91
|
+
int {\bf theora\-\_\-packet\-\_\-iskeyframe} (ogg\-\_\-packet $\ast$op)
|
92
|
+
\begin{DoxyCompactList}\small\item\em \-Report whether a theora packet is a keyframe or not. \end{DoxyCompactList}\item
|
93
|
+
int {\bf theora\-\_\-granule\-\_\-shift} ({\bf theora\-\_\-info} $\ast$ti)
|
94
|
+
\begin{DoxyCompactList}\small\item\em \-Report the granulepos shift radix. \end{DoxyCompactList}\item
|
95
|
+
ogg\-\_\-int64\-\_\-t {\bf theora\-\_\-granule\-\_\-frame} ({\bf theora\-\_\-state} $\ast$th, ogg\-\_\-int64\-\_\-t granulepos)
|
96
|
+
\begin{DoxyCompactList}\small\item\em \-Convert a granulepos to an absolute frame index, starting at 0. \end{DoxyCompactList}\item
|
97
|
+
double {\bf theora\-\_\-granule\-\_\-time} ({\bf theora\-\_\-state} $\ast$th, ogg\-\_\-int64\-\_\-t granulepos)
|
98
|
+
\begin{DoxyCompactList}\small\item\em \-Convert a granulepos to absolute time in seconds. \end{DoxyCompactList}\item
|
99
|
+
void {\bf theora\-\_\-info\-\_\-init} ({\bf theora\-\_\-info} $\ast$c)
|
100
|
+
\begin{DoxyCompactList}\small\item\em \-Initialize a \doxyref{theora\-\_\-info}{p.}{structtheora__info} structure. \end{DoxyCompactList}\item
|
101
|
+
void {\bf theora\-\_\-info\-\_\-clear} ({\bf theora\-\_\-info} $\ast$c)
|
102
|
+
\begin{DoxyCompactList}\small\item\em \-Clear a \doxyref{theora\-\_\-info}{p.}{structtheora__info} structure. \end{DoxyCompactList}\item
|
103
|
+
void {\bf theora\-\_\-clear} ({\bf theora\-\_\-state} $\ast$t)
|
104
|
+
\begin{DoxyCompactList}\small\item\em \-Free all internal data associated with a \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle. \end{DoxyCompactList}\item
|
105
|
+
void {\bf theora\-\_\-comment\-\_\-init} ({\bf theora\-\_\-comment} $\ast$tc)
|
106
|
+
\begin{DoxyCompactList}\small\item\em \-Initialize an allocated \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure. \end{DoxyCompactList}\item
|
107
|
+
void {\bf theora\-\_\-comment\-\_\-add} ({\bf theora\-\_\-comment} $\ast$tc, char $\ast$comment)
|
108
|
+
\begin{DoxyCompactList}\small\item\em \-Add a comment to an initialized \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure. \end{DoxyCompactList}\item
|
109
|
+
void {\bf theora\-\_\-comment\-\_\-add\-\_\-tag} ({\bf theora\-\_\-comment} $\ast$tc, char $\ast$tag, char $\ast$value)
|
110
|
+
\begin{DoxyCompactList}\small\item\em \-Add a comment to an initialized \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure. \end{DoxyCompactList}\item
|
111
|
+
char $\ast$ {\bf theora\-\_\-comment\-\_\-query} ({\bf theora\-\_\-comment} $\ast$tc, char $\ast$tag, int count)
|
112
|
+
\begin{DoxyCompactList}\small\item\em \-Look up a comment value by tag. \end{DoxyCompactList}\item
|
113
|
+
int {\bf theora\-\_\-comment\-\_\-query\-\_\-count} ({\bf theora\-\_\-comment} $\ast$tc, char $\ast$tag)
|
114
|
+
\begin{DoxyCompactList}\small\item\em \-Look up the number of instances of a tag. \end{DoxyCompactList}\item
|
115
|
+
void {\bf theora\-\_\-comment\-\_\-clear} ({\bf theora\-\_\-comment} $\ast$tc)
|
116
|
+
\begin{DoxyCompactList}\small\item\em \-Clear an allocated \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} struct so that it can be freed. \end{DoxyCompactList}\item
|
117
|
+
int {\bf theora\-\_\-control} ({\bf theora\-\_\-state} $\ast$th, int req, void $\ast$buf, size\-\_\-t buf\-\_\-sz)
|
118
|
+
\begin{DoxyCompactList}\small\item\em \-Encoder control function. \end{DoxyCompactList}\end{DoxyCompactItemize}
|
119
|
+
\subsection*{theora\-\_\-control() codes}
|
120
|
+
\begin{DoxyCompactItemize}
|
121
|
+
\item
|
122
|
+
\#define {\bf \-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}~(1)
|
123
|
+
\begin{DoxyCompactList}\small\item\em \-Get the maximum post-\/processing level. \end{DoxyCompactList}\item
|
124
|
+
\#define {\bf \-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L}~(3)
|
125
|
+
\begin{DoxyCompactList}\small\item\em \-Set the post-\/processing level. \end{DoxyCompactList}\item
|
126
|
+
\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-K\-E\-Y\-F\-R\-A\-M\-E\-\_\-\-F\-R\-E\-Q\-U\-E\-N\-C\-Y\-\_\-\-F\-O\-R\-C\-E}~(4)
|
127
|
+
\begin{DoxyCompactList}\small\item\em \-Sets the maximum distance between key frames. \end{DoxyCompactList}\item
|
128
|
+
\#define {\bf \-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-G\-R\-A\-N\-P\-O\-S}~(5)
|
129
|
+
\begin{DoxyCompactList}\small\item\em \-Set the granule position. \end{DoxyCompactList}\item
|
130
|
+
\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-Q\-U\-A\-N\-T\-\_\-\-P\-A\-R\-A\-M\-S}~(2)
|
131
|
+
\begin{DoxyCompactList}\small\item\em \-Sets the quantization parameters to use. \end{DoxyCompactList}\item
|
132
|
+
\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-V\-P3\-\_\-\-C\-O\-M\-P\-A\-T\-I\-B\-L\-E}~(10)
|
133
|
+
\begin{DoxyCompactList}\small\item\em \-Disables any encoder features that would prevent lossless transcoding back to \-V\-P3. \end{DoxyCompactList}\item
|
134
|
+
\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}~(12)
|
135
|
+
\begin{DoxyCompactList}\small\item\em \-Gets the maximum speed level. \end{DoxyCompactList}\item
|
136
|
+
\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L}~(14)
|
137
|
+
\begin{DoxyCompactList}\small\item\em \-Sets the speed level. \end{DoxyCompactList}\end{DoxyCompactItemize}
|
138
|
+
|
139
|
+
|
140
|
+
\subsection{\-Define \-Documentation}
|
141
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-B\-A\-D\-H\-E\-A\-D\-E\-R@{\-O\-C\-\_\-\-B\-A\-D\-H\-E\-A\-D\-E\-R}}
|
142
|
+
\index{\-O\-C\-\_\-\-B\-A\-D\-H\-E\-A\-D\-E\-R@{\-O\-C\-\_\-\-B\-A\-D\-H\-E\-A\-D\-E\-R}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
143
|
+
\subsubsection[{\-O\-C\-\_\-\-B\-A\-D\-H\-E\-A\-D\-E\-R}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-B\-A\-D\-H\-E\-A\-D\-E\-R}~-\/20}\label{group__oldfuncs_ga809cbad2eb36be17a235a3cadfb737ba}
|
144
|
+
|
145
|
+
|
146
|
+
\-Header packet was corrupt/invalid.
|
147
|
+
|
148
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-B\-A\-D\-P\-A\-C\-K\-E\-T@{\-O\-C\-\_\-\-B\-A\-D\-P\-A\-C\-K\-E\-T}}
|
149
|
+
\index{\-O\-C\-\_\-\-B\-A\-D\-P\-A\-C\-K\-E\-T@{\-O\-C\-\_\-\-B\-A\-D\-P\-A\-C\-K\-E\-T}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
150
|
+
\subsubsection[{\-O\-C\-\_\-\-B\-A\-D\-P\-A\-C\-K\-E\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-B\-A\-D\-P\-A\-C\-K\-E\-T}~-\/24}\label{group__oldfuncs_ga117774c062a63dfad2a5b4d092fa2bb1}
|
151
|
+
|
152
|
+
|
153
|
+
\-Packet is corrupt.
|
154
|
+
|
155
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-D\-I\-S\-A\-B\-L\-E\-D@{\-O\-C\-\_\-\-D\-I\-S\-A\-B\-L\-E\-D}}
|
156
|
+
\index{\-O\-C\-\_\-\-D\-I\-S\-A\-B\-L\-E\-D@{\-O\-C\-\_\-\-D\-I\-S\-A\-B\-L\-E\-D}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
157
|
+
\subsubsection[{\-O\-C\-\_\-\-D\-I\-S\-A\-B\-L\-E\-D}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-D\-I\-S\-A\-B\-L\-E\-D}~-\/11}\label{group__oldfuncs_ga38b9fa0af856d5930c534db26e2ac2d1}
|
158
|
+
|
159
|
+
|
160
|
+
\-Requested action is disabled.
|
161
|
+
|
162
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-D\-U\-P\-F\-R\-A\-M\-E@{\-O\-C\-\_\-\-D\-U\-P\-F\-R\-A\-M\-E}}
|
163
|
+
\index{\-O\-C\-\_\-\-D\-U\-P\-F\-R\-A\-M\-E@{\-O\-C\-\_\-\-D\-U\-P\-F\-R\-A\-M\-E}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
164
|
+
\subsubsection[{\-O\-C\-\_\-\-D\-U\-P\-F\-R\-A\-M\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-D\-U\-P\-F\-R\-A\-M\-E}~1}\label{group__oldfuncs_ga84a8d2f5080ad62b415a4e7551941cbb}
|
165
|
+
|
166
|
+
|
167
|
+
\-Packet is a dropped frame.
|
168
|
+
|
169
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-E\-I\-N\-V\-A\-L@{\-O\-C\-\_\-\-E\-I\-N\-V\-A\-L}}
|
170
|
+
\index{\-O\-C\-\_\-\-E\-I\-N\-V\-A\-L@{\-O\-C\-\_\-\-E\-I\-N\-V\-A\-L}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
171
|
+
\subsubsection[{\-O\-C\-\_\-\-E\-I\-N\-V\-A\-L}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-E\-I\-N\-V\-A\-L}~-\/10}\label{group__oldfuncs_ga43d15091b1a03a734a124e9a04d3be55}
|
172
|
+
|
173
|
+
|
174
|
+
\-Library encountered invalid internal data.
|
175
|
+
|
176
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-F\-A\-U\-L\-T@{\-O\-C\-\_\-\-F\-A\-U\-L\-T}}
|
177
|
+
\index{\-O\-C\-\_\-\-F\-A\-U\-L\-T@{\-O\-C\-\_\-\-F\-A\-U\-L\-T}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
178
|
+
\subsubsection[{\-O\-C\-\_\-\-F\-A\-U\-L\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-F\-A\-U\-L\-T}~-\/1}\label{group__oldfuncs_gaa4370e13ed3aea6441ccf69dcab2506e}
|
179
|
+
|
180
|
+
|
181
|
+
\-General failure.
|
182
|
+
|
183
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-I\-M\-P\-L@{\-O\-C\-\_\-\-I\-M\-P\-L}}
|
184
|
+
\index{\-O\-C\-\_\-\-I\-M\-P\-L@{\-O\-C\-\_\-\-I\-M\-P\-L}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
185
|
+
\subsubsection[{\-O\-C\-\_\-\-I\-M\-P\-L}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-I\-M\-P\-L}~-\/23}\label{group__oldfuncs_ga895dc2597b3bf9c97bf7701c6eff5b0c}
|
186
|
+
|
187
|
+
|
188
|
+
\-Feature or action not implemented.
|
189
|
+
|
190
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-N\-E\-W\-P\-A\-C\-K\-E\-T@{\-O\-C\-\_\-\-N\-E\-W\-P\-A\-C\-K\-E\-T}}
|
191
|
+
\index{\-O\-C\-\_\-\-N\-E\-W\-P\-A\-C\-K\-E\-T@{\-O\-C\-\_\-\-N\-E\-W\-P\-A\-C\-K\-E\-T}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
192
|
+
\subsubsection[{\-O\-C\-\_\-\-N\-E\-W\-P\-A\-C\-K\-E\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-N\-E\-W\-P\-A\-C\-K\-E\-T}~-\/25}\label{group__oldfuncs_ga60be4dc92c933eac3542bce3ce076496}
|
193
|
+
|
194
|
+
|
195
|
+
\-Packet is an (ignorable) unhandled extension.
|
196
|
+
|
197
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-N\-O\-T\-F\-O\-R\-M\-A\-T@{\-O\-C\-\_\-\-N\-O\-T\-F\-O\-R\-M\-A\-T}}
|
198
|
+
\index{\-O\-C\-\_\-\-N\-O\-T\-F\-O\-R\-M\-A\-T@{\-O\-C\-\_\-\-N\-O\-T\-F\-O\-R\-M\-A\-T}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
199
|
+
\subsubsection[{\-O\-C\-\_\-\-N\-O\-T\-F\-O\-R\-M\-A\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-N\-O\-T\-F\-O\-R\-M\-A\-T}~-\/21}\label{group__oldfuncs_ga9558d6d9eacd2273c8da27f945d725ad}
|
200
|
+
|
201
|
+
|
202
|
+
\-Packet is not a theora packet.
|
203
|
+
|
204
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-V\-E\-R\-S\-I\-O\-N@{\-O\-C\-\_\-\-V\-E\-R\-S\-I\-O\-N}}
|
205
|
+
\index{\-O\-C\-\_\-\-V\-E\-R\-S\-I\-O\-N@{\-O\-C\-\_\-\-V\-E\-R\-S\-I\-O\-N}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
206
|
+
\subsubsection[{\-O\-C\-\_\-\-V\-E\-R\-S\-I\-O\-N}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-O\-C\-\_\-\-V\-E\-R\-S\-I\-O\-N}~-\/22}\label{group__oldfuncs_ga4611cfd61160405721d1e2ab0ec2564b}
|
207
|
+
|
208
|
+
|
209
|
+
\-Bitstream version is not handled.
|
210
|
+
|
211
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X@{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}}
|
212
|
+
\index{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X@{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
213
|
+
\subsubsection[{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}~(1)}\label{group__oldfuncs_gab31f251c9319f2140d247585d30b3d07}
|
214
|
+
|
215
|
+
|
216
|
+
\-Get the maximum post-\/processing level.
|
217
|
+
|
218
|
+
\-The decoder supports a post-\/processing filter that can improve the appearance of the decoded images. \-This returns the highest level setting for this post-\/processor, corresponding to maximum improvement and computational expense. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-G\-R\-A\-N\-P\-O\-S@{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-G\-R\-A\-N\-P\-O\-S}}
|
219
|
+
\index{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-G\-R\-A\-N\-P\-O\-S@{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-G\-R\-A\-N\-P\-O\-S}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
220
|
+
\subsubsection[{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-G\-R\-A\-N\-P\-O\-S}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-G\-R\-A\-N\-P\-O\-S}~(5)}\label{group__oldfuncs_ga1e870c654d35394f0d490045df04e0f5}
|
221
|
+
|
222
|
+
|
223
|
+
\-Set the granule position.
|
224
|
+
|
225
|
+
\-Call this after a seek, to update the internal granulepos in the decoder, to insure that subsequent frames are marked properly. \-If you track timestamps yourself and do not use the granule postion returned by the decoder, then you do not need to use this control. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L@{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L}}
|
226
|
+
\index{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L@{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
227
|
+
\subsubsection[{\-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L}~(3)}\label{group__oldfuncs_ga87774c35e1a755a84e2d705b38ebef0d}
|
228
|
+
|
229
|
+
|
230
|
+
\-Set the post-\/processing level.
|
231
|
+
|
232
|
+
\-Sets the level of post-\/processing to use when decoding the compressed stream. \-This must be a value between zero (off) and the maximum returned by \-T\-H\-\_\-\-D\-E\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-P\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}}
|
233
|
+
\index{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
234
|
+
\subsubsection[{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}~(12)}\label{group__oldfuncs_ga9baf5bdd206e80c78a8fd44687e89783}
|
235
|
+
|
236
|
+
|
237
|
+
\-Gets the maximum speed level.
|
238
|
+
|
239
|
+
\-Higher speed levels favor quicker encoding over better quality per bit. \-Depending on the encoding mode, and the internal algorithms used, quality may actually improve, but in this case bitrate will also likely increase. \-In any case, overall rate/distortion performance will probably decrease. \-The maximum value, and the meaning of each value, may change depending on the current encoding mode (\-V\-B\-R vs. \-C\-Q\-I, etc.).
|
240
|
+
|
241
|
+
|
242
|
+
\begin{DoxyParams}[1]{\-Parameters}
|
243
|
+
\mbox{\tt out} & {\em buf} & int\-: \-The maximum encoding speed level. \\
|
244
|
+
\hline
|
245
|
+
\end{DoxyParams}
|
246
|
+
|
247
|
+
\begin{DoxyRetVals}{\-Return values}
|
248
|
+
{\em \-O\-C\-\_\-\-F\-A\-U\-L\-T} & {\itshape \doxyref{theora\-\_\-state}{p.}{structtheora__state}\/} or {\itshape buf\/} is {\ttfamily \-N\-U\-L\-L}. \\
|
249
|
+
\hline
|
250
|
+
{\em \-O\-C\-\_\-\-E\-I\-N\-V\-A\-L} & {\itshape buf\-\_\-sz\/} is not {\ttfamily sizeof(int)}. \\
|
251
|
+
\hline
|
252
|
+
{\em \-O\-C\-\_\-\-I\-M\-P\-L} & \-Not supported by this implementation in the current encoding mode. \\
|
253
|
+
\hline
|
254
|
+
\end{DoxyRetVals}
|
255
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-K\-E\-Y\-F\-R\-A\-M\-E\-\_\-\-F\-R\-E\-Q\-U\-E\-N\-C\-Y\-\_\-\-F\-O\-R\-C\-E@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-K\-E\-Y\-F\-R\-A\-M\-E\-\_\-\-F\-R\-E\-Q\-U\-E\-N\-C\-Y\-\_\-\-F\-O\-R\-C\-E}}
|
256
|
+
\index{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-K\-E\-Y\-F\-R\-A\-M\-E\-\_\-\-F\-R\-E\-Q\-U\-E\-N\-C\-Y\-\_\-\-F\-O\-R\-C\-E@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-K\-E\-Y\-F\-R\-A\-M\-E\-\_\-\-F\-R\-E\-Q\-U\-E\-N\-C\-Y\-\_\-\-F\-O\-R\-C\-E}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
257
|
+
\subsubsection[{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-K\-E\-Y\-F\-R\-A\-M\-E\-\_\-\-F\-R\-E\-Q\-U\-E\-N\-C\-Y\-\_\-\-F\-O\-R\-C\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-K\-E\-Y\-F\-R\-A\-M\-E\-\_\-\-F\-R\-E\-Q\-U\-E\-N\-C\-Y\-\_\-\-F\-O\-R\-C\-E}~(4)}\label{group__oldfuncs_ga27e755e15b4b5604c54974b304037a49}
|
258
|
+
|
259
|
+
|
260
|
+
\-Sets the maximum distance between key frames.
|
261
|
+
|
262
|
+
\-This can be changed during an encode, but will be bounded by {\ttfamily 1$<$$<$\doxyref{th\-\_\-info\-::keyframe\-\_\-granule\-\_\-shift}{p.}{structth__info_a693ca4ab11fbc0c3f32594b4bb8766ed}}. \-If it is set before encoding begins, \doxyref{th\-\_\-info\-::keyframe\-\_\-granule\-\_\-shift}{p.}{structth__info_a693ca4ab11fbc0c3f32594b4bb8766ed} will be enlarged appropriately.
|
263
|
+
|
264
|
+
|
265
|
+
\begin{DoxyParams}[1]{\-Parameters}
|
266
|
+
\mbox{\tt in} & {\em buf} & {\ttfamily ogg\-\_\-uint32\-\_\-t}\-: \-The maximum distance between key frames. \\
|
267
|
+
\hline
|
268
|
+
\mbox{\tt out} & {\em buf} & {\ttfamily ogg\-\_\-uint32\-\_\-t}\-: \-The actual maximum distance set. \\
|
269
|
+
\hline
|
270
|
+
\end{DoxyParams}
|
271
|
+
|
272
|
+
\begin{DoxyRetVals}{\-Return values}
|
273
|
+
{\em \-O\-C\-\_\-\-F\-A\-U\-L\-T} & {\itshape \doxyref{theora\-\_\-state}{p.}{structtheora__state}\/} or {\itshape buf\/} is {\ttfamily \-N\-U\-L\-L}. \\
|
274
|
+
\hline
|
275
|
+
{\em \-O\-C\-\_\-\-E\-I\-N\-V\-A\-L} & {\itshape buf\-\_\-sz\/} is not {\ttfamily sizeof(ogg\-\_\-uint32\-\_\-t)}. \\
|
276
|
+
\hline
|
277
|
+
{\em \-O\-C\-\_\-\-I\-M\-P\-L} & \-Not supported by this implementation. \\
|
278
|
+
\hline
|
279
|
+
\end{DoxyRetVals}
|
280
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-Q\-U\-A\-N\-T\-\_\-\-P\-A\-R\-A\-M\-S@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-Q\-U\-A\-N\-T\-\_\-\-P\-A\-R\-A\-M\-S}}
|
281
|
+
\index{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-Q\-U\-A\-N\-T\-\_\-\-P\-A\-R\-A\-M\-S@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-Q\-U\-A\-N\-T\-\_\-\-P\-A\-R\-A\-M\-S}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
282
|
+
\subsubsection[{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-Q\-U\-A\-N\-T\-\_\-\-P\-A\-R\-A\-M\-S}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-Q\-U\-A\-N\-T\-\_\-\-P\-A\-R\-A\-M\-S}~(2)}\label{group__oldfuncs_ga3befcdd66678f8d27034f9c4b16d1b9c}
|
283
|
+
|
284
|
+
|
285
|
+
\-Sets the quantization parameters to use.
|
286
|
+
|
287
|
+
\label{group__oldfuncs_encctlcodes_old}%
|
288
|
+
\-The parameters are copied, not stored by reference, so they can be freed after this call. {\ttfamily \-N\-U\-L\-L} may be specified to revert to the default parameters.
|
289
|
+
|
290
|
+
|
291
|
+
\begin{DoxyParams}[1]{\-Parameters}
|
292
|
+
\mbox{\tt in} & {\em buf} & \doxyref{th\-\_\-quant\-\_\-info}{p.}{structth__quant__info} \\
|
293
|
+
\hline
|
294
|
+
\end{DoxyParams}
|
295
|
+
|
296
|
+
\begin{DoxyRetVals}{\-Return values}
|
297
|
+
{\em \-O\-C\-\_\-\-F\-A\-U\-L\-T} & {\itshape \doxyref{theora\-\_\-state}{p.}{structtheora__state}\/} is {\ttfamily \-N\-U\-L\-L}. \\
|
298
|
+
\hline
|
299
|
+
{\em \-O\-C\-\_\-\-E\-I\-N\-V\-A\-L} & \-Encoding has already begun, the quantization parameters are not acceptable to this version of the encoder, {\itshape buf\/} is {\ttfamily \-N\-U\-L\-L} and {\itshape buf\-\_\-sz\/} is not zero, or {\itshape buf\/} is non-\/{\ttfamily \-N\-U\-L\-L} and {\itshape buf\-\_\-sz\/} is not {\ttfamily sizeof(\doxyref{th\-\_\-quant\-\_\-info}{p.}{structth__quant__info})}. \\
|
300
|
+
\hline
|
301
|
+
{\em \-O\-C\-\_\-\-I\-M\-P\-L} & \-Not supported by this implementation. \\
|
302
|
+
\hline
|
303
|
+
\end{DoxyRetVals}
|
304
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L}}
|
305
|
+
\index{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
306
|
+
\subsubsection[{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L}~(14)}\label{group__oldfuncs_gabd9fbcb6a25a77d991d3620164fe59d6}
|
307
|
+
|
308
|
+
|
309
|
+
\-Sets the speed level.
|
310
|
+
|
311
|
+
\-By default a speed value of 1 is used.
|
312
|
+
|
313
|
+
|
314
|
+
\begin{DoxyParams}[1]{\-Parameters}
|
315
|
+
\mbox{\tt in} & {\em buf} & int\-: \-The new encoding speed level. 0 is slowest, larger values use less \-C\-P\-U. \\
|
316
|
+
\hline
|
317
|
+
\end{DoxyParams}
|
318
|
+
|
319
|
+
\begin{DoxyRetVals}{\-Return values}
|
320
|
+
{\em \-O\-C\-\_\-\-F\-A\-U\-L\-T} & {\itshape \doxyref{theora\-\_\-state}{p.}{structtheora__state}\/} or {\itshape buf\/} is {\ttfamily \-N\-U\-L\-L}. \\
|
321
|
+
\hline
|
322
|
+
{\em \-O\-C\-\_\-\-E\-I\-N\-V\-A\-L} & {\itshape buf\-\_\-sz\/} is not {\ttfamily sizeof(int)}, or the encoding speed level is out of bounds. \-The maximum encoding speed level may be implementation-\/ and encoding mode-\/specific, and can be obtained via \doxyref{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-G\-E\-T\-\_\-\-S\-P\-L\-E\-V\-E\-L\-\_\-\-M\-A\-X}{p.}{group__oldfuncs_ga9baf5bdd206e80c78a8fd44687e89783}. \\
|
323
|
+
\hline
|
324
|
+
{\em \-O\-C\-\_\-\-I\-M\-P\-L} & \-Not supported by this implementation in the current encoding mode. \\
|
325
|
+
\hline
|
326
|
+
\end{DoxyRetVals}
|
327
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-V\-P3\-\_\-\-C\-O\-M\-P\-A\-T\-I\-B\-L\-E@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-V\-P3\-\_\-\-C\-O\-M\-P\-A\-T\-I\-B\-L\-E}}
|
328
|
+
\index{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-V\-P3\-\_\-\-C\-O\-M\-P\-A\-T\-I\-B\-L\-E@{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-V\-P3\-\_\-\-C\-O\-M\-P\-A\-T\-I\-B\-L\-E}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
329
|
+
\subsubsection[{\-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-V\-P3\-\_\-\-C\-O\-M\-P\-A\-T\-I\-B\-L\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define {\bf \-T\-H\-\_\-\-E\-N\-C\-C\-T\-L\-\_\-\-S\-E\-T\-\_\-\-V\-P3\-\_\-\-C\-O\-M\-P\-A\-T\-I\-B\-L\-E}~(10)}\label{group__oldfuncs_ga382d685a39a34d8e6ba76b00d804efd8}
|
330
|
+
|
331
|
+
|
332
|
+
\-Disables any encoder features that would prevent lossless transcoding back to \-V\-P3.
|
333
|
+
|
334
|
+
\-This primarily means disabling block-\/level \-Q\-I values and not using 4\-M\-V mode when any of the luma blocks in a macro block are not coded. \-It also includes using the \-V\-P3 quantization tables and \-Huffman codes; if you set them explicitly after calling this function, the resulting stream will not be \-V\-P3-\/compatible. \-If you enable \-V\-P3-\/compatibility when encoding 4\-:2\-:2 or 4\-:4\-:4 source material, or when using a picture region smaller than the full frame (e.\-g. a non-\/multiple-\/of-\/16 width or height), then non-\/\-V\-P3 bitstream features will still be disabled, but the stream will still not be \-V\-P3-\/compatible, as \-V\-P3 was not capable of encoding such formats. \-If you call this after encoding has already begun, then the quantization tables and codebooks cannot be changed, but the frame-\/level features will be enabled or disabled as requested.
|
335
|
+
|
336
|
+
|
337
|
+
\begin{DoxyParams}[1]{\-Parameters}
|
338
|
+
\mbox{\tt in} & {\em buf} & {\ttfamily int}\-: a non-\/zero value to enable \-V\-P3 compatibility, or 0 to disable it (the default). \\
|
339
|
+
\hline
|
340
|
+
\mbox{\tt out} & {\em buf} & {\ttfamily int}\-: 1 if all bitstream features required for \-V\-P3-\/compatibility could be set, and 0 otherwise. \-The latter will be returned if the pixel format is not 4\-:2\-:0, the picture region is smaller than the full frame, or if encoding has begun, preventing the quantization tables and codebooks from being set. \\
|
341
|
+
\hline
|
342
|
+
\end{DoxyParams}
|
343
|
+
|
344
|
+
\begin{DoxyRetVals}{\-Return values}
|
345
|
+
{\em \-O\-C\-\_\-\-F\-A\-U\-L\-T} & {\itshape \doxyref{theora\-\_\-state}{p.}{structtheora__state}\/} or {\itshape buf\/} is {\ttfamily \-N\-U\-L\-L}. \\
|
346
|
+
\hline
|
347
|
+
{\em \-O\-C\-\_\-\-E\-I\-N\-V\-A\-L} & {\itshape buf\-\_\-sz\/} is not {\ttfamily sizeof(int)}. \\
|
348
|
+
\hline
|
349
|
+
{\em \-O\-C\-\_\-\-I\-M\-P\-L} & \-Not supported by this implementation. \\
|
350
|
+
\hline
|
351
|
+
\end{DoxyRetVals}
|
352
|
+
|
353
|
+
|
354
|
+
\subsection{\-Typedef \-Documentation}
|
355
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-comment@{theora\-\_\-comment}}
|
356
|
+
\index{theora\-\_\-comment@{theora\-\_\-comment}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
357
|
+
\subsubsection[{theora\-\_\-comment}]{\setlength{\rightskip}{0pt plus 5cm}typedef struct {\bf theora\-\_\-comment} {\bf theora\-\_\-comment}}\label{group__oldfuncs_gaa504e8a56a4bf9c8e44f77d05aef0bb5}
|
358
|
+
|
359
|
+
|
360
|
+
\-Comment header metadata.
|
361
|
+
|
362
|
+
\-This structure holds the in-\/stream metadata corresponding to the 'comment' header packet.
|
363
|
+
|
364
|
+
\-Meta data is stored as a series of (tag, value) pairs, in length-\/encoded string vectors. \-The first occurence of the '=' character delimits the tag and value. \-A particular tag may occur more than once. \-The character set encoding for the strings is always \-U\-T\-F-\/8, but the tag names are limited to case-\/insensitive \-A\-S\-C\-I\-I. \-See the spec for details.
|
365
|
+
|
366
|
+
\-In filling in this structure, \doxyref{theora\-\_\-decode\-\_\-header()}{p.}{group__oldfuncs_ga02915e63c1bd733ee291f577a8b75a82} will null-\/terminate the user\-\_\-comment strings for safety. \-However, the bitstream format itself treats them as 8-\/bit clean, and so the length array should be treated as authoritative for their length.
|
367
|
+
|
368
|
+
\subsection{\-Enumeration \-Type \-Documentation}
|
369
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-colorspace@{theora\-\_\-colorspace}}
|
370
|
+
\index{theora\-\_\-colorspace@{theora\-\_\-colorspace}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
371
|
+
\subsubsection[{theora\-\_\-colorspace}]{\setlength{\rightskip}{0pt plus 5cm}enum {\bf theora\-\_\-colorspace}}\label{group__oldfuncs_gaa567da4ce591f7373149ce3ef3acdac9}
|
372
|
+
|
373
|
+
|
374
|
+
\-A \-Colorspace.
|
375
|
+
|
376
|
+
\begin{Desc}
|
377
|
+
\item[\-Enumerator\-: ]\par
|
378
|
+
\begin{description}
|
379
|
+
\index{\-O\-C\-\_\-\-C\-S\-\_\-\-U\-N\-S\-P\-E\-C\-I\-F\-I\-E\-D@{\-O\-C\-\_\-\-C\-S\-\_\-\-U\-N\-S\-P\-E\-C\-I\-F\-I\-E\-D}!\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}}\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-C\-S\-\_\-\-U\-N\-S\-P\-E\-C\-I\-F\-I\-E\-D@{\-O\-C\-\_\-\-C\-S\-\_\-\-U\-N\-S\-P\-E\-C\-I\-F\-I\-E\-D}}\item[{\em
|
380
|
+
\-O\-C\-\_\-\-C\-S\-\_\-\-U\-N\-S\-P\-E\-C\-I\-F\-I\-E\-D\label{group__oldfuncs_ggaa567da4ce591f7373149ce3ef3acdac9abf217cf83d7d7cbf73295e6689f5cf5f}
|
381
|
+
}]\-The colorspace is unknown or unspecified. \index{\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-M@{\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-M}!\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}}\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-M@{\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-M}}\item[{\em
|
382
|
+
\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-M\label{group__oldfuncs_ggaa567da4ce591f7373149ce3ef3acdac9ab20c9851a21ab148fef0bf2c00c0a294}
|
383
|
+
}]\-This is the best option for '\-N\-T\-S\-C' content. \index{\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-B\-G@{\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-B\-G}!\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}}\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-B\-G@{\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-B\-G}}\item[{\em
|
384
|
+
\-O\-C\-\_\-\-C\-S\-\_\-\-I\-T\-U\-\_\-\-R\-E\-C\-\_\-470\-B\-G\label{group__oldfuncs_ggaa567da4ce591f7373149ce3ef3acdac9a04f8fa2da26f9ec513f514163705666a}
|
385
|
+
}]\-This is the best option for '\-P\-A\-L' content. \index{\-O\-C\-\_\-\-C\-S\-\_\-\-N\-S\-P\-A\-C\-E\-S@{\-O\-C\-\_\-\-C\-S\-\_\-\-N\-S\-P\-A\-C\-E\-S}!\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}}\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-C\-S\-\_\-\-N\-S\-P\-A\-C\-E\-S@{\-O\-C\-\_\-\-C\-S\-\_\-\-N\-S\-P\-A\-C\-E\-S}}\item[{\em
|
386
|
+
\-O\-C\-\_\-\-C\-S\-\_\-\-N\-S\-P\-A\-C\-E\-S\label{group__oldfuncs_ggaa567da4ce591f7373149ce3ef3acdac9a640b572f11fa7102d434e1c605aaa186}
|
387
|
+
}]\-This marks the end of the defined colorspaces. \end{description}
|
388
|
+
\end{Desc}
|
389
|
+
|
390
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-pixelformat@{theora\-\_\-pixelformat}}
|
391
|
+
\index{theora\-\_\-pixelformat@{theora\-\_\-pixelformat}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
392
|
+
\subsubsection[{theora\-\_\-pixelformat}]{\setlength{\rightskip}{0pt plus 5cm}enum {\bf theora\-\_\-pixelformat}}\label{group__oldfuncs_gae169da05bfaaf4e964a6866552d45079}
|
393
|
+
|
394
|
+
|
395
|
+
\-A \-Chroma subsampling.
|
396
|
+
|
397
|
+
\-These enumerate the available chroma subsampling options supported by the theora format. \-See \-Section 4.\-4 of the specification for exact definitions. \begin{Desc}
|
398
|
+
\item[\-Enumerator\-: ]\par
|
399
|
+
\begin{description}
|
400
|
+
\index{\-O\-C\-\_\-\-P\-F\-\_\-420@{\-O\-C\-\_\-\-P\-F\-\_\-420}!\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}}\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-P\-F\-\_\-420@{\-O\-C\-\_\-\-P\-F\-\_\-420}}\item[{\em
|
401
|
+
\-O\-C\-\_\-\-P\-F\-\_\-420\label{group__oldfuncs_ggae169da05bfaaf4e964a6866552d45079a4e451af01be2645511b0e431f5225d2b}
|
402
|
+
}]\-Chroma subsampling by 2 in each direction (4\-:2\-:0) \index{\-O\-C\-\_\-\-P\-F\-\_\-\-R\-S\-V\-D@{\-O\-C\-\_\-\-P\-F\-\_\-\-R\-S\-V\-D}!\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}}\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-P\-F\-\_\-\-R\-S\-V\-D@{\-O\-C\-\_\-\-P\-F\-\_\-\-R\-S\-V\-D}}\item[{\em
|
403
|
+
\-O\-C\-\_\-\-P\-F\-\_\-\-R\-S\-V\-D\label{group__oldfuncs_ggae169da05bfaaf4e964a6866552d45079a7d21c63341ad299766839c83ed1216eb}
|
404
|
+
}]\-Reserved value. \index{\-O\-C\-\_\-\-P\-F\-\_\-422@{\-O\-C\-\_\-\-P\-F\-\_\-422}!\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}}\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-P\-F\-\_\-422@{\-O\-C\-\_\-\-P\-F\-\_\-422}}\item[{\em
|
405
|
+
\-O\-C\-\_\-\-P\-F\-\_\-422\label{group__oldfuncs_ggae169da05bfaaf4e964a6866552d45079a36a88c55b7ddd5aedeac2d61d57fee5b}
|
406
|
+
}]\-Horizonatal chroma subsampling by 2 (4\-:2\-:2) \index{\-O\-C\-\_\-\-P\-F\-\_\-444@{\-O\-C\-\_\-\-P\-F\-\_\-444}!\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}}\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!\-O\-C\-\_\-\-P\-F\-\_\-444@{\-O\-C\-\_\-\-P\-F\-\_\-444}}\item[{\em
|
407
|
+
\-O\-C\-\_\-\-P\-F\-\_\-444\label{group__oldfuncs_ggae169da05bfaaf4e964a6866552d45079a1d5c6d1b0365e06b4a87880b7825f044}
|
408
|
+
}]\-No chroma subsampling at all (4\-:4\-:4) \end{description}
|
409
|
+
\end{Desc}
|
410
|
+
|
411
|
+
|
412
|
+
|
413
|
+
\subsection{\-Function \-Documentation}
|
414
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-clear@{theora\-\_\-clear}}
|
415
|
+
\index{theora\-\_\-clear@{theora\-\_\-clear}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
416
|
+
\subsubsection[{theora\-\_\-clear}]{\setlength{\rightskip}{0pt plus 5cm}void {\bf theora\-\_\-clear} (
|
417
|
+
\begin{DoxyParamCaption}
|
418
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{t}
|
419
|
+
\end{DoxyParamCaption}
|
420
|
+
)}\label{group__oldfuncs_gab252d5d81b925136dda72e8f1c09c5eb}
|
421
|
+
|
422
|
+
|
423
|
+
\-Free all internal data associated with a \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle.
|
424
|
+
|
425
|
+
|
426
|
+
\begin{DoxyParams}{\-Parameters}
|
427
|
+
{\em t} & \-A \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle. \\
|
428
|
+
\hline
|
429
|
+
\end{DoxyParams}
|
430
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-comment\-\_\-add@{theora\-\_\-comment\-\_\-add}}
|
431
|
+
\index{theora\-\_\-comment\-\_\-add@{theora\-\_\-comment\-\_\-add}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
432
|
+
\subsubsection[{theora\-\_\-comment\-\_\-add}]{\setlength{\rightskip}{0pt plus 5cm}void {\bf theora\-\_\-comment\-\_\-add} (
|
433
|
+
\begin{DoxyParamCaption}
|
434
|
+
\item[{{\bf theora\-\_\-comment} $\ast$}]{tc, }
|
435
|
+
\item[{char $\ast$}]{comment}
|
436
|
+
\end{DoxyParamCaption}
|
437
|
+
)}\label{group__oldfuncs_ga650642ed23894e41109bbc42ec393ed4}
|
438
|
+
|
439
|
+
|
440
|
+
\-Add a comment to an initialized \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure.
|
441
|
+
|
442
|
+
|
443
|
+
\begin{DoxyParams}{\-Parameters}
|
444
|
+
{\em tc} & \-A previously initialized theora comment structure \\
|
445
|
+
\hline
|
446
|
+
{\em comment} & \-A null-\/terminated string encoding the comment in the form \char`\"{}\-T\-A\-G=the value\char`\"{}\\
|
447
|
+
\hline
|
448
|
+
\end{DoxyParams}
|
449
|
+
\-Neither \doxyref{theora\-\_\-comment\-\_\-add()}{p.}{group__oldfuncs_ga650642ed23894e41109bbc42ec393ed4} nor \doxyref{theora\-\_\-comment\-\_\-add\-\_\-tag()}{p.}{group__oldfuncs_ga339bd80b5bf4bb168b7052d8ec0b5a92} support comments containing null values, although the bitstream format supports this. \-To add such comments you will need to manipulate the \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure directly. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-comment\-\_\-add\-\_\-tag@{theora\-\_\-comment\-\_\-add\-\_\-tag}}
|
450
|
+
\index{theora\-\_\-comment\-\_\-add\-\_\-tag@{theora\-\_\-comment\-\_\-add\-\_\-tag}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
451
|
+
\subsubsection[{theora\-\_\-comment\-\_\-add\-\_\-tag}]{\setlength{\rightskip}{0pt plus 5cm}void {\bf theora\-\_\-comment\-\_\-add\-\_\-tag} (
|
452
|
+
\begin{DoxyParamCaption}
|
453
|
+
\item[{{\bf theora\-\_\-comment} $\ast$}]{tc, }
|
454
|
+
\item[{char $\ast$}]{tag, }
|
455
|
+
\item[{char $\ast$}]{value}
|
456
|
+
\end{DoxyParamCaption}
|
457
|
+
)}\label{group__oldfuncs_ga339bd80b5bf4bb168b7052d8ec0b5a92}
|
458
|
+
|
459
|
+
|
460
|
+
\-Add a comment to an initialized \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure.
|
461
|
+
|
462
|
+
|
463
|
+
\begin{DoxyParams}{\-Parameters}
|
464
|
+
{\em tc} & \-A previously initialized theora comment structure \\
|
465
|
+
\hline
|
466
|
+
{\em tag} & \-A null-\/terminated string containing the tag associated with the comment. \\
|
467
|
+
\hline
|
468
|
+
{\em value} & \-The corresponding value as a null-\/terminated string\\
|
469
|
+
\hline
|
470
|
+
\end{DoxyParams}
|
471
|
+
\-Neither \doxyref{theora\-\_\-comment\-\_\-add()}{p.}{group__oldfuncs_ga650642ed23894e41109bbc42ec393ed4} nor \doxyref{theora\-\_\-comment\-\_\-add\-\_\-tag()}{p.}{group__oldfuncs_ga339bd80b5bf4bb168b7052d8ec0b5a92} support comments containing null values, although the bitstream format supports this. \-To add such comments you will need to manipulate the \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure directly. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-comment\-\_\-clear@{theora\-\_\-comment\-\_\-clear}}
|
472
|
+
\index{theora\-\_\-comment\-\_\-clear@{theora\-\_\-comment\-\_\-clear}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
473
|
+
\subsubsection[{theora\-\_\-comment\-\_\-clear}]{\setlength{\rightskip}{0pt plus 5cm}void {\bf theora\-\_\-comment\-\_\-clear} (
|
474
|
+
\begin{DoxyParamCaption}
|
475
|
+
\item[{{\bf theora\-\_\-comment} $\ast$}]{tc}
|
476
|
+
\end{DoxyParamCaption}
|
477
|
+
)}\label{group__oldfuncs_ga04c07c2eefba3a433e43f9fbde14719f}
|
478
|
+
|
479
|
+
|
480
|
+
\-Clear an allocated \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} struct so that it can be freed.
|
481
|
+
|
482
|
+
|
483
|
+
\begin{DoxyParams}{\-Parameters}
|
484
|
+
{\em tc} & \-An allocated \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure. \\
|
485
|
+
\hline
|
486
|
+
\end{DoxyParams}
|
487
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-comment\-\_\-init@{theora\-\_\-comment\-\_\-init}}
|
488
|
+
\index{theora\-\_\-comment\-\_\-init@{theora\-\_\-comment\-\_\-init}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
489
|
+
\subsubsection[{theora\-\_\-comment\-\_\-init}]{\setlength{\rightskip}{0pt plus 5cm}void {\bf theora\-\_\-comment\-\_\-init} (
|
490
|
+
\begin{DoxyParamCaption}
|
491
|
+
\item[{{\bf theora\-\_\-comment} $\ast$}]{tc}
|
492
|
+
\end{DoxyParamCaption}
|
493
|
+
)}\label{group__oldfuncs_ga811b92785df3bdbbebb3de612d9d6ce0}
|
494
|
+
|
495
|
+
|
496
|
+
\-Initialize an allocated \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure.
|
497
|
+
|
498
|
+
|
499
|
+
\begin{DoxyParams}{\-Parameters}
|
500
|
+
{\em tc} & \-An allocated \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure \\
|
501
|
+
\hline
|
502
|
+
\end{DoxyParams}
|
503
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-comment\-\_\-query@{theora\-\_\-comment\-\_\-query}}
|
504
|
+
\index{theora\-\_\-comment\-\_\-query@{theora\-\_\-comment\-\_\-query}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
505
|
+
\subsubsection[{theora\-\_\-comment\-\_\-query}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ {\bf theora\-\_\-comment\-\_\-query} (
|
506
|
+
\begin{DoxyParamCaption}
|
507
|
+
\item[{{\bf theora\-\_\-comment} $\ast$}]{tc, }
|
508
|
+
\item[{char $\ast$}]{tag, }
|
509
|
+
\item[{int}]{count}
|
510
|
+
\end{DoxyParamCaption}
|
511
|
+
)}\label{group__oldfuncs_ga4361f6001abb5c83c36a2ddfb648a8dc}
|
512
|
+
|
513
|
+
|
514
|
+
\-Look up a comment value by tag.
|
515
|
+
|
516
|
+
|
517
|
+
\begin{DoxyParams}{\-Parameters}
|
518
|
+
{\em tc} & \-Tn initialized \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure \\
|
519
|
+
\hline
|
520
|
+
{\em tag} & \-The tag to look up \\
|
521
|
+
\hline
|
522
|
+
{\em count} & \-The instance of the tag. \-The same tag can appear multiple times, each with a distinct and ordered value, so an index is required to retrieve them all. \\
|
523
|
+
\hline
|
524
|
+
\end{DoxyParams}
|
525
|
+
\begin{DoxyReturn}{\-Returns}
|
526
|
+
\-A pointer to the queried tag's value
|
527
|
+
\end{DoxyReturn}
|
528
|
+
|
529
|
+
\begin{DoxyRetVals}{\-Return values}
|
530
|
+
{\em \-N\-U\-L\-L} & \-No matching tag is found\\
|
531
|
+
\hline
|
532
|
+
\end{DoxyRetVals}
|
533
|
+
\begin{DoxyNote}{\-Note}
|
534
|
+
\-Use \doxyref{theora\-\_\-comment\-\_\-query\-\_\-count()}{p.}{group__oldfuncs_ga10f66a3c752442a3e0c0098e0f88df8b} to get the legal range for the count parameter.
|
535
|
+
\end{DoxyNote}
|
536
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-comment\-\_\-query\-\_\-count@{theora\-\_\-comment\-\_\-query\-\_\-count}}
|
537
|
+
\index{theora\-\_\-comment\-\_\-query\-\_\-count@{theora\-\_\-comment\-\_\-query\-\_\-count}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
538
|
+
\subsubsection[{theora\-\_\-comment\-\_\-query\-\_\-count}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-comment\-\_\-query\-\_\-count} (
|
539
|
+
\begin{DoxyParamCaption}
|
540
|
+
\item[{{\bf theora\-\_\-comment} $\ast$}]{tc, }
|
541
|
+
\item[{char $\ast$}]{tag}
|
542
|
+
\end{DoxyParamCaption}
|
543
|
+
)}\label{group__oldfuncs_ga10f66a3c752442a3e0c0098e0f88df8b}
|
544
|
+
|
545
|
+
|
546
|
+
\-Look up the number of instances of a tag.
|
547
|
+
|
548
|
+
|
549
|
+
\begin{DoxyParams}{\-Parameters}
|
550
|
+
{\em tc} & \-An initialized \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure \\
|
551
|
+
\hline
|
552
|
+
{\em tag} & \-The tag to look up \\
|
553
|
+
\hline
|
554
|
+
\end{DoxyParams}
|
555
|
+
\begin{DoxyReturn}{\-Returns}
|
556
|
+
\-The number on instances of a particular tag.
|
557
|
+
\end{DoxyReturn}
|
558
|
+
\-Call this first when querying for a specific tag and then interate over the number of instances with separate calls to \doxyref{theora\-\_\-comment\-\_\-query()}{p.}{group__oldfuncs_ga4361f6001abb5c83c36a2ddfb648a8dc} to retrieve all instances in order. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-control@{theora\-\_\-control}}
|
559
|
+
\index{theora\-\_\-control@{theora\-\_\-control}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
560
|
+
\subsubsection[{theora\-\_\-control}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-control} (
|
561
|
+
\begin{DoxyParamCaption}
|
562
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{th, }
|
563
|
+
\item[{int}]{req, }
|
564
|
+
\item[{void $\ast$}]{buf, }
|
565
|
+
\item[{size\-\_\-t}]{buf\-\_\-sz}
|
566
|
+
\end{DoxyParamCaption}
|
567
|
+
)}\label{group__oldfuncs_ga186773db3bc8cd550047e7df1b2ba2c9}
|
568
|
+
|
569
|
+
|
570
|
+
\-Encoder control function.
|
571
|
+
|
572
|
+
\-This is used to provide advanced control the encoding process.
|
573
|
+
\begin{DoxyParams}{\-Parameters}
|
574
|
+
{\em th} & \-A \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle. \\
|
575
|
+
\hline
|
576
|
+
{\em req} & \-The control code to process. \-See \doxyref{the list of available }{p.}{group__oldfuncs_encctlcodes_old} control codes" for details. \\
|
577
|
+
\hline
|
578
|
+
{\em buf} & \-The parameters for this control code. \\
|
579
|
+
\hline
|
580
|
+
{\em buf\-\_\-sz} & \-The size of the parameter buffer. \\
|
581
|
+
\hline
|
582
|
+
\end{DoxyParams}
|
583
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-decode\-\_\-header@{theora\-\_\-decode\-\_\-header}}
|
584
|
+
\index{theora\-\_\-decode\-\_\-header@{theora\-\_\-decode\-\_\-header}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
585
|
+
\subsubsection[{theora\-\_\-decode\-\_\-header}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-decode\-\_\-header} (
|
586
|
+
\begin{DoxyParamCaption}
|
587
|
+
\item[{{\bf theora\-\_\-info} $\ast$}]{ci, }
|
588
|
+
\item[{{\bf theora\-\_\-comment} $\ast$}]{cc, }
|
589
|
+
\item[{ogg\-\_\-packet $\ast$}]{op}
|
590
|
+
\end{DoxyParamCaption}
|
591
|
+
)}\label{group__oldfuncs_ga02915e63c1bd733ee291f577a8b75a82}
|
592
|
+
|
593
|
+
|
594
|
+
\-Decode an \-Ogg packet, with the expectation that the packet contains an initial header, comment data or codebook tables.
|
595
|
+
|
596
|
+
|
597
|
+
\begin{DoxyParams}{\-Parameters}
|
598
|
+
{\em ci} & \-A \doxyref{theora\-\_\-info}{p.}{structtheora__info} structure to fill. \-This must have been previously initialized with \doxyref{theora\-\_\-info\-\_\-init()}{p.}{group__oldfuncs_ga3091c87d48f1faba018c5956379a6d90}. \-If {\itshape op\/} contains an initial header, \doxyref{theora\-\_\-decode\-\_\-header()}{p.}{group__oldfuncs_ga02915e63c1bd733ee291f577a8b75a82} will fill {\itshape ci\/} with the parsed header values. \-If {\itshape op\/} contains codebook tables, \doxyref{theora\-\_\-decode\-\_\-header()}{p.}{group__oldfuncs_ga02915e63c1bd733ee291f577a8b75a82} will parse these and attach an internal representation to {\itshape ci-\/$>$codec\-\_\-setup\/}. \\
|
599
|
+
\hline
|
600
|
+
{\em cc} & \-A \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure to fill. \-If {\itshape op\/} contains comment data, \doxyref{theora\-\_\-decode\-\_\-header()}{p.}{group__oldfuncs_ga02915e63c1bd733ee291f577a8b75a82} will fill {\itshape cc\/} with the parsed comments. \\
|
601
|
+
\hline
|
602
|
+
{\em op} & \-An ogg\-\_\-packet structure which you expect contains an initial header, comment data or codebook tables.\\
|
603
|
+
\hline
|
604
|
+
\end{DoxyParams}
|
605
|
+
|
606
|
+
\begin{DoxyRetVals}{\-Return values}
|
607
|
+
{\em \-O\-C\-\_\-\-B\-A\-D\-H\-E\-A\-D\-E\-R} & {\itshape op\/} is \-N\-U\-L\-L; \-O\-R the first byte of {\itshape op-\/$>$packet\/} has the signature of an initial packet, but op is not a b\-\_\-o\-\_\-s packet; \-O\-R this packet has the signature of an initial header packet, but an initial header packet has already been seen; \-O\-R this packet has the signature of a comment packet, but the initial header has not yet been seen; \-O\-R this packet has the signature of a comment packet, but contains invalid data; \-O\-R this packet has the signature of codebook tables, but the initial header or comments have not yet been seen; \-O\-R this packet has the signature of codebook tables, but contains invalid data; \-O\-R the stream being decoded has a compatible version but this packet does not have the signature of a theora initial header, comments, or codebook packet \\
|
608
|
+
\hline
|
609
|
+
{\em \-O\-C\-\_\-\-V\-E\-R\-S\-I\-O\-N} & \-The packet data of {\itshape op\/} is an initial header with a version which is incompatible with this version of libtheora. \\
|
610
|
+
\hline
|
611
|
+
{\em \-O\-C\-\_\-\-N\-E\-W\-P\-A\-C\-K\-E\-T} & the stream being decoded has an incompatible (future) version and contains an unknown signature. \\
|
612
|
+
\hline
|
613
|
+
{\em 0} & \-Success\\
|
614
|
+
\hline
|
615
|
+
\end{DoxyRetVals}
|
616
|
+
\begin{DoxyNote}{\-Note}
|
617
|
+
\-The normal usage is that \doxyref{theora\-\_\-decode\-\_\-header()}{p.}{group__oldfuncs_ga02915e63c1bd733ee291f577a8b75a82} be called on the first three packets of a theora logical bitstream in succession.
|
618
|
+
\end{DoxyNote}
|
619
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-decode\-\_\-init@{theora\-\_\-decode\-\_\-init}}
|
620
|
+
\index{theora\-\_\-decode\-\_\-init@{theora\-\_\-decode\-\_\-init}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
621
|
+
\subsubsection[{theora\-\_\-decode\-\_\-init}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-decode\-\_\-init} (
|
622
|
+
\begin{DoxyParamCaption}
|
623
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{th, }
|
624
|
+
\item[{{\bf theora\-\_\-info} $\ast$}]{c}
|
625
|
+
\end{DoxyParamCaption}
|
626
|
+
)}\label{group__oldfuncs_ga264907c66003799ff77ecbd09eb33d2c}
|
627
|
+
|
628
|
+
|
629
|
+
\-Initialize a \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle for decoding.
|
630
|
+
|
631
|
+
|
632
|
+
\begin{DoxyParams}{\-Parameters}
|
633
|
+
{\em th} & \-The \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle to initialize. \\
|
634
|
+
\hline
|
635
|
+
{\em c} & \-A \doxyref{theora\-\_\-info}{p.}{structtheora__info} struct filled with the desired decoding parameters. \-This is of course usually obtained from a previous call to \doxyref{theora\-\_\-decode\-\_\-header()}{p.}{group__oldfuncs_ga02915e63c1bd733ee291f577a8b75a82}. \\
|
636
|
+
\hline
|
637
|
+
\end{DoxyParams}
|
638
|
+
|
639
|
+
\begin{DoxyRetVals}{\-Return values}
|
640
|
+
{\em 0} & \-Success \\
|
641
|
+
\hline
|
642
|
+
\end{DoxyRetVals}
|
643
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-decode\-\_\-packetin@{theora\-\_\-decode\-\_\-packetin}}
|
644
|
+
\index{theora\-\_\-decode\-\_\-packetin@{theora\-\_\-decode\-\_\-packetin}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
645
|
+
\subsubsection[{theora\-\_\-decode\-\_\-packetin}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-decode\-\_\-packetin} (
|
646
|
+
\begin{DoxyParamCaption}
|
647
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{th, }
|
648
|
+
\item[{ogg\-\_\-packet $\ast$}]{op}
|
649
|
+
\end{DoxyParamCaption}
|
650
|
+
)}\label{group__oldfuncs_gaa65a9e53b46fd54ab344bd599fa96975}
|
651
|
+
|
652
|
+
|
653
|
+
\-Input a packet containing encoded data into the theora decoder.
|
654
|
+
|
655
|
+
|
656
|
+
\begin{DoxyParams}{\-Parameters}
|
657
|
+
{\em th} & \-A \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle previously initialized for decoding. \\
|
658
|
+
\hline
|
659
|
+
{\em op} & \-An ogg\-\_\-packet containing encoded theora data. \\
|
660
|
+
\hline
|
661
|
+
\end{DoxyParams}
|
662
|
+
|
663
|
+
\begin{DoxyRetVals}{\-Return values}
|
664
|
+
{\em 0} & \-Success \\
|
665
|
+
\hline
|
666
|
+
{\em \-O\-C\-\_\-\-B\-A\-D\-P\-A\-C\-K\-E\-T} & {\itshape op\/} does not contain encoded video data \\
|
667
|
+
\hline
|
668
|
+
\end{DoxyRetVals}
|
669
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-decode\-\_\-\-Y\-U\-Vout@{theora\-\_\-decode\-\_\-\-Y\-U\-Vout}}
|
670
|
+
\index{theora\-\_\-decode\-\_\-\-Y\-U\-Vout@{theora\-\_\-decode\-\_\-\-Y\-U\-Vout}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
671
|
+
\subsubsection[{theora\-\_\-decode\-\_\-\-Y\-U\-Vout}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-decode\-\_\-\-Y\-U\-Vout} (
|
672
|
+
\begin{DoxyParamCaption}
|
673
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{th, }
|
674
|
+
\item[{{\bf yuv\-\_\-buffer} $\ast$}]{yuv}
|
675
|
+
\end{DoxyParamCaption}
|
676
|
+
)}\label{group__oldfuncs_ga09d47c80e1e94bff0a46a496816b8daa}
|
677
|
+
|
678
|
+
|
679
|
+
\-Output the next available frame of decoded \-Y\-U\-V data.
|
680
|
+
|
681
|
+
|
682
|
+
\begin{DoxyParams}{\-Parameters}
|
683
|
+
{\em th} & \-A \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle previously initialized for decoding. \\
|
684
|
+
\hline
|
685
|
+
{\em yuv} & \-A \doxyref{yuv\-\_\-buffer}{p.}{structyuv__buffer} in which libtheora should place the decoded data. \-Note that the buffer struct itself is allocated by the user, but that the luma and chroma pointers will be filled in by the library. \-Also note that these luma and chroma regions should be considered read-\/only by the user. \\
|
686
|
+
\hline
|
687
|
+
\end{DoxyParams}
|
688
|
+
|
689
|
+
\begin{DoxyRetVals}{\-Return values}
|
690
|
+
{\em 0} & \-Success \\
|
691
|
+
\hline
|
692
|
+
\end{DoxyRetVals}
|
693
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-encode\-\_\-comment@{theora\-\_\-encode\-\_\-comment}}
|
694
|
+
\index{theora\-\_\-encode\-\_\-comment@{theora\-\_\-encode\-\_\-comment}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
695
|
+
\subsubsection[{theora\-\_\-encode\-\_\-comment}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-encode\-\_\-comment} (
|
696
|
+
\begin{DoxyParamCaption}
|
697
|
+
\item[{{\bf theora\-\_\-comment} $\ast$}]{tc, }
|
698
|
+
\item[{ogg\-\_\-packet $\ast$}]{op}
|
699
|
+
\end{DoxyParamCaption}
|
700
|
+
)}\label{group__oldfuncs_ga45e8db0713eaaca0f1144f3724cb834a}
|
701
|
+
|
702
|
+
|
703
|
+
\-Request a comment header packet from provided metadata.
|
704
|
+
|
705
|
+
\-A pointer to the comment data is placed in a user-\/provided ogg\-\_\-packet structure.
|
706
|
+
\begin{DoxyParams}{\-Parameters}
|
707
|
+
{\em tc} & \-A \doxyref{theora\-\_\-comment}{p.}{structtheora__comment} structure filled with the desired metadata \\
|
708
|
+
\hline
|
709
|
+
{\em op} & \-An ogg\-\_\-packet structure to fill. libtheora will set all elements of this structure, including a pointer to the encoded comment data. \-The memory for the comment data is owned by libtheora. \\
|
710
|
+
\hline
|
711
|
+
\end{DoxyParams}
|
712
|
+
|
713
|
+
\begin{DoxyRetVals}{\-Return values}
|
714
|
+
{\em 0} & \-Success \\
|
715
|
+
\hline
|
716
|
+
\end{DoxyRetVals}
|
717
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-encode\-\_\-header@{theora\-\_\-encode\-\_\-header}}
|
718
|
+
\index{theora\-\_\-encode\-\_\-header@{theora\-\_\-encode\-\_\-header}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
719
|
+
\subsubsection[{theora\-\_\-encode\-\_\-header}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-encode\-\_\-header} (
|
720
|
+
\begin{DoxyParamCaption}
|
721
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{t, }
|
722
|
+
\item[{ogg\-\_\-packet $\ast$}]{op}
|
723
|
+
\end{DoxyParamCaption}
|
724
|
+
)}\label{group__oldfuncs_ga451feb58d6bde726edbae193689887be}
|
725
|
+
|
726
|
+
|
727
|
+
\-Request a packet containing the initial header.
|
728
|
+
|
729
|
+
\-A pointer to the header data is placed in a user-\/provided ogg\-\_\-packet structure.
|
730
|
+
\begin{DoxyParams}{\-Parameters}
|
731
|
+
{\em t} & \-A \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle previously initialized for encoding. \\
|
732
|
+
\hline
|
733
|
+
{\em op} & \-An ogg\-\_\-packet structure to fill. libtheora will set all elements of this structure, including a pointer to the header data. \-The memory for the header data is owned by libtheora. \\
|
734
|
+
\hline
|
735
|
+
\end{DoxyParams}
|
736
|
+
|
737
|
+
\begin{DoxyRetVals}{\-Return values}
|
738
|
+
{\em 0} & \-Success \\
|
739
|
+
\hline
|
740
|
+
\end{DoxyRetVals}
|
741
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-encode\-\_\-init@{theora\-\_\-encode\-\_\-init}}
|
742
|
+
\index{theora\-\_\-encode\-\_\-init@{theora\-\_\-encode\-\_\-init}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
743
|
+
\subsubsection[{theora\-\_\-encode\-\_\-init}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-encode\-\_\-init} (
|
744
|
+
\begin{DoxyParamCaption}
|
745
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{th, }
|
746
|
+
\item[{{\bf theora\-\_\-info} $\ast$}]{ti}
|
747
|
+
\end{DoxyParamCaption}
|
748
|
+
)}\label{group__oldfuncs_ga0f7ad4d4b2343278cb4ba8fb2bd5109a}
|
749
|
+
|
750
|
+
|
751
|
+
\-Initialize the theora encoder.
|
752
|
+
|
753
|
+
|
754
|
+
\begin{DoxyParams}{\-Parameters}
|
755
|
+
{\em th} & \-The \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle to initialize for encoding. \\
|
756
|
+
\hline
|
757
|
+
{\em ti} & \-A \doxyref{theora\-\_\-info}{p.}{structtheora__info} struct filled with the desired encoding parameters. \\
|
758
|
+
\hline
|
759
|
+
\end{DoxyParams}
|
760
|
+
|
761
|
+
\begin{DoxyRetVals}{\-Return values}
|
762
|
+
{\em 0} & \-Success \\
|
763
|
+
\hline
|
764
|
+
\end{DoxyRetVals}
|
765
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-encode\-\_\-packetout@{theora\-\_\-encode\-\_\-packetout}}
|
766
|
+
\index{theora\-\_\-encode\-\_\-packetout@{theora\-\_\-encode\-\_\-packetout}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
767
|
+
\subsubsection[{theora\-\_\-encode\-\_\-packetout}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-encode\-\_\-packetout} (
|
768
|
+
\begin{DoxyParamCaption}
|
769
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{t, }
|
770
|
+
\item[{int}]{last\-\_\-p, }
|
771
|
+
\item[{ogg\-\_\-packet $\ast$}]{op}
|
772
|
+
\end{DoxyParamCaption}
|
773
|
+
)}\label{group__oldfuncs_ga5f4929677a735bc2198c2309d235f1b3}
|
774
|
+
|
775
|
+
|
776
|
+
\-Request the next packet of encoded video.
|
777
|
+
|
778
|
+
\-The encoded data is placed in a user-\/provided ogg\-\_\-packet structure.
|
779
|
+
\begin{DoxyParams}{\-Parameters}
|
780
|
+
{\em t} & \-A \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle previously initialized for encoding. \\
|
781
|
+
\hline
|
782
|
+
{\em last\-\_\-p} & whether this is the last packet the encoder should produce. \\
|
783
|
+
\hline
|
784
|
+
{\em op} & \-An ogg\-\_\-packet structure to fill. libtheora will set all elements of this structure, including a pointer to encoded data. \-The memory for the encoded data is owned by libtheora. \\
|
785
|
+
\hline
|
786
|
+
\end{DoxyParams}
|
787
|
+
|
788
|
+
\begin{DoxyRetVals}{\-Return values}
|
789
|
+
{\em 0} & \-No internal storage exists \-O\-R no packet is ready \\
|
790
|
+
\hline
|
791
|
+
{\em -\/1} & \-The encoding process has completed \\
|
792
|
+
\hline
|
793
|
+
{\em 1} & \-Success \\
|
794
|
+
\hline
|
795
|
+
\end{DoxyRetVals}
|
796
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-encode\-\_\-tables@{theora\-\_\-encode\-\_\-tables}}
|
797
|
+
\index{theora\-\_\-encode\-\_\-tables@{theora\-\_\-encode\-\_\-tables}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
798
|
+
\subsubsection[{theora\-\_\-encode\-\_\-tables}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-encode\-\_\-tables} (
|
799
|
+
\begin{DoxyParamCaption}
|
800
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{t, }
|
801
|
+
\item[{ogg\-\_\-packet $\ast$}]{op}
|
802
|
+
\end{DoxyParamCaption}
|
803
|
+
)}\label{group__oldfuncs_ga5085baf20855b283fa01fc948505d9d2}
|
804
|
+
|
805
|
+
|
806
|
+
\-Request a packet containing the codebook tables for the stream.
|
807
|
+
|
808
|
+
\-A pointer to the codebook data is placed in a user-\/provided ogg\-\_\-packet structure.
|
809
|
+
\begin{DoxyParams}{\-Parameters}
|
810
|
+
{\em t} & \-A \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle previously initialized for encoding. \\
|
811
|
+
\hline
|
812
|
+
{\em op} & \-An ogg\-\_\-packet structure to fill. libtheora will set all elements of this structure, including a pointer to the codebook data. \-The memory for the header data is owned by libtheora. \\
|
813
|
+
\hline
|
814
|
+
\end{DoxyParams}
|
815
|
+
|
816
|
+
\begin{DoxyRetVals}{\-Return values}
|
817
|
+
{\em 0} & \-Success \\
|
818
|
+
\hline
|
819
|
+
\end{DoxyRetVals}
|
820
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-encode\-\_\-\-Y\-U\-Vin@{theora\-\_\-encode\-\_\-\-Y\-U\-Vin}}
|
821
|
+
\index{theora\-\_\-encode\-\_\-\-Y\-U\-Vin@{theora\-\_\-encode\-\_\-\-Y\-U\-Vin}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
822
|
+
\subsubsection[{theora\-\_\-encode\-\_\-\-Y\-U\-Vin}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-encode\-\_\-\-Y\-U\-Vin} (
|
823
|
+
\begin{DoxyParamCaption}
|
824
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{t, }
|
825
|
+
\item[{{\bf yuv\-\_\-buffer} $\ast$}]{yuv}
|
826
|
+
\end{DoxyParamCaption}
|
827
|
+
)}\label{group__oldfuncs_gac0d33d896ca70cedfc94c5986d947078}
|
828
|
+
|
829
|
+
|
830
|
+
\-Submit a \-Y\-U\-V buffer to the theora encoder.
|
831
|
+
|
832
|
+
|
833
|
+
\begin{DoxyParams}{\-Parameters}
|
834
|
+
{\em t} & \-A \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle previously initialized for encoding. \\
|
835
|
+
\hline
|
836
|
+
{\em yuv} & \-A buffer of \-Y\-U\-V data to encode. \-Note that both the \doxyref{yuv\-\_\-buffer}{p.}{structyuv__buffer} struct and the luma/chroma buffers within should be allocated by the user. \\
|
837
|
+
\hline
|
838
|
+
\end{DoxyParams}
|
839
|
+
|
840
|
+
\begin{DoxyRetVals}{\-Return values}
|
841
|
+
{\em \-O\-C\-\_\-\-E\-I\-N\-V\-A\-L} & \-Encoder is not ready, or is finished. \\
|
842
|
+
\hline
|
843
|
+
{\em -\/1} & \-The size of the given frame differs from those previously input \\
|
844
|
+
\hline
|
845
|
+
{\em 0} & \-Success \\
|
846
|
+
\hline
|
847
|
+
\end{DoxyRetVals}
|
848
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-granule\-\_\-frame@{theora\-\_\-granule\-\_\-frame}}
|
849
|
+
\index{theora\-\_\-granule\-\_\-frame@{theora\-\_\-granule\-\_\-frame}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
850
|
+
\subsubsection[{theora\-\_\-granule\-\_\-frame}]{\setlength{\rightskip}{0pt plus 5cm}ogg\-\_\-int64\-\_\-t {\bf theora\-\_\-granule\-\_\-frame} (
|
851
|
+
\begin{DoxyParamCaption}
|
852
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{th, }
|
853
|
+
\item[{ogg\-\_\-int64\-\_\-t}]{granulepos}
|
854
|
+
\end{DoxyParamCaption}
|
855
|
+
)}\label{group__oldfuncs_ga7bfa3ceb2fb4b41a282456c56e1dd269}
|
856
|
+
|
857
|
+
|
858
|
+
\-Convert a granulepos to an absolute frame index, starting at 0.
|
859
|
+
|
860
|
+
\-The granulepos is interpreted in the context of a given \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle.
|
861
|
+
|
862
|
+
\-Note that while the granulepos encodes the frame count (i.\-e. starting from 1) this call returns the frame index, starting from zero. \-Thus \-One can calculate the presentation time by multiplying the index by the rate.
|
863
|
+
|
864
|
+
|
865
|
+
\begin{DoxyParams}{\-Parameters}
|
866
|
+
{\em th} & \-A previously initialized \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle (encode or decode) \\
|
867
|
+
\hline
|
868
|
+
{\em granulepos} & \-The granulepos to convert. \\
|
869
|
+
\hline
|
870
|
+
\end{DoxyParams}
|
871
|
+
\begin{DoxyReturn}{\-Returns}
|
872
|
+
\-The frame index corresponding to {\itshape granulepos\/}.
|
873
|
+
\end{DoxyReturn}
|
874
|
+
|
875
|
+
\begin{DoxyRetVals}{\-Return values}
|
876
|
+
{\em -\/1} & \-The given granulepos is undefined (i.\-e. negative)\\
|
877
|
+
\hline
|
878
|
+
\end{DoxyRetVals}
|
879
|
+
\-Thus function was added in the 1.\-0alpha4 release. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-granule\-\_\-shift@{theora\-\_\-granule\-\_\-shift}}
|
880
|
+
\index{theora\-\_\-granule\-\_\-shift@{theora\-\_\-granule\-\_\-shift}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
881
|
+
\subsubsection[{theora\-\_\-granule\-\_\-shift}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-granule\-\_\-shift} (
|
882
|
+
\begin{DoxyParamCaption}
|
883
|
+
\item[{{\bf theora\-\_\-info} $\ast$}]{ti}
|
884
|
+
\end{DoxyParamCaption}
|
885
|
+
)}\label{group__oldfuncs_gacd9360e6a47139c761002410af457a02}
|
886
|
+
|
887
|
+
|
888
|
+
\-Report the granulepos shift radix.
|
889
|
+
|
890
|
+
\-When embedded in \-Ogg, \-Theora uses a two-\/part granulepos, splitting the 64-\/bit field into two pieces. \-The more-\/significant section represents the frame count at the last keyframe, and the less-\/significant section represents the count of frames since the last keyframe. \-In this way the overall field is still non-\/decreasing with time, but usefully encodes a pointer to the last keyframe, which is necessary for correctly restarting decode after a seek.
|
891
|
+
|
892
|
+
\-This function reports the number of bits used to represent the distance to the last keyframe, and thus how the granulepos field must be shifted or masked to obtain the two parts.
|
893
|
+
|
894
|
+
\-Since libtheora returns compressed data in an ogg\-\_\-packet structure, this may be generally useful even if the \-Theora packets are not being used in an \-Ogg container.
|
895
|
+
|
896
|
+
|
897
|
+
\begin{DoxyParams}{\-Parameters}
|
898
|
+
{\em ti} & \-A previously initialized \doxyref{theora\-\_\-info}{p.}{structtheora__info} struct \\
|
899
|
+
\hline
|
900
|
+
\end{DoxyParams}
|
901
|
+
\begin{DoxyReturn}{\-Returns}
|
902
|
+
\-The bit shift dividing the two granulepos fields
|
903
|
+
\end{DoxyReturn}
|
904
|
+
\-This function was added in the 1.\-0alpha5 release. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-granule\-\_\-time@{theora\-\_\-granule\-\_\-time}}
|
905
|
+
\index{theora\-\_\-granule\-\_\-time@{theora\-\_\-granule\-\_\-time}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
906
|
+
\subsubsection[{theora\-\_\-granule\-\_\-time}]{\setlength{\rightskip}{0pt plus 5cm}double {\bf theora\-\_\-granule\-\_\-time} (
|
907
|
+
\begin{DoxyParamCaption}
|
908
|
+
\item[{{\bf theora\-\_\-state} $\ast$}]{th, }
|
909
|
+
\item[{ogg\-\_\-int64\-\_\-t}]{granulepos}
|
910
|
+
\end{DoxyParamCaption}
|
911
|
+
)}\label{group__oldfuncs_ga4376358b12b9fa23ce6fe21cb5c65ac6}
|
912
|
+
|
913
|
+
|
914
|
+
\-Convert a granulepos to absolute time in seconds.
|
915
|
+
|
916
|
+
\-The granulepos is interpreted in the context of a given \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle, and gives the end time of a frame's presentation as used in \-Ogg mux ordering.
|
917
|
+
|
918
|
+
|
919
|
+
\begin{DoxyParams}{\-Parameters}
|
920
|
+
{\em th} & \-A previously initialized \doxyref{theora\-\_\-state}{p.}{structtheora__state} handle (encode or decode) \\
|
921
|
+
\hline
|
922
|
+
{\em granulepos} & \-The granulepos to convert. \\
|
923
|
+
\hline
|
924
|
+
\end{DoxyParams}
|
925
|
+
\begin{DoxyReturn}{\-Returns}
|
926
|
+
\-The absolute time in seconds corresponding to {\itshape granulepos\/}. \-This is the \char`\"{}end time\char`\"{} for the frame, or the latest time it should be displayed. \-It is not the presentation time.
|
927
|
+
\end{DoxyReturn}
|
928
|
+
|
929
|
+
\begin{DoxyRetVals}{\-Return values}
|
930
|
+
{\em -\/1.} & \-The given granulepos is undefined (i.\-e. negative), or \\
|
931
|
+
\hline
|
932
|
+
{\em -\/1.} & \-The function has been disabled because floating point support is not available. \\
|
933
|
+
\hline
|
934
|
+
\end{DoxyRetVals}
|
935
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-info\-\_\-clear@{theora\-\_\-info\-\_\-clear}}
|
936
|
+
\index{theora\-\_\-info\-\_\-clear@{theora\-\_\-info\-\_\-clear}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
937
|
+
\subsubsection[{theora\-\_\-info\-\_\-clear}]{\setlength{\rightskip}{0pt plus 5cm}void {\bf theora\-\_\-info\-\_\-clear} (
|
938
|
+
\begin{DoxyParamCaption}
|
939
|
+
\item[{{\bf theora\-\_\-info} $\ast$}]{c}
|
940
|
+
\end{DoxyParamCaption}
|
941
|
+
)}\label{group__oldfuncs_gaba7022d58edbc4825cacad03f68b3e0d}
|
942
|
+
|
943
|
+
|
944
|
+
\-Clear a \doxyref{theora\-\_\-info}{p.}{structtheora__info} structure.
|
945
|
+
|
946
|
+
\-All values within the given \doxyref{theora\-\_\-info}{p.}{structtheora__info} structure are cleared, and associated internal codec setup data is freed.
|
947
|
+
\begin{DoxyParams}{\-Parameters}
|
948
|
+
{\em c} & \-A \doxyref{theora\-\_\-info}{p.}{structtheora__info} struct to initialize. \\
|
949
|
+
\hline
|
950
|
+
\end{DoxyParams}
|
951
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-info\-\_\-init@{theora\-\_\-info\-\_\-init}}
|
952
|
+
\index{theora\-\_\-info\-\_\-init@{theora\-\_\-info\-\_\-init}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
953
|
+
\subsubsection[{theora\-\_\-info\-\_\-init}]{\setlength{\rightskip}{0pt plus 5cm}void {\bf theora\-\_\-info\-\_\-init} (
|
954
|
+
\begin{DoxyParamCaption}
|
955
|
+
\item[{{\bf theora\-\_\-info} $\ast$}]{c}
|
956
|
+
\end{DoxyParamCaption}
|
957
|
+
)}\label{group__oldfuncs_ga3091c87d48f1faba018c5956379a6d90}
|
958
|
+
|
959
|
+
|
960
|
+
\-Initialize a \doxyref{theora\-\_\-info}{p.}{structtheora__info} structure.
|
961
|
+
|
962
|
+
\-All values within the given \doxyref{theora\-\_\-info}{p.}{structtheora__info} structure are initialized, and space is allocated within libtheora for internal codec setup data.
|
963
|
+
\begin{DoxyParams}{\-Parameters}
|
964
|
+
{\em c} & \-A \doxyref{theora\-\_\-info}{p.}{structtheora__info} struct to initialize. \\
|
965
|
+
\hline
|
966
|
+
\end{DoxyParams}
|
967
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-packet\-\_\-isheader@{theora\-\_\-packet\-\_\-isheader}}
|
968
|
+
\index{theora\-\_\-packet\-\_\-isheader@{theora\-\_\-packet\-\_\-isheader}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
969
|
+
\subsubsection[{theora\-\_\-packet\-\_\-isheader}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-packet\-\_\-isheader} (
|
970
|
+
\begin{DoxyParamCaption}
|
971
|
+
\item[{ogg\-\_\-packet $\ast$}]{op}
|
972
|
+
\end{DoxyParamCaption}
|
973
|
+
)}\label{group__oldfuncs_gab969f9d0407683f0e5abe73d0839a25b}
|
974
|
+
|
975
|
+
|
976
|
+
\-Report whether a theora packet is a header or not \-This function does no verification beyond checking the header flag bit so it should not be used for bitstream identification; use \doxyref{theora\-\_\-decode\-\_\-header()}{p.}{group__oldfuncs_ga02915e63c1bd733ee291f577a8b75a82} for that.
|
977
|
+
|
978
|
+
|
979
|
+
\begin{DoxyParams}{\-Parameters}
|
980
|
+
{\em op} & \-An ogg\-\_\-packet containing encoded theora data. \\
|
981
|
+
\hline
|
982
|
+
\end{DoxyParams}
|
983
|
+
|
984
|
+
\begin{DoxyRetVals}{\-Return values}
|
985
|
+
{\em 1} & \-The packet is a header packet \\
|
986
|
+
\hline
|
987
|
+
{\em 0} & \-The packet is not a header packet (and so contains frame data)\\
|
988
|
+
\hline
|
989
|
+
\end{DoxyRetVals}
|
990
|
+
\-Thus function was added in the 1.\-0alpha4 release. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-packet\-\_\-iskeyframe@{theora\-\_\-packet\-\_\-iskeyframe}}
|
991
|
+
\index{theora\-\_\-packet\-\_\-iskeyframe@{theora\-\_\-packet\-\_\-iskeyframe}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
992
|
+
\subsubsection[{theora\-\_\-packet\-\_\-iskeyframe}]{\setlength{\rightskip}{0pt plus 5cm}int {\bf theora\-\_\-packet\-\_\-iskeyframe} (
|
993
|
+
\begin{DoxyParamCaption}
|
994
|
+
\item[{ogg\-\_\-packet $\ast$}]{op}
|
995
|
+
\end{DoxyParamCaption}
|
996
|
+
)}\label{group__oldfuncs_ga39ccc8f847a748d7074c926b4fdd12b2}
|
997
|
+
|
998
|
+
|
999
|
+
\-Report whether a theora packet is a keyframe or not.
|
1000
|
+
|
1001
|
+
|
1002
|
+
\begin{DoxyParams}{\-Parameters}
|
1003
|
+
{\em op} & \-An ogg\-\_\-packet containing encoded theora data. \\
|
1004
|
+
\hline
|
1005
|
+
\end{DoxyParams}
|
1006
|
+
|
1007
|
+
\begin{DoxyRetVals}{\-Return values}
|
1008
|
+
{\em 1} & \-The packet contains a keyframe image \\
|
1009
|
+
\hline
|
1010
|
+
{\em 0} & \-The packet is contains an interframe delta \\
|
1011
|
+
\hline
|
1012
|
+
{\em -\/1} & \-The packet is not an image data packet at all\\
|
1013
|
+
\hline
|
1014
|
+
\end{DoxyRetVals}
|
1015
|
+
\-Thus function was added in the 1.\-0alpha4 release. \index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-version\-\_\-number@{theora\-\_\-version\-\_\-number}}
|
1016
|
+
\index{theora\-\_\-version\-\_\-number@{theora\-\_\-version\-\_\-number}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
1017
|
+
\subsubsection[{theora\-\_\-version\-\_\-number}]{\setlength{\rightskip}{0pt plus 5cm}ogg\-\_\-uint32\-\_\-t {\bf theora\-\_\-version\-\_\-number} (
|
1018
|
+
\begin{DoxyParamCaption}
|
1019
|
+
\item[{void}]{}
|
1020
|
+
\end{DoxyParamCaption}
|
1021
|
+
)}\label{group__oldfuncs_gad181f4b19d455dcc2bef2533530b84c8}
|
1022
|
+
|
1023
|
+
|
1024
|
+
\-Retrieve a 32-\/bit version number.
|
1025
|
+
|
1026
|
+
\-This number is composed of a 16-\/bit major version, 8-\/bit minor version and 8 bit sub-\/version, composed as follows\-:
|
1027
|
+
\begin{DoxyPre}
|
1028
|
+
(VERSION\_MAJOR<<16) + (VERSION\_MINOR<<8) + (VERSION\_SUB)
|
1029
|
+
\end{DoxyPre}
|
1030
|
+
\begin{DoxyReturn}{\-Returns}
|
1031
|
+
\-The version number.
|
1032
|
+
\end{DoxyReturn}
|
1033
|
+
\index{\-Legacy pre-\/1.\-0 C A\-P\-I@{\-Legacy pre-\/1.\-0 C A\-P\-I}!theora\-\_\-version\-\_\-string@{theora\-\_\-version\-\_\-string}}
|
1034
|
+
\index{theora\-\_\-version\-\_\-string@{theora\-\_\-version\-\_\-string}!Legacy pre-1.0 C API@{\-Legacy pre-\/1.\-0 C A\-P\-I}}
|
1035
|
+
\subsubsection[{theora\-\_\-version\-\_\-string}]{\setlength{\rightskip}{0pt plus 5cm}const char$\ast$ {\bf theora\-\_\-version\-\_\-string} (
|
1036
|
+
\begin{DoxyParamCaption}
|
1037
|
+
\item[{void}]{}
|
1038
|
+
\end{DoxyParamCaption}
|
1039
|
+
)}\label{group__oldfuncs_ga5a3da8fd262a60f055f96536eec06df2}
|
1040
|
+
|
1041
|
+
|
1042
|
+
\-Retrieve a human-\/readable string to identify the encoder vendor and version.
|
1043
|
+
|
1044
|
+
\begin{DoxyReturn}{\-Returns}
|
1045
|
+
\-A version string.
|
1046
|
+
\end{DoxyReturn}
|