gstreamer 1.1.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1897) hide show
  1. data/README +33 -0
  2. data/Rakefile +213 -0
  3. data/ext/gstreamer/depend +5 -0
  4. data/ext/gstreamer/extconf.rb +69 -0
  5. data/ext/gstreamer/misc.c +63 -0
  6. data/ext/gstreamer/rbgst-bin.c +458 -0
  7. data/ext/gstreamer/rbgst-buffer.c +365 -0
  8. data/ext/gstreamer/rbgst-bus.c +92 -0
  9. data/ext/gstreamer/rbgst-caps.c +448 -0
  10. data/ext/gstreamer/rbgst-child-proxy.c +34 -0
  11. data/ext/gstreamer/rbgst-clock.c +110 -0
  12. data/ext/gstreamer/rbgst-element-factory.c +249 -0
  13. data/ext/gstreamer/rbgst-element.c +1088 -0
  14. data/ext/gstreamer/rbgst-event.c +351 -0
  15. data/ext/gstreamer/rbgst-ghost-pad.c +45 -0
  16. data/ext/gstreamer/rbgst-index-factory.c +69 -0
  17. data/ext/gstreamer/rbgst-install-plugins-context.c +86 -0
  18. data/ext/gstreamer/rbgst-install-plugins-return.c +45 -0
  19. data/ext/gstreamer/rbgst-install-plugins.c +125 -0
  20. data/ext/gstreamer/rbgst-message.c +787 -0
  21. data/ext/gstreamer/rbgst-mini-object.c +220 -0
  22. data/ext/gstreamer/rbgst-object.c +83 -0
  23. data/ext/gstreamer/rbgst-pad-template.c +125 -0
  24. data/ext/gstreamer/rbgst-pad.c +338 -0
  25. data/ext/gstreamer/rbgst-pipeline.c +91 -0
  26. data/ext/gstreamer/rbgst-plugin-feature.c +133 -0
  27. data/ext/gstreamer/rbgst-plugin.c +162 -0
  28. data/ext/gstreamer/rbgst-private.c +88 -0
  29. data/ext/gstreamer/rbgst-private.h +97 -0
  30. data/ext/gstreamer/rbgst-query.c +291 -0
  31. data/ext/gstreamer/rbgst-seek.c +39 -0
  32. data/ext/gstreamer/rbgst-static-caps.c +51 -0
  33. data/ext/gstreamer/rbgst-static-pad-template.c +65 -0
  34. data/ext/gstreamer/rbgst-structure.c +302 -0
  35. data/ext/gstreamer/rbgst-system-clock.c +48 -0
  36. data/ext/gstreamer/rbgst-type-find-factory.c +125 -0
  37. data/ext/gstreamer/rbgst-value.c +529 -0
  38. data/ext/gstreamer/rbgst-x-overlay.c +133 -0
  39. data/ext/gstreamer/rbgst.c +237 -0
  40. data/ext/gstreamer/rbgst.h +197 -0
  41. data/ext/gstreamer/rbgstclockentry.c +271 -0
  42. data/ext/gstreamer/rbgstformat.c +162 -0
  43. data/ext/gstreamer/rbgstindex.c +317 -0
  44. data/ext/gstreamer/rbgstindexentry.c +99 -0
  45. data/ext/gstreamer/rbgstparse.c +69 -0
  46. data/ext/gstreamer/rbgstquerytype.c +162 -0
  47. data/ext/gstreamer/rbgstregistry.c +288 -0
  48. data/ext/gstreamer/rbgsttag.c +113 -0
  49. data/ext/gstreamer/rbgsttagsetter.c +53 -0
  50. data/ext/gstreamer/rbgstxml.c +192 -0
  51. data/extconf.rb +49 -0
  52. data/lib/1.8/gstreamer.so +0 -0
  53. data/lib/1.9/gstreamer.so +0 -0
  54. data/lib/gst.rb +33 -0
  55. data/sample/audio-player.rb +54 -0
  56. data/sample/gst-inspect.rb +417 -0
  57. data/sample/install-plugins.rb +40 -0
  58. data/sample/media-type.rb +55 -0
  59. data/sample/media-type2.rb +268 -0
  60. data/sample/ogg-audio-player.rb +54 -0
  61. data/sample/type-find.rb +46 -0
  62. data/sample/video-player.rb +57 -0
  63. data/sample/xml-player.rb +60 -0
  64. data/test/gst-test-utils.rb +18 -0
  65. data/test/run-test.rb +25 -0
  66. data/test/test_bin.rb +167 -0
  67. data/test/test_buffer.rb +177 -0
  68. data/test/test_caps.rb +24 -0
  69. data/test/test_element.rb +85 -0
  70. data/test/test_element_factory.rb +28 -0
  71. data/test/test_event.rb +10 -0
  72. data/test/test_index_factory.rb +7 -0
  73. data/test/test_install-plugins.rb +18 -0
  74. data/test/test_message.rb +191 -0
  75. data/test/test_mini_object.rb +38 -0
  76. data/test/test_object.rb +10 -0
  77. data/test/test_pad.rb +68 -0
  78. data/test/test_plugin.rb +6 -0
  79. data/test/test_plugin_feature.rb +20 -0
  80. data/test/test_seek.rb +17 -0
  81. data/test/test_static_caps.rb +18 -0
  82. data/test/test_static_pad_template.rb +16 -0
  83. data/test/test_structure.rb +159 -0
  84. data/test/test_thread_handling.rb +58 -0
  85. data/test/test_type_find_factory.rb +8 -0
  86. data/test/test_value.rb +69 -0
  87. data/vendor/local/bin/cjpeg.exe +0 -0
  88. data/vendor/local/bin/djpeg.exe +0 -0
  89. data/vendor/local/bin/gst-discoverer-0.10.exe +0 -0
  90. data/vendor/local/bin/gst-feedback-0.10 +115 -0
  91. data/vendor/local/bin/gst-feedback.exe +0 -0
  92. data/vendor/local/bin/gst-inspect-0.10.exe +0 -0
  93. data/vendor/local/bin/gst-inspect.exe +0 -0
  94. data/vendor/local/bin/gst-launch-0.10.exe +0 -0
  95. data/vendor/local/bin/gst-launch.exe +0 -0
  96. data/vendor/local/bin/gst-typefind-0.10.exe +0 -0
  97. data/vendor/local/bin/gst-typefind.exe +0 -0
  98. data/vendor/local/bin/gst-visualise-0.10 +77 -0
  99. data/vendor/local/bin/gst-xmlinspect-0.10.exe +0 -0
  100. data/vendor/local/bin/gst-xmlinspect.exe +0 -0
  101. data/vendor/local/bin/gst-xmllaunch-0.10.exe +0 -0
  102. data/vendor/local/bin/gst-xmllaunch.exe +0 -0
  103. data/vendor/local/bin/jpegtran.exe +0 -0
  104. data/vendor/local/bin/libgstapp-0.10-0.dll +0 -0
  105. data/vendor/local/bin/libgstaudio-0.10-0.dll +0 -0
  106. data/vendor/local/bin/libgstbase-0.10-0.dll +0 -0
  107. data/vendor/local/bin/libgstbasevideo-0.10-0.dll +0 -0
  108. data/vendor/local/bin/libgstcdda-0.10-0.dll +0 -0
  109. data/vendor/local/bin/libgstcheck-0.10-0.dll +0 -0
  110. data/vendor/local/bin/libgstcontroller-0.10-0.dll +0 -0
  111. data/vendor/local/bin/libgstdataprotocol-0.10-0.dll +0 -0
  112. data/vendor/local/bin/libgstfft-0.10-0.dll +0 -0
  113. data/vendor/local/bin/libgstinterfaces-0.10-0.dll +0 -0
  114. data/vendor/local/bin/libgstnet-0.10-0.dll +0 -0
  115. data/vendor/local/bin/libgstnetbuffer-0.10-0.dll +0 -0
  116. data/vendor/local/bin/libgstpbutils-0.10-0.dll +0 -0
  117. data/vendor/local/bin/libgstphotography-0.10-0.dll +0 -0
  118. data/vendor/local/bin/libgstreamer-0.10-0.dll +0 -0
  119. data/vendor/local/bin/libgstriff-0.10-0.dll +0 -0
  120. data/vendor/local/bin/libgstrtp-0.10-0.dll +0 -0
  121. data/vendor/local/bin/libgstrtsp-0.10-0.dll +0 -0
  122. data/vendor/local/bin/libgstsdp-0.10-0.dll +0 -0
  123. data/vendor/local/bin/libgstsignalprocessor-0.10-0.dll +0 -0
  124. data/vendor/local/bin/libgsttag-0.10-0.dll +0 -0
  125. data/vendor/local/bin/libgstvideo-0.10-0.dll +0 -0
  126. data/vendor/local/bin/libjpeg-8.dll +0 -0
  127. data/vendor/local/bin/libogg-0.dll +0 -0
  128. data/vendor/local/bin/libsoup-2.4-1.dll +0 -0
  129. data/vendor/local/bin/libspeex-1.dll +0 -0
  130. data/vendor/local/bin/libspeexdsp-1.dll +0 -0
  131. data/vendor/local/bin/libtheora-0.dll +0 -0
  132. data/vendor/local/bin/libtheoradec-1.dll +0 -0
  133. data/vendor/local/bin/libtheoraenc-1.dll +0 -0
  134. data/vendor/local/bin/libvorbis-0.dll +0 -0
  135. data/vendor/local/bin/libvorbisenc-2.dll +0 -0
  136. data/vendor/local/bin/libvorbisfile-3.dll +0 -0
  137. data/vendor/local/bin/libxml2-2.dll +0 -0
  138. data/vendor/local/bin/rdjpgcom.exe +0 -0
  139. data/vendor/local/bin/speexdec.exe +0 -0
  140. data/vendor/local/bin/speexenc.exe +0 -0
  141. data/vendor/local/bin/wrjpgcom.exe +0 -0
  142. data/vendor/local/bin/xmlcatalog.exe +0 -0
  143. data/vendor/local/bin/xmllint.exe +0 -0
  144. data/vendor/local/include/gstreamer-0.10/gst/app/gstappbuffer.h +64 -0
  145. data/vendor/local/include/gstreamer-0.10/gst/app/gstappsink.h +141 -0
  146. data/vendor/local/include/gstreamer-0.10/gst/app/gstappsrc.h +153 -0
  147. data/vendor/local/include/gstreamer-0.10/gst/audio/audio-enumtypes.h +29 -0
  148. data/vendor/local/include/gstreamer-0.10/gst/audio/audio.h +185 -0
  149. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudioclock.h +108 -0
  150. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiofilter.h +96 -0
  151. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosink.h +102 -0
  152. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosrc.h +99 -0
  153. data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosink.h +177 -0
  154. data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosrc.h +146 -0
  155. data/vendor/local/include/gstreamer-0.10/gst/audio/gstringbuffer.h +408 -0
  156. data/vendor/local/include/gstreamer-0.10/gst/audio/mixerutils.h +50 -0
  157. data/vendor/local/include/gstreamer-0.10/gst/audio/multichannel.h +115 -0
  158. data/vendor/local/include/gstreamer-0.10/gst/base/gstadapter.h +106 -0
  159. data/vendor/local/include/gstreamer-0.10/gst/base/gstbaseparse.h +314 -0
  160. data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesink.h +247 -0
  161. data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesrc.h +261 -0
  162. data/vendor/local/include/gstreamer-0.10/gst/base/gstbasetransform.h +277 -0
  163. data/vendor/local/include/gstreamer-0.10/gst/base/gstbitreader.h +314 -0
  164. data/vendor/local/include/gstreamer-0.10/gst/base/gstbytereader.h +527 -0
  165. data/vendor/local/include/gstreamer-0.10/gst/base/gstbytewriter.h +361 -0
  166. data/vendor/local/include/gstreamer-0.10/gst/base/gstcollectpads.h +223 -0
  167. data/vendor/local/include/gstreamer-0.10/gst/base/gstdataqueue.h +184 -0
  168. data/vendor/local/include/gstreamer-0.10/gst/base/gstpushsrc.h +68 -0
  169. data/vendor/local/include/gstreamer-0.10/gst/base/gsttypefindhelper.h +75 -0
  170. data/vendor/local/include/gstreamer-0.10/gst/cdda/gstcddabasesrc.h +157 -0
  171. data/vendor/local/include/gstreamer-0.10/gst/check/gstbufferstraw.h +35 -0
  172. data/vendor/local/include/gstreamer-0.10/gst/check/gstcheck.h +427 -0
  173. data/vendor/local/include/gstreamer-0.10/gst/check/gstconsistencychecker.h +48 -0
  174. data/vendor/local/include/gstreamer-0.10/gst/check/internal-check.h +418 -0
  175. data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontroller.h +155 -0
  176. data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontrolsource.h +163 -0
  177. data/vendor/local/include/gstreamer-0.10/gst/controller/gstinterpolationcontrolsource.h +109 -0
  178. data/vendor/local/include/gstreamer-0.10/gst/controller/gstlfocontrolsource.h +102 -0
  179. data/vendor/local/include/gstreamer-0.10/gst/dataprotocol/dataprotocol.h +196 -0
  180. data/vendor/local/include/gstreamer-0.10/gst/fft/gstfft.h +49 -0
  181. data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf32.h +75 -0
  182. data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf64.h +75 -0
  183. data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts16.h +74 -0
  184. data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts32.h +75 -0
  185. data/vendor/local/include/gstreamer-0.10/gst/floatcast/floatcast.h +102 -0
  186. data/vendor/local/include/gstreamer-0.10/gst/glib-compat.h +37 -0
  187. data/vendor/local/include/gstreamer-0.10/gst/gst.h +106 -0
  188. data/vendor/local/include/gstreamer-0.10/gst/gstatomicqueue.h +55 -0
  189. data/vendor/local/include/gstreamer-0.10/gst/gstbin.h +190 -0
  190. data/vendor/local/include/gstreamer-0.10/gst/gstbuffer.h +510 -0
  191. data/vendor/local/include/gstreamer-0.10/gst/gstbufferlist.h +243 -0
  192. data/vendor/local/include/gstreamer-0.10/gst/gstbus.h +192 -0
  193. data/vendor/local/include/gstreamer-0.10/gst/gstcaps.h +296 -0
  194. data/vendor/local/include/gstreamer-0.10/gst/gstchildproxy.h +91 -0
  195. data/vendor/local/include/gstreamer-0.10/gst/gstclock.h +570 -0
  196. data/vendor/local/include/gstreamer-0.10/gst/gstcompat.h +43 -0
  197. data/vendor/local/include/gstreamer-0.10/gst/gstconfig.h +235 -0
  198. data/vendor/local/include/gstreamer-0.10/gst/gstdatetime.h +66 -0
  199. data/vendor/local/include/gstreamer-0.10/gst/gstdebugutils.h +109 -0
  200. data/vendor/local/include/gstreamer-0.10/gst/gstelement.h +827 -0
  201. data/vendor/local/include/gstreamer-0.10/gst/gstelementfactory.h +314 -0
  202. data/vendor/local/include/gstreamer-0.10/gst/gstenumtypes.h +211 -0
  203. data/vendor/local/include/gstreamer-0.10/gst/gsterror.h +255 -0
  204. data/vendor/local/include/gstreamer-0.10/gst/gstevent.h +522 -0
  205. data/vendor/local/include/gstreamer-0.10/gst/gstfilter.h +44 -0
  206. data/vendor/local/include/gstreamer-0.10/gst/gstformat.h +113 -0
  207. data/vendor/local/include/gstreamer-0.10/gst/gstghostpad.h +111 -0
  208. data/vendor/local/include/gstreamer-0.10/gst/gstindex.h +426 -0
  209. data/vendor/local/include/gstreamer-0.10/gst/gstindexfactory.h +76 -0
  210. data/vendor/local/include/gstreamer-0.10/gst/gstinfo.h +1549 -0
  211. data/vendor/local/include/gstreamer-0.10/gst/gstinterface.h +81 -0
  212. data/vendor/local/include/gstreamer-0.10/gst/gstiterator.h +267 -0
  213. data/vendor/local/include/gstreamer-0.10/gst/gstmacros.h +54 -0
  214. data/vendor/local/include/gstreamer-0.10/gst/gstmarshal.h +164 -0
  215. data/vendor/local/include/gstreamer-0.10/gst/gstmessage.h +534 -0
  216. data/vendor/local/include/gstreamer-0.10/gst/gstminiobject.h +223 -0
  217. data/vendor/local/include/gstreamer-0.10/gst/gstobject.h +354 -0
  218. data/vendor/local/include/gstreamer-0.10/gst/gstpad.h +1032 -0
  219. data/vendor/local/include/gstreamer-0.10/gst/gstpadtemplate.h +196 -0
  220. data/vendor/local/include/gstreamer-0.10/gst/gstparamspecs.h +128 -0
  221. data/vendor/local/include/gstreamer-0.10/gst/gstparse.h +119 -0
  222. data/vendor/local/include/gstreamer-0.10/gst/gstpipeline.h +115 -0
  223. data/vendor/local/include/gstreamer-0.10/gst/gstplugin.h +411 -0
  224. data/vendor/local/include/gstreamer-0.10/gst/gstpluginfeature.h +171 -0
  225. data/vendor/local/include/gstreamer-0.10/gst/gstpoll.h +97 -0
  226. data/vendor/local/include/gstreamer-0.10/gst/gstpreset.h +99 -0
  227. data/vendor/local/include/gstreamer-0.10/gst/gstquery.h +342 -0
  228. data/vendor/local/include/gstreamer-0.10/gst/gstregistry.h +237 -0
  229. data/vendor/local/include/gstreamer-0.10/gst/gstsegment.h +109 -0
  230. data/vendor/local/include/gstreamer-0.10/gst/gststructure.h +254 -0
  231. data/vendor/local/include/gstreamer-0.10/gst/gstsystemclock.h +89 -0
  232. data/vendor/local/include/gstreamer-0.10/gst/gsttaglist.h +1034 -0
  233. data/vendor/local/include/gstreamer-0.10/gst/gsttagsetter.h +100 -0
  234. data/vendor/local/include/gstreamer-0.10/gst/gsttask.h +205 -0
  235. data/vendor/local/include/gstreamer-0.10/gst/gsttaskpool.h +103 -0
  236. data/vendor/local/include/gstreamer-0.10/gst/gsttrace.h +251 -0
  237. data/vendor/local/include/gstreamer-0.10/gst/gsttypefind.h +122 -0
  238. data/vendor/local/include/gstreamer-0.10/gst/gsttypefindfactory.h +81 -0
  239. data/vendor/local/include/gstreamer-0.10/gst/gsturi.h +156 -0
  240. data/vendor/local/include/gstreamer-0.10/gst/gstutils.h +1198 -0
  241. data/vendor/local/include/gstreamer-0.10/gst/gstvalue.h +594 -0
  242. data/vendor/local/include/gstreamer-0.10/gst/gstversion.h +90 -0
  243. data/vendor/local/include/gstreamer-0.10/gst/gstxml.h +113 -0
  244. data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalance.h +112 -0
  245. data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalancechannel.h +75 -0
  246. data/vendor/local/include/gstreamer-0.10/gst/interfaces/interfaces-enumtypes.h +49 -0
  247. data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixer.h +231 -0
  248. data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixeroptions.h +91 -0
  249. data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixertrack.h +134 -0
  250. data/vendor/local/include/gstreamer-0.10/gst/interfaces/navigation.h +257 -0
  251. data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography-enumtypes.h +37 -0
  252. data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography.h +387 -0
  253. data/vendor/local/include/gstreamer-0.10/gst/interfaces/propertyprobe.h +115 -0
  254. data/vendor/local/include/gstreamer-0.10/gst/interfaces/streamvolume.h +87 -0
  255. data/vendor/local/include/gstreamer-0.10/gst/interfaces/tuner.h +128 -0
  256. data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunerchannel.h +113 -0
  257. data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunernorm.h +67 -0
  258. data/vendor/local/include/gstreamer-0.10/gst/interfaces/videoorientation.h +94 -0
  259. data/vendor/local/include/gstreamer-0.10/gst/interfaces/xoverlay.h +121 -0
  260. data/vendor/local/include/gstreamer-0.10/gst/math-compat.h +84 -0
  261. data/vendor/local/include/gstreamer-0.10/gst/net/gstnet.h +30 -0
  262. data/vendor/local/include/gstreamer-0.10/gst/net/gstnetclientclock.h +105 -0
  263. data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimepacket.h +78 -0
  264. data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimeprovider.h +110 -0
  265. data/vendor/local/include/gstreamer-0.10/gst/netbuffer/gstnetbuffer.h +129 -0
  266. data/vendor/local/include/gstreamer-0.10/gst/pbutils/codec-utils.h +63 -0
  267. data/vendor/local/include/gstreamer-0.10/gst/pbutils/descriptions.h +58 -0
  268. data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-profile.h +187 -0
  269. data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-target.h +147 -0
  270. data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstdiscoverer.h +266 -0
  271. data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstpluginsbaseversion.h +86 -0
  272. data/vendor/local/include/gstreamer-0.10/gst/pbutils/install-plugins.h +144 -0
  273. data/vendor/local/include/gstreamer-0.10/gst/pbutils/missing-plugins.h +77 -0
  274. data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils-enumtypes.h +23 -0
  275. data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils.h +42 -0
  276. data/vendor/local/include/gstreamer-0.10/gst/riff/riff-ids.h +517 -0
  277. data/vendor/local/include/gstreamer-0.10/gst/riff/riff-media.h +65 -0
  278. data/vendor/local/include/gstreamer-0.10/gst/riff/riff-read.h +87 -0
  279. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpaudiopayload.h +98 -0
  280. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpdepayload.h +141 -0
  281. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertppayload.h +162 -0
  282. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtcpbuffer.h +286 -0
  283. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtpbuffer.h +166 -0
  284. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtppayloads.h +193 -0
  285. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsp-enumtypes.h +35 -0
  286. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspbase64.h +37 -0
  287. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspconnection.h +209 -0
  288. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspdefs.h +397 -0
  289. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspextension.h +97 -0
  290. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspmessage.h +187 -0
  291. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsprange.h +121 -0
  292. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsptransport.h +174 -0
  293. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspurl.h +103 -0
  294. data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdp.h +58 -0
  295. data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdpmessage.h +423 -0
  296. data/vendor/local/include/gstreamer-0.10/gst/signalprocessor/gstsignalprocessor.h +142 -0
  297. data/vendor/local/include/gstreamer-0.10/gst/tag/gsttagdemux.h +144 -0
  298. data/vendor/local/include/gstreamer-0.10/gst/tag/tag.h +549 -0
  299. data/vendor/local/include/gstreamer-0.10/gst/tag/xmpwriter.h +68 -0
  300. data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideocodec.h +195 -0
  301. data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideodecoder.h +182 -0
  302. data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideoencoder.h +128 -0
  303. data/vendor/local/include/gstreamer-0.10/gst/video/gstvideofilter.h +58 -0
  304. data/vendor/local/include/gstreamer-0.10/gst/video/gstvideosink.h +132 -0
  305. data/vendor/local/include/gstreamer-0.10/gst/video/video-enumtypes.h +19 -0
  306. data/vendor/local/include/gstreamer-0.10/gst/video/video.h +501 -0
  307. data/vendor/local/include/jconfig.h +46 -0
  308. data/vendor/local/include/jerror.h +304 -0
  309. data/vendor/local/include/jmorecfg.h +371 -0
  310. data/vendor/local/include/jpeglib.h +1158 -0
  311. data/vendor/local/include/libsoup-2.4/libsoup/soup-address.h +102 -0
  312. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-basic.h +56 -0
  313. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-digest.h +59 -0
  314. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain.h +99 -0
  315. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth.h +90 -0
  316. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar-text.h +44 -0
  317. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar.h +68 -0
  318. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie.h +81 -0
  319. data/vendor/local/include/libsoup-2.4/libsoup/soup-date.h +64 -0
  320. data/vendor/local/include/libsoup-2.4/libsoup/soup-enum-types.h +63 -0
  321. data/vendor/local/include/libsoup-2.4/libsoup/soup-form.h +53 -0
  322. data/vendor/local/include/libsoup-2.4/libsoup/soup-headers.h +59 -0
  323. data/vendor/local/include/libsoup-2.4/libsoup/soup-logger.h +80 -0
  324. data/vendor/local/include/libsoup-2.4/libsoup/soup-message-body.h +81 -0
  325. data/vendor/local/include/libsoup-2.4/libsoup/soup-message-headers.h +133 -0
  326. data/vendor/local/include/libsoup-2.4/libsoup/soup-message.h +163 -0
  327. data/vendor/local/include/libsoup-2.4/libsoup/soup-method.h +77 -0
  328. data/vendor/local/include/libsoup-2.4/libsoup/soup-misc.h +52 -0
  329. data/vendor/local/include/libsoup-2.4/libsoup/soup-multipart.h +51 -0
  330. data/vendor/local/include/libsoup-2.4/libsoup/soup-portability.h +28 -0
  331. data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-resolver.h +57 -0
  332. data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h +57 -0
  333. data/vendor/local/include/libsoup-2.4/libsoup/soup-server.h +113 -0
  334. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-async.h +44 -0
  335. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-feature.h +51 -0
  336. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-sync.h +44 -0
  337. data/vendor/local/include/libsoup-2.4/libsoup/soup-session.h +109 -0
  338. data/vendor/local/include/libsoup-2.4/libsoup/soup-socket.h +115 -0
  339. data/vendor/local/include/libsoup-2.4/libsoup/soup-status.h +102 -0
  340. data/vendor/local/include/libsoup-2.4/libsoup/soup-types.h +32 -0
  341. data/vendor/local/include/libsoup-2.4/libsoup/soup-uri.h +90 -0
  342. data/vendor/local/include/libsoup-2.4/libsoup/soup-value-utils.h +84 -0
  343. data/vendor/local/include/libsoup-2.4/libsoup/soup-xmlrpc.h +83 -0
  344. data/vendor/local/include/libsoup-2.4/libsoup/soup.h +45 -0
  345. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  346. data/vendor/local/include/libxml2/libxml/HTMLparser.h +304 -0
  347. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  348. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  349. data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
  350. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  351. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  352. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  353. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  354. data/vendor/local/include/libxml2/libxml/dict.h +69 -0
  355. data/vendor/local/include/libxml2/libxml/encoding.h +226 -0
  356. data/vendor/local/include/libxml2/libxml/entities.h +150 -0
  357. data/vendor/local/include/libxml2/libxml/globals.h +502 -0
  358. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  359. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  360. data/vendor/local/include/libxml2/libxml/nanoftp.h +143 -0
  361. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  362. data/vendor/local/include/libxml2/libxml/parser.h +1235 -0
  363. data/vendor/local/include/libxml2/libxml/parserInternals.h +611 -0
  364. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  365. data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
  366. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  367. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  368. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  369. data/vendor/local/include/libxml2/libxml/tree.h +1252 -0
  370. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  371. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  372. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  373. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  374. data/vendor/local/include/libxml2/libxml/xmlIO.h +360 -0
  375. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  376. data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
  377. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  378. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  379. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  380. data/vendor/local/include/libxml2/libxml/xmlreader.h +424 -0
  381. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  382. data/vendor/local/include/libxml2/libxml/xmlsave.h +87 -0
  383. data/vendor/local/include/libxml2/libxml/xmlschemas.h +218 -0
  384. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  385. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  386. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  387. data/vendor/local/include/libxml2/libxml/xmlversion.h +458 -0
  388. data/vendor/local/include/libxml2/libxml/xmlwriter.h +485 -0
  389. data/vendor/local/include/libxml2/libxml/xpath.h +546 -0
  390. data/vendor/local/include/libxml2/libxml/xpathInternals.h +630 -0
  391. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  392. data/vendor/local/include/ogg/config_types.h +25 -0
  393. data/vendor/local/include/ogg/ogg.h +210 -0
  394. data/vendor/local/include/ogg/os_types.h +147 -0
  395. data/vendor/local/include/speex/speex.h +424 -0
  396. data/vendor/local/include/speex/speex_bits.h +174 -0
  397. data/vendor/local/include/speex/speex_buffer.h +68 -0
  398. data/vendor/local/include/speex/speex_callbacks.h +134 -0
  399. data/vendor/local/include/speex/speex_config_types.h +11 -0
  400. data/vendor/local/include/speex/speex_echo.h +170 -0
  401. data/vendor/local/include/speex/speex_header.h +94 -0
  402. data/vendor/local/include/speex/speex_jitter.h +197 -0
  403. data/vendor/local/include/speex/speex_preprocess.h +219 -0
  404. data/vendor/local/include/speex/speex_resampler.h +340 -0
  405. data/vendor/local/include/speex/speex_stereo.h +91 -0
  406. data/vendor/local/include/speex/speex_types.h +126 -0
  407. data/vendor/local/include/theora/codec.h +591 -0
  408. data/vendor/local/include/theora/theora.h +784 -0
  409. data/vendor/local/include/theora/theoradec.h +325 -0
  410. data/vendor/local/include/theora/theoraenc.h +486 -0
  411. data/vendor/local/include/vorbis/codec.h +243 -0
  412. data/vendor/local/include/vorbis/vorbisenc.h +436 -0
  413. data/vendor/local/include/vorbis/vorbisfile.h +206 -0
  414. data/vendor/local/lib/gstreamer-0.10/libgstadder.dll +0 -0
  415. data/vendor/local/lib/gstreamer-0.10/libgstadder.dll.a +0 -0
  416. data/vendor/local/lib/gstreamer-0.10/libgstadder.la +41 -0
  417. data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll +0 -0
  418. data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll.a +0 -0
  419. data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.la +41 -0
  420. data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll +0 -0
  421. data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll.a +0 -0
  422. data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.la +41 -0
  423. data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll +0 -0
  424. data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll.a +0 -0
  425. data/vendor/local/lib/gstreamer-0.10/libgstaiff.la +41 -0
  426. data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll +0 -0
  427. data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll.a +0 -0
  428. data/vendor/local/lib/gstreamer-0.10/libgstalaw.la +41 -0
  429. data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll +0 -0
  430. data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll.a +0 -0
  431. data/vendor/local/lib/gstreamer-0.10/libgstalpha.la +41 -0
  432. data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll +0 -0
  433. data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll.a +0 -0
  434. data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.la +41 -0
  435. data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll +0 -0
  436. data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll.a +0 -0
  437. data/vendor/local/lib/gstreamer-0.10/libgstannodex.la +41 -0
  438. data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll +0 -0
  439. data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll.a +0 -0
  440. data/vendor/local/lib/gstreamer-0.10/libgstapetag.la +41 -0
  441. data/vendor/local/lib/gstreamer-0.10/libgstapp.dll +0 -0
  442. data/vendor/local/lib/gstreamer-0.10/libgstapp.dll.a +0 -0
  443. data/vendor/local/lib/gstreamer-0.10/libgstapp.la +41 -0
  444. data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll +0 -0
  445. data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll.a +0 -0
  446. data/vendor/local/lib/gstreamer-0.10/libgstasfmux.la +41 -0
  447. data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll +0 -0
  448. data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll.a +0 -0
  449. data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.la +41 -0
  450. data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll +0 -0
  451. data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll.a +0 -0
  452. data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.la +41 -0
  453. data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll +0 -0
  454. data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll.a +0 -0
  455. data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.la +41 -0
  456. data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll +0 -0
  457. data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll.a +0 -0
  458. data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.la +41 -0
  459. data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll +0 -0
  460. data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll.a +0 -0
  461. data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.la +41 -0
  462. data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll +0 -0
  463. data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll.a +0 -0
  464. data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.la +41 -0
  465. data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll +0 -0
  466. data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll.a +0 -0
  467. data/vendor/local/lib/gstreamer-0.10/libgstauparse.la +41 -0
  468. data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll +0 -0
  469. data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll.a +0 -0
  470. data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.la +41 -0
  471. data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll +0 -0
  472. data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll.a +0 -0
  473. data/vendor/local/lib/gstreamer-0.10/libgstautodetect.la +41 -0
  474. data/vendor/local/lib/gstreamer-0.10/libgstavi.dll +0 -0
  475. data/vendor/local/lib/gstreamer-0.10/libgstavi.dll.a +0 -0
  476. data/vendor/local/lib/gstreamer-0.10/libgstavi.la +41 -0
  477. data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll +0 -0
  478. data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll.a +0 -0
  479. data/vendor/local/lib/gstreamer-0.10/libgstbayer.la +41 -0
  480. data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll +0 -0
  481. data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll.a +0 -0
  482. data/vendor/local/lib/gstreamer-0.10/libgstcairo.la +41 -0
  483. data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll +0 -0
  484. data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll.a +0 -0
  485. data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.la +41 -0
  486. data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll +0 -0
  487. data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll.a +0 -0
  488. data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.la +41 -0
  489. data/vendor/local/lib/gstreamer-0.10/libgstcog.dll +0 -0
  490. data/vendor/local/lib/gstreamer-0.10/libgstcog.dll.a +0 -0
  491. data/vendor/local/lib/gstreamer-0.10/libgstcog.la +41 -0
  492. data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll +0 -0
  493. data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll.a +0 -0
  494. data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.la +41 -0
  495. data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll +0 -0
  496. data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll.a +0 -0
  497. data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.la +41 -0
  498. data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll +0 -0
  499. data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll.a +0 -0
  500. data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.la +41 -0
  501. data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll +0 -0
  502. data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll.a +0 -0
  503. data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.la +41 -0
  504. data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll +0 -0
  505. data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll.a +0 -0
  506. data/vendor/local/lib/gstreamer-0.10/libgstcutter.la +41 -0
  507. data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll +0 -0
  508. data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll.a +0 -0
  509. data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.la +41 -0
  510. data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll +0 -0
  511. data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll.a +0 -0
  512. data/vendor/local/lib/gstreamer-0.10/libgstdebug.la +41 -0
  513. data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll +0 -0
  514. data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll.a +0 -0
  515. data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.la +41 -0
  516. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll +0 -0
  517. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll.a +0 -0
  518. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.la +41 -0
  519. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll +0 -0
  520. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll.a +0 -0
  521. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.la +41 -0
  522. data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll +0 -0
  523. data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll.a +0 -0
  524. data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.la +41 -0
  525. data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll +0 -0
  526. data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll.a +0 -0
  527. data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.la +41 -0
  528. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll +0 -0
  529. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll.a +0 -0
  530. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.la +41 -0
  531. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll +0 -0
  532. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll.a +0 -0
  533. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.la +41 -0
  534. data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll +0 -0
  535. data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll.a +0 -0
  536. data/vendor/local/lib/gstreamer-0.10/libgstdtmf.la +41 -0
  537. data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll +0 -0
  538. data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll.a +0 -0
  539. data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.la +41 -0
  540. data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll +0 -0
  541. data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll.a +0 -0
  542. data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.la +41 -0
  543. data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll +0 -0
  544. data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll.a +0 -0
  545. data/vendor/local/lib/gstreamer-0.10/libgsteffectv.la +41 -0
  546. data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll +0 -0
  547. data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll.a +0 -0
  548. data/vendor/local/lib/gstreamer-0.10/libgstencodebin.la +41 -0
  549. data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll +0 -0
  550. data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll.a +0 -0
  551. data/vendor/local/lib/gstreamer-0.10/libgstequalizer.la +41 -0
  552. data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll +0 -0
  553. data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll.a +0 -0
  554. data/vendor/local/lib/gstreamer-0.10/libgstfestival.la +41 -0
  555. data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll +0 -0
  556. data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll.a +0 -0
  557. data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.la +41 -0
  558. data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll +0 -0
  559. data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll.a +0 -0
  560. data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.la +41 -0
  561. data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll +0 -0
  562. data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll.a +0 -0
  563. data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.la +41 -0
  564. data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll +0 -0
  565. data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll.a +0 -0
  566. data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.la +41 -0
  567. data/vendor/local/lib/gstreamer-0.10/libgstflv.dll +0 -0
  568. data/vendor/local/lib/gstreamer-0.10/libgstflv.dll.a +0 -0
  569. data/vendor/local/lib/gstreamer-0.10/libgstflv.la +41 -0
  570. data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll +0 -0
  571. data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll.a +0 -0
  572. data/vendor/local/lib/gstreamer-0.10/libgstflxdec.la +41 -0
  573. data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll +0 -0
  574. data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll.a +0 -0
  575. data/vendor/local/lib/gstreamer-0.10/libgstfragmented.la +41 -0
  576. data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll +0 -0
  577. data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll.a +0 -0
  578. data/vendor/local/lib/gstreamer-0.10/libgstfreeze.la +41 -0
  579. data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll +0 -0
  580. data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll.a +0 -0
  581. data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.la +41 -0
  582. data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll +0 -0
  583. data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll.a +0 -0
  584. data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.la +41 -0
  585. data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll +0 -0
  586. data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll.a +0 -0
  587. data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.la +41 -0
  588. data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll +0 -0
  589. data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll.a +0 -0
  590. data/vendor/local/lib/gstreamer-0.10/libgstgdp.la +41 -0
  591. data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll +0 -0
  592. data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll.a +0 -0
  593. data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.la +41 -0
  594. data/vendor/local/lib/gstreamer-0.10/libgstgio.dll +0 -0
  595. data/vendor/local/lib/gstreamer-0.10/libgstgio.dll.a +0 -0
  596. data/vendor/local/lib/gstreamer-0.10/libgstgio.la +41 -0
  597. data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll +0 -0
  598. data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll.a +0 -0
  599. data/vendor/local/lib/gstreamer-0.10/libgstgoom.la +41 -0
  600. data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll +0 -0
  601. data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll.a +0 -0
  602. data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.la +41 -0
  603. data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll +0 -0
  604. data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll.a +0 -0
  605. data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.la +41 -0
  606. data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll +0 -0
  607. data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll.a +0 -0
  608. data/vendor/local/lib/gstreamer-0.10/libgsth264parse.la +41 -0
  609. data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll +0 -0
  610. data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll.a +0 -0
  611. data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.la +41 -0
  612. data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll +0 -0
  613. data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll.a +0 -0
  614. data/vendor/local/lib/gstreamer-0.10/libgsticydemux.la +41 -0
  615. data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll +0 -0
  616. data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll.a +0 -0
  617. data/vendor/local/lib/gstreamer-0.10/libgstid3demux.la +41 -0
  618. data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll +0 -0
  619. data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll.a +0 -0
  620. data/vendor/local/lib/gstreamer-0.10/libgstid3tag.la +41 -0
  621. data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll +0 -0
  622. data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll.a +0 -0
  623. data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.la +41 -0
  624. data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll +0 -0
  625. data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll.a +0 -0
  626. data/vendor/local/lib/gstreamer-0.10/libgstinterlace.la +41 -0
  627. data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll +0 -0
  628. data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll.a +0 -0
  629. data/vendor/local/lib/gstreamer-0.10/libgstinterleave.la +41 -0
  630. data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll +0 -0
  631. data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll.a +0 -0
  632. data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.la +41 -0
  633. data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll +0 -0
  634. data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll.a +0 -0
  635. data/vendor/local/lib/gstreamer-0.10/libgstisomp4.la +41 -0
  636. data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll +0 -0
  637. data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll.a +0 -0
  638. data/vendor/local/lib/gstreamer-0.10/libgstivfparse.la +41 -0
  639. data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll +0 -0
  640. data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll.a +0 -0
  641. data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.la +41 -0
  642. data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll +0 -0
  643. data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll.a +0 -0
  644. data/vendor/local/lib/gstreamer-0.10/libgstjpeg.la +41 -0
  645. data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll +0 -0
  646. data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll.a +0 -0
  647. data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.la +41 -0
  648. data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll +0 -0
  649. data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll.a +0 -0
  650. data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.la +41 -0
  651. data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll +0 -0
  652. data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll.a +0 -0
  653. data/vendor/local/lib/gstreamer-0.10/libgstlevel.la +41 -0
  654. data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll +0 -0
  655. data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll.a +0 -0
  656. data/vendor/local/lib/gstreamer-0.10/libgstliveadder.la +41 -0
  657. data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll +0 -0
  658. data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll.a +0 -0
  659. data/vendor/local/lib/gstreamer-0.10/libgstmatroska.la +41 -0
  660. data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll +0 -0
  661. data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll.a +0 -0
  662. data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.la +41 -0
  663. data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll +0 -0
  664. data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll.a +0 -0
  665. data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.la +41 -0
  666. data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll +0 -0
  667. data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll.a +0 -0
  668. data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.la +41 -0
  669. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll +0 -0
  670. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll.a +0 -0
  671. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.la +41 -0
  672. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll +0 -0
  673. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll.a +0 -0
  674. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.la +41 -0
  675. data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll +0 -0
  676. data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll.a +0 -0
  677. data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.la +41 -0
  678. data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll +0 -0
  679. data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll.a +0 -0
  680. data/vendor/local/lib/gstreamer-0.10/libgstmulaw.la +41 -0
  681. data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll +0 -0
  682. data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll.a +0 -0
  683. data/vendor/local/lib/gstreamer-0.10/libgstmultifile.la +41 -0
  684. data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll +0 -0
  685. data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll.a +0 -0
  686. data/vendor/local/lib/gstreamer-0.10/libgstmultipart.la +41 -0
  687. data/vendor/local/lib/gstreamer-0.10/libgstmve.dll +0 -0
  688. data/vendor/local/lib/gstreamer-0.10/libgstmve.dll.a +0 -0
  689. data/vendor/local/lib/gstreamer-0.10/libgstmve.la +41 -0
  690. data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll +0 -0
  691. data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll.a +0 -0
  692. data/vendor/local/lib/gstreamer-0.10/libgstmxf.la +41 -0
  693. data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll +0 -0
  694. data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll.a +0 -0
  695. data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.la +41 -0
  696. data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll +0 -0
  697. data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll.a +0 -0
  698. data/vendor/local/lib/gstreamer-0.10/libgstnsf.la +41 -0
  699. data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll +0 -0
  700. data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll.a +0 -0
  701. data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.la +41 -0
  702. data/vendor/local/lib/gstreamer-0.10/libgstogg.dll +0 -0
  703. data/vendor/local/lib/gstreamer-0.10/libgstogg.dll.a +0 -0
  704. data/vendor/local/lib/gstreamer-0.10/libgstogg.la +41 -0
  705. data/vendor/local/lib/gstreamer-0.10/libgstpango.dll +0 -0
  706. data/vendor/local/lib/gstreamer-0.10/libgstpango.dll.a +0 -0
  707. data/vendor/local/lib/gstreamer-0.10/libgstpango.la +41 -0
  708. data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll +0 -0
  709. data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll.a +0 -0
  710. data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.la +41 -0
  711. data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll +0 -0
  712. data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll.a +0 -0
  713. data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.la +41 -0
  714. data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll +0 -0
  715. data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll.a +0 -0
  716. data/vendor/local/lib/gstreamer-0.10/libgstplaybin.la +41 -0
  717. data/vendor/local/lib/gstreamer-0.10/libgstpng.dll +0 -0
  718. data/vendor/local/lib/gstreamer-0.10/libgstpng.dll.a +0 -0
  719. data/vendor/local/lib/gstreamer-0.10/libgstpng.la +41 -0
  720. data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll +0 -0
  721. data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll.a +0 -0
  722. data/vendor/local/lib/gstreamer-0.10/libgstpnm.la +41 -0
  723. data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll +0 -0
  724. data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll.a +0 -0
  725. data/vendor/local/lib/gstreamer-0.10/libgstpostproc.la +41 -0
  726. data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll +0 -0
  727. data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll.a +0 -0
  728. data/vendor/local/lib/gstreamer-0.10/libgstrawparse.la +41 -0
  729. data/vendor/local/lib/gstreamer-0.10/libgstreal.dll +0 -0
  730. data/vendor/local/lib/gstreamer-0.10/libgstreal.dll.a +0 -0
  731. data/vendor/local/lib/gstreamer-0.10/libgstreal.la +41 -0
  732. data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll +0 -0
  733. data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll.a +0 -0
  734. data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.la +41 -0
  735. data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll +0 -0
  736. data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll.a +0 -0
  737. data/vendor/local/lib/gstreamer-0.10/libgstrtp.la +41 -0
  738. data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll +0 -0
  739. data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll.a +0 -0
  740. data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.la +41 -0
  741. data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll +0 -0
  742. data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll.a +0 -0
  743. data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.la +41 -0
  744. data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll +0 -0
  745. data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll.a +0 -0
  746. data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.la +41 -0
  747. data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll +0 -0
  748. data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll.a +0 -0
  749. data/vendor/local/lib/gstreamer-0.10/libgstrtsp.la +41 -0
  750. data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll +0 -0
  751. data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll.a +0 -0
  752. data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.la +41 -0
  753. data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll +0 -0
  754. data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll.a +0 -0
  755. data/vendor/local/lib/gstreamer-0.10/libgstsdi.la +41 -0
  756. data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll +0 -0
  757. data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll.a +0 -0
  758. data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.la +41 -0
  759. data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll +0 -0
  760. data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll.a +0 -0
  761. data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.la +41 -0
  762. data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll +0 -0
  763. data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll.a +0 -0
  764. data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.la +41 -0
  765. data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll +0 -0
  766. data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll.a +0 -0
  767. data/vendor/local/lib/gstreamer-0.10/libgstsiren.la +41 -0
  768. data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll +0 -0
  769. data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll.a +0 -0
  770. data/vendor/local/lib/gstreamer-0.10/libgstsmpte.la +41 -0
  771. data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll +0 -0
  772. data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll.a +0 -0
  773. data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.la +41 -0
  774. data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll +0 -0
  775. data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll.a +0 -0
  776. data/vendor/local/lib/gstreamer-0.10/libgstspectrum.la +41 -0
  777. data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll +0 -0
  778. data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll.a +0 -0
  779. data/vendor/local/lib/gstreamer-0.10/libgstspeed.la +41 -0
  780. data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll +0 -0
  781. data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll.a +0 -0
  782. data/vendor/local/lib/gstreamer-0.10/libgstspeex.la +41 -0
  783. data/vendor/local/lib/gstreamer-0.10/libgststereo.dll +0 -0
  784. data/vendor/local/lib/gstreamer-0.10/libgststereo.dll.a +0 -0
  785. data/vendor/local/lib/gstreamer-0.10/libgststereo.la +41 -0
  786. data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll +0 -0
  787. data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll.a +0 -0
  788. data/vendor/local/lib/gstreamer-0.10/libgstsubenc.la +41 -0
  789. data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll +0 -0
  790. data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll.a +0 -0
  791. data/vendor/local/lib/gstreamer-0.10/libgstsubparse.la +41 -0
  792. data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll +0 -0
  793. data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll.a +0 -0
  794. data/vendor/local/lib/gstreamer-0.10/libgsttheora.la +41 -0
  795. data/vendor/local/lib/gstreamer-0.10/libgsttta.dll +0 -0
  796. data/vendor/local/lib/gstreamer-0.10/libgsttta.dll.a +0 -0
  797. data/vendor/local/lib/gstreamer-0.10/libgsttta.la +41 -0
  798. data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll +0 -0
  799. data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll.a +0 -0
  800. data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.la +41 -0
  801. data/vendor/local/lib/gstreamer-0.10/libgstudp.dll +0 -0
  802. data/vendor/local/lib/gstreamer-0.10/libgstudp.dll.a +0 -0
  803. data/vendor/local/lib/gstreamer-0.10/libgstudp.la +41 -0
  804. data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll +0 -0
  805. data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll.a +0 -0
  806. data/vendor/local/lib/gstreamer-0.10/libgstvideobox.la +41 -0
  807. data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll +0 -0
  808. data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll.a +0 -0
  809. data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.la +41 -0
  810. data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll +0 -0
  811. data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll.a +0 -0
  812. data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.la +41 -0
  813. data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll +0 -0
  814. data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll.a +0 -0
  815. data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.la +41 -0
  816. data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll +0 -0
  817. data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll.a +0 -0
  818. data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.la +41 -0
  819. data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll +0 -0
  820. data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll.a +0 -0
  821. data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.la +41 -0
  822. data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll +0 -0
  823. data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll.a +0 -0
  824. data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.la +41 -0
  825. data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll +0 -0
  826. data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll.a +0 -0
  827. data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.la +41 -0
  828. data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll +0 -0
  829. data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll.a +0 -0
  830. data/vendor/local/lib/gstreamer-0.10/libgstvideorate.la +41 -0
  831. data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll +0 -0
  832. data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll.a +0 -0
  833. data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.la +41 -0
  834. data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll +0 -0
  835. data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll.a +0 -0
  836. data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.la +41 -0
  837. data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll +0 -0
  838. data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll.a +0 -0
  839. data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.la +41 -0
  840. data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll +0 -0
  841. data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll.a +0 -0
  842. data/vendor/local/lib/gstreamer-0.10/libgstvmnc.la +41 -0
  843. data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll +0 -0
  844. data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll.a +0 -0
  845. data/vendor/local/lib/gstreamer-0.10/libgstvolume.la +41 -0
  846. data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll +0 -0
  847. data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll.a +0 -0
  848. data/vendor/local/lib/gstreamer-0.10/libgstvorbis.la +41 -0
  849. data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll +0 -0
  850. data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll.a +0 -0
  851. data/vendor/local/lib/gstreamer-0.10/libgstwavenc.la +41 -0
  852. data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll +0 -0
  853. data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll.a +0 -0
  854. data/vendor/local/lib/gstreamer-0.10/libgstwavparse.la +41 -0
  855. data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll +0 -0
  856. data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll.a +0 -0
  857. data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.la +41 -0
  858. data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll +0 -0
  859. data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll.a +0 -0
  860. data/vendor/local/lib/gstreamer-0.10/libgsty4menc.la +41 -0
  861. data/vendor/local/lib/libgstapp-0.10.dll.a +0 -0
  862. data/vendor/local/lib/libgstapp-0.10.la +41 -0
  863. data/vendor/local/lib/libgstaudio-0.10.a +0 -0
  864. data/vendor/local/lib/libgstaudio-0.10.dll.a +0 -0
  865. data/vendor/local/lib/libgstaudio-0.10.la +41 -0
  866. data/vendor/local/lib/libgstbase-0.10.a +0 -0
  867. data/vendor/local/lib/libgstbase-0.10.dll.a +0 -0
  868. data/vendor/local/lib/libgstbase-0.10.la +41 -0
  869. data/vendor/local/lib/libgstbasevideo-0.10.a +0 -0
  870. data/vendor/local/lib/libgstbasevideo-0.10.dll.a +0 -0
  871. data/vendor/local/lib/libgstbasevideo-0.10.la +41 -0
  872. data/vendor/local/lib/libgstcdda-0.10.a +0 -0
  873. data/vendor/local/lib/libgstcdda-0.10.dll.a +0 -0
  874. data/vendor/local/lib/libgstcdda-0.10.la +41 -0
  875. data/vendor/local/lib/libgstcheck-0.10.a +0 -0
  876. data/vendor/local/lib/libgstcheck-0.10.dll.a +0 -0
  877. data/vendor/local/lib/libgstcheck-0.10.la +41 -0
  878. data/vendor/local/lib/libgstcontroller-0.10.a +0 -0
  879. data/vendor/local/lib/libgstcontroller-0.10.dll.a +0 -0
  880. data/vendor/local/lib/libgstcontroller-0.10.la +41 -0
  881. data/vendor/local/lib/libgstdataprotocol-0.10.a +0 -0
  882. data/vendor/local/lib/libgstdataprotocol-0.10.dll.a +0 -0
  883. data/vendor/local/lib/libgstdataprotocol-0.10.la +41 -0
  884. data/vendor/local/lib/libgstfft-0.10.a +0 -0
  885. data/vendor/local/lib/libgstfft-0.10.dll.a +0 -0
  886. data/vendor/local/lib/libgstfft-0.10.la +41 -0
  887. data/vendor/local/lib/libgstinterfaces-0.10.a +0 -0
  888. data/vendor/local/lib/libgstinterfaces-0.10.dll.a +0 -0
  889. data/vendor/local/lib/libgstinterfaces-0.10.la +41 -0
  890. data/vendor/local/lib/libgstnet-0.10.a +0 -0
  891. data/vendor/local/lib/libgstnet-0.10.dll.a +0 -0
  892. data/vendor/local/lib/libgstnet-0.10.la +41 -0
  893. data/vendor/local/lib/libgstnetbuffer-0.10.a +0 -0
  894. data/vendor/local/lib/libgstnetbuffer-0.10.dll.a +0 -0
  895. data/vendor/local/lib/libgstnetbuffer-0.10.la +41 -0
  896. data/vendor/local/lib/libgstpbutils-0.10.a +0 -0
  897. data/vendor/local/lib/libgstpbutils-0.10.dll.a +0 -0
  898. data/vendor/local/lib/libgstpbutils-0.10.la +41 -0
  899. data/vendor/local/lib/libgstphotography-0.10.a +0 -0
  900. data/vendor/local/lib/libgstphotography-0.10.dll.a +0 -0
  901. data/vendor/local/lib/libgstphotography-0.10.la +41 -0
  902. data/vendor/local/lib/libgstreamer-0.10.a +0 -0
  903. data/vendor/local/lib/libgstreamer-0.10.dll.a +0 -0
  904. data/vendor/local/lib/libgstreamer-0.10.la +41 -0
  905. data/vendor/local/lib/libgstriff-0.10.a +0 -0
  906. data/vendor/local/lib/libgstriff-0.10.dll.a +0 -0
  907. data/vendor/local/lib/libgstriff-0.10.la +41 -0
  908. data/vendor/local/lib/libgstrtp-0.10.a +0 -0
  909. data/vendor/local/lib/libgstrtp-0.10.dll.a +0 -0
  910. data/vendor/local/lib/libgstrtp-0.10.la +41 -0
  911. data/vendor/local/lib/libgstrtsp-0.10.a +0 -0
  912. data/vendor/local/lib/libgstrtsp-0.10.dll.a +0 -0
  913. data/vendor/local/lib/libgstrtsp-0.10.la +41 -0
  914. data/vendor/local/lib/libgstsdp-0.10.a +0 -0
  915. data/vendor/local/lib/libgstsdp-0.10.dll.a +0 -0
  916. data/vendor/local/lib/libgstsdp-0.10.la +41 -0
  917. data/vendor/local/lib/libgstsignalprocessor-0.10.a +0 -0
  918. data/vendor/local/lib/libgstsignalprocessor-0.10.dll.a +0 -0
  919. data/vendor/local/lib/libgstsignalprocessor-0.10.la +41 -0
  920. data/vendor/local/lib/libgsttag-0.10.a +0 -0
  921. data/vendor/local/lib/libgsttag-0.10.dll.a +0 -0
  922. data/vendor/local/lib/libgsttag-0.10.la +41 -0
  923. data/vendor/local/lib/libgstvideo-0.10.a +0 -0
  924. data/vendor/local/lib/libgstvideo-0.10.dll.a +0 -0
  925. data/vendor/local/lib/libgstvideo-0.10.la +41 -0
  926. data/vendor/local/lib/libjpeg.dll.a +0 -0
  927. data/vendor/local/lib/libogg.a +0 -0
  928. data/vendor/local/lib/libogg.dll.a +0 -0
  929. data/vendor/local/lib/libogg.la +41 -0
  930. data/vendor/local/lib/libsoup-2.4.dll.a +0 -0
  931. data/vendor/local/lib/libspeex.a +0 -0
  932. data/vendor/local/lib/libspeex.dll.a +0 -0
  933. data/vendor/local/lib/libspeex.la +35 -0
  934. data/vendor/local/lib/libspeexdsp.a +0 -0
  935. data/vendor/local/lib/libspeexdsp.dll.a +0 -0
  936. data/vendor/local/lib/libspeexdsp.la +35 -0
  937. data/vendor/local/lib/libtheora.a +0 -0
  938. data/vendor/local/lib/libtheora.dll.a +0 -0
  939. data/vendor/local/lib/libtheora.la +41 -0
  940. data/vendor/local/lib/libtheoradec.a +0 -0
  941. data/vendor/local/lib/libtheoradec.dll.a +0 -0
  942. data/vendor/local/lib/libtheoradec.la +41 -0
  943. data/vendor/local/lib/libtheoraenc.a +0 -0
  944. data/vendor/local/lib/libtheoraenc.dll.a +0 -0
  945. data/vendor/local/lib/libtheoraenc.la +41 -0
  946. data/vendor/local/lib/libvorbis.a +0 -0
  947. data/vendor/local/lib/libvorbis.dll.a +0 -0
  948. data/vendor/local/lib/libvorbis.la +41 -0
  949. data/vendor/local/lib/libvorbisenc.a +0 -0
  950. data/vendor/local/lib/libvorbisenc.dll.a +0 -0
  951. data/vendor/local/lib/libvorbisenc.la +41 -0
  952. data/vendor/local/lib/libvorbisfile.a +0 -0
  953. data/vendor/local/lib/libvorbisfile.dll.a +0 -0
  954. data/vendor/local/lib/libvorbisfile.la +41 -0
  955. data/vendor/local/lib/libxml2.def +1657 -0
  956. data/vendor/local/lib/libxml2.dll.a +0 -0
  957. data/vendor/local/lib/libxml2.lib +0 -0
  958. data/vendor/local/lib/pkgconfig/gstreamer-0.10.pc +17 -0
  959. data/vendor/local/lib/pkgconfig/gstreamer-app-0.10.pc +16 -0
  960. data/vendor/local/lib/pkgconfig/gstreamer-audio-0.10.pc +16 -0
  961. data/vendor/local/lib/pkgconfig/gstreamer-base-0.10.pc +15 -0
  962. data/vendor/local/lib/pkgconfig/gstreamer-cdda-0.10.pc +16 -0
  963. data/vendor/local/lib/pkgconfig/gstreamer-check-0.10.pc +15 -0
  964. data/vendor/local/lib/pkgconfig/gstreamer-controller-0.10.pc +15 -0
  965. data/vendor/local/lib/pkgconfig/gstreamer-dataprotocol-0.10.pc +15 -0
  966. data/vendor/local/lib/pkgconfig/gstreamer-fft-0.10.pc +16 -0
  967. data/vendor/local/lib/pkgconfig/gstreamer-floatcast-0.10.pc +16 -0
  968. data/vendor/local/lib/pkgconfig/gstreamer-interfaces-0.10.pc +16 -0
  969. data/vendor/local/lib/pkgconfig/gstreamer-net-0.10.pc +15 -0
  970. data/vendor/local/lib/pkgconfig/gstreamer-netbuffer-0.10.pc +16 -0
  971. data/vendor/local/lib/pkgconfig/gstreamer-pbutils-0.10.pc +16 -0
  972. data/vendor/local/lib/pkgconfig/gstreamer-plugins-bad-0.10.pc +12 -0
  973. data/vendor/local/lib/pkgconfig/gstreamer-plugins-base-0.10.pc +14 -0
  974. data/vendor/local/lib/pkgconfig/gstreamer-riff-0.10.pc +16 -0
  975. data/vendor/local/lib/pkgconfig/gstreamer-rtp-0.10.pc +16 -0
  976. data/vendor/local/lib/pkgconfig/gstreamer-rtsp-0.10.pc +16 -0
  977. data/vendor/local/lib/pkgconfig/gstreamer-sdp-0.10.pc +16 -0
  978. data/vendor/local/lib/pkgconfig/gstreamer-tag-0.10.pc +16 -0
  979. data/vendor/local/lib/pkgconfig/gstreamer-video-0.10.pc +16 -0
  980. data/vendor/local/lib/pkgconfig/libsoup-2.4.pc +12 -0
  981. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  982. data/vendor/local/lib/pkgconfig/ogg.pc +14 -0
  983. data/vendor/local/lib/pkgconfig/speex.pc +15 -0
  984. data/vendor/local/lib/pkgconfig/speexdsp.pc +15 -0
  985. data/vendor/local/lib/pkgconfig/theora.pc +14 -0
  986. data/vendor/local/lib/pkgconfig/theoradec.pc +14 -0
  987. data/vendor/local/lib/pkgconfig/theoraenc.pc +14 -0
  988. data/vendor/local/lib/pkgconfig/vorbis.pc +14 -0
  989. data/vendor/local/lib/pkgconfig/vorbisenc.pc +14 -0
  990. data/vendor/local/lib/pkgconfig/vorbisfile.pc +14 -0
  991. data/vendor/local/libexec/gstreamer-0.10/gst-plugin-scanner.exe +0 -0
  992. data/vendor/local/manifest/jpeg-dev_8-1_win32.mft +18 -0
  993. data/vendor/local/manifest/jpeg_8-1_win32.mft +2 -0
  994. data/vendor/local/manifest/libsoup-dev_2.26.3-1_win32.mft +41 -0
  995. data/vendor/local/manifest/libsoup_2.26.3-1_win32.mft +2 -0
  996. data/vendor/local/manifest/libxml2-dev_2.7.7-1_win32.mft +267 -0
  997. data/vendor/local/manifest/libxml2_2.7.7-1_win32.mft +2 -0
  998. data/vendor/local/share/aclocal/gst-element-check-0.10.m4 +23 -0
  999. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  1000. data/vendor/local/share/aclocal/ogg.m4 +116 -0
  1001. data/vendor/local/share/aclocal/speex.m4 +104 -0
  1002. data/vendor/local/share/aclocal/vorbis.m4 +136 -0
  1003. data/vendor/local/share/doc/libogg-1.3.0/framing.html +429 -0
  1004. data/vendor/local/share/doc/libogg-1.3.0/index.html +105 -0
  1005. data/vendor/local/share/doc/libogg-1.3.0/ogg-multiplex.html +446 -0
  1006. data/vendor/local/share/doc/libogg-1.3.0/ogg/bitpacking.html +103 -0
  1007. data/vendor/local/share/doc/libogg-1.3.0/ogg/datastructures.html +59 -0
  1008. data/vendor/local/share/doc/libogg-1.3.0/ogg/decoding.html +104 -0
  1009. data/vendor/local/share/doc/libogg-1.3.0/ogg/encoding.html +76 -0
  1010. data/vendor/local/share/doc/libogg-1.3.0/ogg/general.html +109 -0
  1011. data/vendor/local/share/doc/libogg-1.3.0/ogg/index.html +39 -0
  1012. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet.html +75 -0
  1013. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet_clear.html +64 -0
  1014. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page.html +75 -0
  1015. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_bos.html +65 -0
  1016. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_checksum_set.html +62 -0
  1017. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_continued.html +64 -0
  1018. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_eos.html +65 -0
  1019. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_granulepos.html +65 -0
  1020. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_packets.html +75 -0
  1021. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_pageno.html +63 -0
  1022. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_serialno.html +63 -0
  1023. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_version.html +63 -0
  1024. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_clear.html +61 -0
  1025. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_destroy.html +71 -0
  1026. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_eos.html +62 -0
  1027. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_flush.html +67 -0
  1028. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_init.html +66 -0
  1029. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetin.html +72 -0
  1030. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetout.html +85 -0
  1031. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetpeek.html +85 -0
  1032. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pagein.html +67 -0
  1033. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout.html +84 -0
  1034. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout_fill.html +89 -0
  1035. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset.html +61 -0
  1036. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset_serialno.html +67 -0
  1037. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_state.html +121 -0
  1038. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_buffer.html +67 -0
  1039. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_clear.html +62 -0
  1040. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_destroy.html +68 -0
  1041. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_init.html +63 -0
  1042. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageout.html +77 -0
  1043. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageseek.html +68 -0
  1044. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_reset.html +63 -0
  1045. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_state.html +77 -0
  1046. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_wrote.html +73 -0
  1047. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv.html +64 -0
  1048. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv1.html +62 -0
  1049. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bits.html +62 -0
  1050. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_buffer.html +66 -0
  1051. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bytes.html +67 -0
  1052. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_get_buffer.html +62 -0
  1053. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look.html +66 -0
  1054. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look1.html +63 -0
  1055. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read.html +65 -0
  1056. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read1.html +63 -0
  1057. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_readinit.html +64 -0
  1058. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_reset.html +62 -0
  1059. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_write.html +68 -0
  1060. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writealign.html +65 -0
  1061. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeclear.html +62 -0
  1062. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writecopy.html +69 -0
  1063. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeinit.html +62 -0
  1064. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writetrunc.html +65 -0
  1065. data/vendor/local/share/doc/libogg-1.3.0/ogg/overview.html +44 -0
  1066. data/vendor/local/share/doc/libogg-1.3.0/ogg/reference.html +98 -0
  1067. data/vendor/local/share/doc/libogg-1.3.0/ogg/style.css +7 -0
  1068. data/vendor/local/share/doc/libogg-1.3.0/oggstream.html +594 -0
  1069. data/vendor/local/share/doc/libogg-1.3.0/rfc3533.txt +843 -0
  1070. data/vendor/local/share/doc/libogg-1.3.0/rfc5334.txt +787 -0
  1071. data/vendor/local/share/doc/libogg-1.3.0/skeleton.html +222 -0
  1072. data/vendor/local/share/doc/libogg-1.3.0/stream.png +0 -0
  1073. data/vendor/local/share/doc/libogg-1.3.0/vorbisword2.png +0 -0
  1074. data/vendor/local/share/doc/libogg-1.3.0/white-ogg.png +0 -0
  1075. data/vendor/local/share/doc/libogg-1.3.0/white-xifish.png +0 -0
  1076. data/vendor/local/share/doc/libtheora-1.1.1/color.html +602 -0
  1077. data/vendor/local/share/doc/libtheora-1.1.1/doxygen-build.stamp +0 -0
  1078. data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.txt +1400 -0
  1079. data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.xml +1146 -0
  1080. data/vendor/local/share/doc/libtheora-1.1.1/html/annotated.html +82 -0
  1081. data/vendor/local/share/doc/libtheora-1.1.1/html/bc_s.png +0 -0
  1082. data/vendor/local/share/doc/libtheora-1.1.1/html/classes.html +79 -0
  1083. data/vendor/local/share/doc/libtheora-1.1.1/html/closed.png +0 -0
  1084. data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h.html +469 -0
  1085. data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h_source.html +233 -0
  1086. data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.css +949 -0
  1087. data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.png +0 -0
  1088. data/vendor/local/share/doc/libtheora-1.1.1/html/files.html +75 -0
  1089. data/vendor/local/share/doc/libtheora-1.1.1/html/functions.html +385 -0
  1090. data/vendor/local/share/doc/libtheora-1.1.1/html/functions_vars.html +385 -0
  1091. data/vendor/local/share/doc/libtheora-1.1.1/html/globals.html +502 -0
  1092. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_defs.html +247 -0
  1093. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_enum.html +90 -0
  1094. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_eval.html +129 -0
  1095. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_func.html +247 -0
  1096. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_type.html +102 -0
  1097. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_vars.html +84 -0
  1098. data/vendor/local/share/doc/libtheora-1.1.1/html/group__basefuncs.html +568 -0
  1099. data/vendor/local/share/doc/libtheora-1.1.1/html/group__decfuncs.html +402 -0
  1100. data/vendor/local/share/doc/libtheora-1.1.1/html/group__encfuncs.html +352 -0
  1101. data/vendor/local/share/doc/libtheora-1.1.1/html/group__oldfuncs.html +1662 -0
  1102. data/vendor/local/share/doc/libtheora-1.1.1/html/index.html +76 -0
  1103. data/vendor/local/share/doc/libtheora-1.1.1/html/modules.html +69 -0
  1104. data/vendor/local/share/doc/libtheora-1.1.1/html/nav_f.png +0 -0
  1105. data/vendor/local/share/doc/libtheora-1.1.1/html/nav_h.png +0 -0
  1106. data/vendor/local/share/doc/libtheora-1.1.1/html/open.png +0 -0
  1107. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__comment.html +158 -0
  1108. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__huff__code.html +122 -0
  1109. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__img__plane.html +155 -0
  1110. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__info.html +397 -0
  1111. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__info.html +171 -0
  1112. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__ranges.html +139 -0
  1113. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__stripe__callback.html +121 -0
  1114. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__comment.html +157 -0
  1115. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__info.html +527 -0
  1116. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__state.html +142 -0
  1117. data/vendor/local/share/doc/libtheora-1.1.1/html/structyuv__buffer.html +243 -0
  1118. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_a.png +0 -0
  1119. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.gif +0 -0
  1120. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.png +0 -0
  1121. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_h.png +0 -0
  1122. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_l.gif +0 -0
  1123. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_r.gif +0 -0
  1124. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_s.png +0 -0
  1125. data/vendor/local/share/doc/libtheora-1.1.1/html/tabs.css +59 -0
  1126. data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h.html +258 -0
  1127. data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h_source.html +283 -0
  1128. data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h.html +405 -0
  1129. data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h_source.html +146 -0
  1130. data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h.html +716 -0
  1131. data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h_source.html +155 -0
  1132. data/vendor/local/share/doc/libtheora-1.1.1/latex/Makefile +39 -0
  1133. data/vendor/local/share/doc/libtheora-1.1.1/latex/annotated.tex +14 -0
  1134. data/vendor/local/share/doc/libtheora-1.1.1/latex/codec_8h.tex +273 -0
  1135. data/vendor/local/share/doc/libtheora-1.1.1/latex/doxygen.sty +482 -0
  1136. data/vendor/local/share/doc/libtheora-1.1.1/latex/files.tex +7 -0
  1137. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__basefuncs.tex +336 -0
  1138. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__decfuncs.tex +223 -0
  1139. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__encfuncs.tex +195 -0
  1140. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__oldfuncs.tex +1046 -0
  1141. data/vendor/local/share/doc/libtheora-1.1.1/latex/index.tex +12 -0
  1142. data/vendor/local/share/doc/libtheora-1.1.1/latex/modules.tex +7 -0
  1143. data/vendor/local/share/doc/libtheora-1.1.1/latex/refman.tex +76 -0
  1144. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__comment.tex +67 -0
  1145. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__huff__code.tex +45 -0
  1146. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__img__plane.tex +63 -0
  1147. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__info.tex +189 -0
  1148. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__info.tex +95 -0
  1149. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__ranges.tex +54 -0
  1150. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__stripe__callback.tex +45 -0
  1151. data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__comment.tex +67 -0
  1152. data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__info.tex +233 -0
  1153. data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__state.tex +45 -0
  1154. data/vendor/local/share/doc/libtheora-1.1.1/latex/structyuv__buffer.tex +114 -0
  1155. data/vendor/local/share/doc/libtheora-1.1.1/latex/theora_8h.tex +191 -0
  1156. data/vendor/local/share/doc/libtheora-1.1.1/latex/theoradec_8h.tex +251 -0
  1157. data/vendor/local/share/doc/libtheora-1.1.1/latex/theoraenc_8h.tex +512 -0
  1158. data/vendor/local/share/doc/libtheora-1.1.1/vp3-format.txt +1305 -0
  1159. data/vendor/local/share/doc/libvorbis-1.3.2/doxygen-build.stamp +0 -0
  1160. data/vendor/local/share/doc/libvorbis-1.3.2/eightphase.png +0 -0
  1161. data/vendor/local/share/doc/libvorbis-1.3.2/evenlsp.png +0 -0
  1162. data/vendor/local/share/doc/libvorbis-1.3.2/fish_xiph_org.png +0 -0
  1163. data/vendor/local/share/doc/libvorbis-1.3.2/floor1_inverse_dB_table.html +154 -0
  1164. data/vendor/local/share/doc/libvorbis-1.3.2/floorval.png +0 -0
  1165. data/vendor/local/share/doc/libvorbis-1.3.2/fourphase.png +0 -0
  1166. data/vendor/local/share/doc/libvorbis-1.3.2/framing.html +431 -0
  1167. data/vendor/local/share/doc/libvorbis-1.3.2/helper.html +239 -0
  1168. data/vendor/local/share/doc/libvorbis-1.3.2/index.html +114 -0
  1169. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/index.html +44 -0
  1170. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/overview.html +136 -0
  1171. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/reference.html +86 -0
  1172. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/return.html +79 -0
  1173. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/style.css +7 -0
  1174. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis.html +86 -0
  1175. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_blockout.html +79 -0
  1176. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_buffer.html +74 -0
  1177. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_headerout.html +83 -0
  1178. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_init.html +66 -0
  1179. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_wrote.html +80 -0
  1180. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_addblock.html +74 -0
  1181. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_flushpacket.html +80 -0
  1182. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block.html +60 -0
  1183. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_clear.html +61 -0
  1184. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_init.html +66 -0
  1185. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment.html +80 -0
  1186. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add.html +70 -0
  1187. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add_tag.html +74 -0
  1188. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_clear.html +69 -0
  1189. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_init.html +72 -0
  1190. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query.html +72 -0
  1191. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query_count.html +66 -0
  1192. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_commentheader_out.html +65 -0
  1193. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_clear.html +63 -0
  1194. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_state.html +57 -0
  1195. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_granule_time.html +65 -0
  1196. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info.html +80 -0
  1197. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_blocksize.html +66 -0
  1198. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_clear.html +61 -0
  1199. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_init.html +62 -0
  1200. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_packet_blocksize.html +66 -0
  1201. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis.html +70 -0
  1202. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_blockin.html +69 -0
  1203. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate.html +68 -0
  1204. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate_p.html +64 -0
  1205. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_headerin.html +80 -0
  1206. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_idheader.html +63 -0
  1207. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_init.html +69 -0
  1208. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_lapout.html +74 -0
  1209. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_pcmout.html +75 -0
  1210. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_read.html +67 -0
  1211. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_restart.html +64 -0
  1212. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_trackonly.html +71 -0
  1213. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_version_string.html +56 -0
  1214. data/vendor/local/share/doc/libvorbis-1.3.2/lspmap.png +0 -0
  1215. data/vendor/local/share/doc/libvorbis-1.3.2/oddlsp.png +0 -0
  1216. data/vendor/local/share/doc/libvorbis-1.3.2/oggstream.html +234 -0
  1217. data/vendor/local/share/doc/libvorbis-1.3.2/programming.html +554 -0
  1218. data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.txt +1459 -0
  1219. data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.xml +1176 -0
  1220. data/vendor/local/share/doc/libvorbis-1.3.2/squarepolar.png +0 -0
  1221. data/vendor/local/share/doc/libvorbis-1.3.2/stereo.html +419 -0
  1222. data/vendor/local/share/doc/libvorbis-1.3.2/stream.png +0 -0
  1223. data/vendor/local/share/doc/libvorbis-1.3.2/v-comment.html +285 -0
  1224. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-clip.txt +139 -0
  1225. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-errors.txt +103 -0
  1226. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-fidelity.html +180 -0
  1227. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis.html +234 -0
  1228. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/changes.html +104 -0
  1229. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/examples.html +133 -0
  1230. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/index.html +40 -0
  1231. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage2_arg.html +92 -0
  1232. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage_arg.html +92 -0
  1233. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/overview.html +382 -0
  1234. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/reference.html +54 -0
  1235. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/style.css +7 -0
  1236. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_ctl.html +183 -0
  1237. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init.html +88 -0
  1238. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init_vbr.html +81 -0
  1239. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_init.html +88 -0
  1240. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_managed.html +102 -0
  1241. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_vbr.html +90 -0
  1242. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/OggVorbis_File.html +137 -0
  1243. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/callbacks.html +121 -0
  1244. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chaining_example_c.html +90 -0
  1245. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chainingexample.html +175 -0
  1246. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/crosslap.html +121 -0
  1247. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/datastructures.html +61 -0
  1248. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/decoding.html +92 -0
  1249. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/example.html +208 -0
  1250. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/exampleindex.html +39 -0
  1251. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/fileinfo.html +95 -0
  1252. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/index.html +49 -0
  1253. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/initialization.html +118 -0
  1254. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate.html +72 -0
  1255. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate_instant.html +65 -0
  1256. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_callbacks.html +117 -0
  1257. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_clear.html +64 -0
  1258. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_comment.html +66 -0
  1259. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_crosslap.html +100 -0
  1260. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_fopen.html +124 -0
  1261. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_info.html +64 -0
  1262. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open.html +183 -0
  1263. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open_callbacks.html +147 -0
  1264. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek.html +83 -0
  1265. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_lap.html +103 -0
  1266. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page.html +84 -0
  1267. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page_lap.html +112 -0
  1268. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_tell.html +63 -0
  1269. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_total.html +67 -0
  1270. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek.html +83 -0
  1271. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek_lap.html +110 -0
  1272. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_tell.html +65 -0
  1273. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_total.html +68 -0
  1274. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read.html +148 -0
  1275. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_filter.html +114 -0
  1276. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_float.html +105 -0
  1277. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_seekable.html +63 -0
  1278. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_serialnumber.html +67 -0
  1279. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_streams.html +64 -0
  1280. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test.html +101 -0
  1281. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_callbacks.html +111 -0
  1282. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_open.html +82 -0
  1283. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek.html +82 -0
  1284. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_lap.html +105 -0
  1285. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page.html +83 -0
  1286. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page_lap.html +112 -0
  1287. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_tell.html +63 -0
  1288. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_total.html +67 -0
  1289. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/overview.html +61 -0
  1290. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/reference.html +86 -0
  1291. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekexample.html +152 -0
  1292. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking.html +107 -0
  1293. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_example_c.html +86 -0
  1294. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_test_c.html +86 -0
  1295. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekingexample.html +203 -0
  1296. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/style.css +7 -0
  1297. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/threads.html +50 -0
  1298. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/vorbisfile_example_c.html +106 -0
  1299. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisword2.png +0 -0
  1300. data/vendor/local/share/doc/libvorbis-1.3.2/wait.png +0 -0
  1301. data/vendor/local/share/doc/libvorbis-1.3.2/white-xifish.png +0 -0
  1302. data/vendor/local/share/doc/libxml2-2.7.7/Copyright +27 -0
  1303. data/vendor/local/share/doc/libxml2-2.7.7/examples/testHTML.c +880 -0
  1304. data/vendor/local/share/doc/libxml2-2.7.7/examples/testSAX.c +1198 -0
  1305. data/vendor/local/share/doc/libxml2-2.7.7/examples/testXPath.c +227 -0
  1306. data/vendor/local/share/doc/libxml2-2.7.7/examples/xmllint.c +3722 -0
  1307. data/vendor/local/share/doc/libxml2-2.7.7/html/DOM.gif +0 -0
  1308. data/vendor/local/share/doc/libxml2-2.7.7/html/FAQ.html +282 -0
  1309. data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-180x168.gif +0 -0
  1310. data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-90x34.gif +0 -0
  1311. data/vendor/local/share/doc/libxml2-2.7.7/html/encoding.html +206 -0
  1312. data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xml +751 -0
  1313. data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xsl +174 -0
  1314. data/vendor/local/share/doc/libxml2-2.7.7/html/html/book1.html +13 -0
  1315. data/vendor/local/share/doc/libxml2-2.7.7/html/html/home.png +0 -0
  1316. data/vendor/local/share/doc/libxml2-2.7.7/html/html/index.html +13 -0
  1317. data/vendor/local/share/doc/libxml2-2.7.7/html/html/left.png +0 -0
  1318. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-DOCBparser.html +51 -0
  1319. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLparser.html +182 -0
  1320. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLtree.html +73 -0
  1321. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX.html +125 -0
  1322. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX2.html +128 -0
  1323. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-c14n.html +38 -0
  1324. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-catalog.html +142 -0
  1325. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-chvalid.html +72 -0
  1326. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-debugXML.html +120 -0
  1327. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-dict.html +49 -0
  1328. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-encoding.html +118 -0
  1329. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-entities.html +79 -0
  1330. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-globals.html +152 -0
  1331. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-hash.html +116 -0
  1332. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-lib.html +13 -0
  1333. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-list.html +120 -0
  1334. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanoftp.html +92 -0
  1335. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanohttp.html +65 -0
  1336. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parser.html +555 -0
  1337. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parserInternals.html +319 -0
  1338. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-pattern.html +76 -0
  1339. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-relaxng.html +162 -0
  1340. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schemasInternals.html +373 -0
  1341. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schematron.html +81 -0
  1342. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-threads.html +72 -0
  1343. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-tree.html +958 -0
  1344. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-uri.html +73 -0
  1345. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-valid.html +289 -0
  1346. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xinclude.html +59 -0
  1347. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xlink.html +82 -0
  1348. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlIO.html +206 -0
  1349. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlautomata.html +85 -0
  1350. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlerror.html +862 -0
  1351. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlexports.html +20 -0
  1352. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmemory.html +107 -0
  1353. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmodule.html +38 -0
  1354. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlreader.html +327 -0
  1355. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlregexp.html +143 -0
  1356. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlsave.html +59 -0
  1357. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemas.html +173 -0
  1358. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemastypes.html +123 -0
  1359. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlstring.html +108 -0
  1360. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlunicode.html +512 -0
  1361. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlversion.html +60 -0
  1362. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlwriter.html +258 -0
  1363. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpath.html +307 -0
  1364. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpathInternals.html +394 -0
  1365. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpointer.html +83 -0
  1366. data/vendor/local/share/doc/libxml2-2.7.7/html/html/right.png +0 -0
  1367. data/vendor/local/share/doc/libxml2-2.7.7/html/html/up.png +0 -0
  1368. data/vendor/local/share/doc/libxml2-2.7.7/html/io1.c +166 -0
  1369. data/vendor/local/share/doc/libxml2-2.7.7/html/io1.res +5 -0
  1370. data/vendor/local/share/doc/libxml2-2.7.7/html/io2.c +58 -0
  1371. data/vendor/local/share/doc/libxml2-2.7.7/html/io2.res +2 -0
  1372. data/vendor/local/share/doc/libxml2-2.7.7/html/libxml.gif +0 -0
  1373. data/vendor/local/share/doc/libxml2-2.7.7/html/parse1.c +56 -0
  1374. data/vendor/local/share/doc/libxml2-2.7.7/html/parse2.c +72 -0
  1375. data/vendor/local/share/doc/libxml2-2.7.7/html/parse3.c +60 -0
  1376. data/vendor/local/share/doc/libxml2-2.7.7/html/parse4.c +143 -0
  1377. data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.c +107 -0
  1378. data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.res +14 -0
  1379. data/vendor/local/share/doc/libxml2-2.7.7/html/reader2.c +122 -0
  1380. data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.c +120 -0
  1381. data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.res +13 -0
  1382. data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.c +122 -0
  1383. data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.res +3 -0
  1384. data/vendor/local/share/doc/libxml2-2.7.7/html/redhat.gif +0 -0
  1385. data/vendor/local/share/doc/libxml2-2.7.7/html/smallfootonly.gif +0 -0
  1386. data/vendor/local/share/doc/libxml2-2.7.7/html/structure.gif +0 -0
  1387. data/vendor/local/share/doc/libxml2-2.7.7/html/test1.xml +1 -0
  1388. data/vendor/local/share/doc/libxml2-2.7.7/html/test2.xml +13 -0
  1389. data/vendor/local/share/doc/libxml2-2.7.7/html/test3.xml +39 -0
  1390. data/vendor/local/share/doc/libxml2-2.7.7/html/testWriter.c +1198 -0
  1391. data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.c +94 -0
  1392. data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.res +4 -0
  1393. data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.c +118 -0
  1394. data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.res +18 -0
  1395. data/vendor/local/share/doc/libxml2-2.7.7/html/tst.xml +7 -0
  1396. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apa.html +8 -0
  1397. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apb.html +14 -0
  1398. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apc.html +82 -0
  1399. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apd.html +76 -0
  1400. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ape.html +78 -0
  1401. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apf.html +67 -0
  1402. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apg.html +75 -0
  1403. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/aph.html +76 -0
  1404. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/api.html +4 -0
  1405. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s02.html +14 -0
  1406. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s03.html +47 -0
  1407. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s04.html +54 -0
  1408. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s05.html +55 -0
  1409. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s06.html +35 -0
  1410. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s07.html +30 -0
  1411. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s08.html +38 -0
  1412. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s09.html +63 -0
  1413. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/blank.png +0 -0
  1414. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/1.png +0 -0
  1415. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/10.png +0 -0
  1416. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/2.png +0 -0
  1417. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/3.png +0 -0
  1418. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/4.png +0 -0
  1419. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/5.png +0 -0
  1420. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/6.png +0 -0
  1421. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/7.png +0 -0
  1422. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/8.png +0 -0
  1423. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/9.png +0 -0
  1424. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/caution.png +0 -0
  1425. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/draft.png +0 -0
  1426. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/home.png +0 -0
  1427. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/important.png +0 -0
  1428. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/next.png +0 -0
  1429. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/note.png +0 -0
  1430. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/prev.png +0 -0
  1431. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/tip.png +0 -0
  1432. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-blank.png +0 -0
  1433. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-minus.png +0 -0
  1434. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-plus.png +0 -0
  1435. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/up.png +0 -0
  1436. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/warning.png +0 -0
  1437. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddattribute.c +64 -0
  1438. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddkeyword.c +75 -0
  1439. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeconvert.c +73 -0
  1440. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includegetattribute.c +72 -0
  1441. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includekeyword.c +79 -0
  1442. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includexpath.c +74 -0
  1443. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/index.html +14 -0
  1444. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ix01.html +1 -0
  1445. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/xmltutorial.pdf +1336 -0
  1446. data/vendor/local/share/doc/libxml2-2.7.7/html/w3c.png +0 -0
  1447. data/vendor/local/share/doc/libxml2-2.7.7/html/writer.xml +2 -0
  1448. data/vendor/local/share/doc/libxml2-2.7.7/html/xml.html +5344 -0
  1449. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.c +250 -0
  1450. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.res +5 -0
  1451. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.c +190 -0
  1452. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.res +30 -0
  1453. data/vendor/local/share/doc/speex/manual.pdf +0 -0
  1454. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  1455. data/vendor/local/share/glib-2.0/schemas/org.freedesktop.gstreamer-0.10.default-elements.gschema.xml +94 -0
  1456. data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer10Bands.prs +174 -0
  1457. data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer3Bands.prs +14 -0
  1458. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/annotation-glossary.html +77 -0
  1459. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-deprecated.html +132 -0
  1460. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-full.html +5106 -0
  1461. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/compiling.html +64 -0
  1462. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp +1398 -0
  1463. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp2 +1723 -0
  1464. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsink.html +568 -0
  1465. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsrc.html +664 -0
  1466. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-encoding-profile.html +1606 -0
  1467. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudio.html +400 -0
  1468. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudioclock.html +317 -0
  1469. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiofilter.html +165 -0
  1470. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiomixerutils.html +144 -0
  1471. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosink.html +202 -0
  1472. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosrc.html +203 -0
  1473. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosink.html +447 -0
  1474. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosrc.html +402 -0
  1475. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpaudiopayload.html +377 -0
  1476. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpdepayload.html +260 -0
  1477. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertppayload.html +469 -0
  1478. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcddabasesrc.html +283 -0
  1479. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalance.html +346 -0
  1480. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalancechannel.html +156 -0
  1481. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstdiscoverer.html +1457 -0
  1482. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfft.html +130 -0
  1483. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf32.html +285 -0
  1484. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf64.html +285 -0
  1485. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts16.html +285 -0
  1486. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts32.html +285 -0
  1487. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfloatcast.html +105 -0
  1488. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixer.html +956 -0
  1489. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixeroptions.html +108 -0
  1490. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixertrack.html +259 -0
  1491. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmultichannel.html +398 -0
  1492. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnavigation.html +1166 -0
  1493. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnetbuffer.html +498 -0
  1494. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutils.html +225 -0
  1495. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilscodecutils.html +469 -0
  1496. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsdescriptions.html +297 -0
  1497. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsinstallplugins.html +821 -0
  1498. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsmissingplugins.html +510 -0
  1499. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpropertyprobe.html +449 -0
  1500. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstriff.html +2092 -0
  1501. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstringbuffer.html +1480 -0
  1502. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtcpbuffer.html +1985 -0
  1503. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtpbuffer.html +1959 -0
  1504. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtppayloads.html +391 -0
  1505. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspbase64.html +121 -0
  1506. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspconnection.html +1421 -0
  1507. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspdefs.html +879 -0
  1508. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspextension.html +104 -0
  1509. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspmessage.html +988 -0
  1510. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsprange.html +269 -0
  1511. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsptransport.html +499 -0
  1512. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspurl.html +315 -0
  1513. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstsdpmessage.html +2802 -0
  1514. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gststreamvolume.html +308 -0
  1515. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttag.html +829 -0
  1516. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagdemux.html +248 -0
  1517. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagid3.html +252 -0
  1518. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttaglanguagecodes.html +243 -0
  1519. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagvorbis.html +272 -0
  1520. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagxmp.html +119 -0
  1521. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttuner.html +723 -0
  1522. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunerchannel.html +264 -0
  1523. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunernorm.html +99 -0
  1524. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideo.html +1942 -0
  1525. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideofilter.html +95 -0
  1526. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideoorientation.html +406 -0
  1527. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideosink.html +253 -0
  1528. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstxoverlay.html +864 -0
  1529. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-app.html +48 -0
  1530. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-audio.html +68 -0
  1531. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-base-utils.html +60 -0
  1532. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-cdda.html +38 -0
  1533. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-ffft.html +57 -0
  1534. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-floatcast.html +38 -0
  1535. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-interfaces.html +82 -0
  1536. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-libs-hierarchy.html +76 -0
  1537. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-netbuffer.html +38 -0
  1538. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-plugins-base.html +285 -0
  1539. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-riff.html +38 -0
  1540. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtp.html +55 -0
  1541. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtsp.html +61 -0
  1542. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-sdp.html +38 -0
  1543. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-tag.html +59 -0
  1544. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-video.html +46 -0
  1545. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/home.png +0 -0
  1546. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.html +284 -0
  1547. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.sgml +1973 -0
  1548. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/left.png +0 -0
  1549. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/right.png +0 -0
  1550. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/style.css +266 -0
  1551. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/up.png +0 -0
  1552. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/GstPlayBaseBin.html +219 -0
  1553. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch01.html +185 -0
  1554. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch02.html +125 -0
  1555. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch03.html +33 -0
  1556. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp +684 -0
  1557. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp2 +782 -0
  1558. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html +215 -0
  1559. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html +151 -0
  1560. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html +216 -0
  1561. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html +213 -0
  1562. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html +463 -0
  1563. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html +405 -0
  1564. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html +338 -0
  1565. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html +280 -0
  1566. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html +233 -0
  1567. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html +321 -0
  1568. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html +257 -0
  1569. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html +270 -0
  1570. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html +303 -0
  1571. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html +642 -0
  1572. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html +375 -0
  1573. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html +296 -0
  1574. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html +171 -0
  1575. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html +204 -0
  1576. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html +233 -0
  1577. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html +228 -0
  1578. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html +216 -0
  1579. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html +215 -0
  1580. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html +256 -0
  1581. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html +269 -0
  1582. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html +976 -0
  1583. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html +177 -0
  1584. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html +255 -0
  1585. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html +463 -0
  1586. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html +1204 -0
  1587. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-adder.html +74 -0
  1588. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-alsa.html +84 -0
  1589. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-app.html +80 -0
  1590. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioconvert.html +74 -0
  1591. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiorate.html +74 -0
  1592. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioresample.html +74 -0
  1593. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiotestsrc.html +74 -0
  1594. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-cdparanoia.html +74 -0
  1595. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-decodebin.html +74 -0
  1596. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-encoding.html +74 -0
  1597. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ffmpegcolorspace.html +74 -0
  1598. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gdp.html +80 -0
  1599. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gio.html +88 -0
  1600. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gnomevfs.html +80 -0
  1601. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-libvisual.html +104 -0
  1602. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ogg.html +100 -0
  1603. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-pango.html +88 -0
  1604. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-playback.html +88 -0
  1605. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-subparse.html +80 -0
  1606. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-tcp.html +92 -0
  1607. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-theora.html +84 -0
  1608. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-typefindfunctions.html +71 -0
  1609. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-uridecodebin.html +80 -0
  1610. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-video4linux.html +74 -0
  1611. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videorate.html +74 -0
  1612. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videoscale.html +74 -0
  1613. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videotestsrc.html +74 -0
  1614. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-volume.html +74 -0
  1615. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-vorbis.html +88 -0
  1616. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ximagesink.html +74 -0
  1617. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-xvimagesink.html +74 -0
  1618. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html +233 -0
  1619. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html +186 -0
  1620. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html +187 -0
  1621. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html +180 -0
  1622. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html +187 -0
  1623. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html +651 -0
  1624. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html +243 -0
  1625. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html +194 -0
  1626. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html +416 -0
  1627. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html +222 -0
  1628. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html +253 -0
  1629. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html +608 -0
  1630. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html +320 -0
  1631. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html +489 -0
  1632. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html +663 -0
  1633. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html +236 -0
  1634. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html +176 -0
  1635. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html +257 -0
  1636. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html +199 -0
  1637. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html +194 -0
  1638. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html +332 -0
  1639. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html +460 -0
  1640. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/home.png +0 -0
  1641. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.html +288 -0
  1642. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.sgml +1059 -0
  1643. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/left.png +0 -0
  1644. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/right.png +0 -0
  1645. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/style.css +266 -0
  1646. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/up.png +0 -0
  1647. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBin.html +1180 -0
  1648. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBus.html +1127 -0
  1649. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstChildProxy.html +575 -0
  1650. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstClock.html +1846 -0
  1651. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElement.html +3919 -0
  1652. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElementFactory.html +1180 -0
  1653. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstGhostPad.html +337 -0
  1654. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstImplementsInterface.html +179 -0
  1655. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndex.html +1449 -0
  1656. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndexFactory.html +205 -0
  1657. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstObject.html +1498 -0
  1658. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPad.html +5192 -0
  1659. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPadTemplate.html +624 -0
  1660. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPipeline.html +626 -0
  1661. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPlugin.html +1285 -0
  1662. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPluginFeature.html +529 -0
  1663. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPreset.html +437 -0
  1664. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstRegistry.html +1021 -0
  1665. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstSystemClock.html +161 -0
  1666. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTagSetter.html +504 -0
  1667. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTask.html +766 -0
  1668. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTaskPool.html +291 -0
  1669. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTypeFindFactory.html +290 -0
  1670. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstXML.html +453 -0
  1671. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/annotation-glossary.html +101 -0
  1672. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-deprecated.html +188 -0
  1673. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-full.html +7056 -0
  1674. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-building.html +109 -0
  1675. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-running.html +205 -0
  1676. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp +1814 -0
  1677. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp2 +2190 -0
  1678. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-Gst.html +538 -0
  1679. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstAtomicQueue.html +231 -0
  1680. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBuffer.html +1458 -0
  1681. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBufferList.html +1043 -0
  1682. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstCaps.html +1646 -0
  1683. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstDateTime.html +584 -0
  1684. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstEvent.html +2195 -0
  1685. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFilter.html +174 -0
  1686. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFormat.html +349 -0
  1687. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstGError.html +645 -0
  1688. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstInfo.html +2466 -0
  1689. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstIterator.html +1019 -0
  1690. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMessage.html +3301 -0
  1691. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMiniObject.html +662 -0
  1692. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParamSpec.html +252 -0
  1693. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParse.html +539 -0
  1694. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstPoll.html +719 -0
  1695. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstQuery.html +1963 -0
  1696. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstSegment.html +816 -0
  1697. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstStructure.html +2196 -0
  1698. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTagList.html +3477 -0
  1699. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTrace.html +591 -0
  1700. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTypeFind.html +403 -0
  1701. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUriHandler.html +635 -0
  1702. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUtils.html +2334 -0
  1703. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstValue.html +2442 -0
  1704. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstVersion.html +140 -0
  1705. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-gstconfig.html +175 -0
  1706. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-hierarchy.html +60 -0
  1707. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-support.html +42 -0
  1708. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer.html +57 -0
  1709. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/home.png +0 -0
  1710. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.html +224 -0
  1711. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.sgml +2441 -0
  1712. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/left.png +0 -0
  1713. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/libgstreamer.html +201 -0
  1714. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/right.png +0 -0
  1715. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/style.css +266 -0
  1716. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/up.png +0 -0
  1717. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstAdapter.html +745 -0
  1718. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSink.html +1298 -0
  1719. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSrc.html +844 -0
  1720. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseTransform.html +875 -0
  1721. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstCollectPads.html +1002 -0
  1722. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstControlSource.html +407 -0
  1723. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstController.html +936 -0
  1724. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstInterpolationControlSource.html +363 -0
  1725. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstLFOControlSource.html +222 -0
  1726. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetClientClock.html +174 -0
  1727. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetTimeProvider.html +172 -0
  1728. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstPushSrc.html +108 -0
  1729. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/annotation-glossary.html +89 -0
  1730. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-deprecated.html +75 -0
  1731. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-full.html +2227 -0
  1732. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gdp-header.png +0 -0
  1733. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-base.html +74 -0
  1734. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-check.html +45 -0
  1735. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-control.html +51 -0
  1736. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-dataprotocol.html +33 -0
  1737. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-hierarchy.html +49 -0
  1738. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp +589 -0
  1739. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp2 +615 -0
  1740. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBaseParse.html +1004 -0
  1741. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBitReader.html +1008 -0
  1742. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBufferStraw.html +169 -0
  1743. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteReader.html +3668 -0
  1744. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteWriter.html +2233 -0
  1745. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstCheck.html +585 -0
  1746. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstControllerGObject.html +464 -0
  1747. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstDataQueue.html +544 -0
  1748. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstNetTimePacket.html +249 -0
  1749. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstStreamConsistency.html +130 -0
  1750. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstTypeFindHelper.html +364 -0
  1751. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-gstdataprotocol.html +818 -0
  1752. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs.html +132 -0
  1753. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-net.html +47 -0
  1754. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/home.png +0 -0
  1755. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.html +129 -0
  1756. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.sgml +707 -0
  1757. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/left.png +0 -0
  1758. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/right.png +0 -0
  1759. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/style.css +266 -0
  1760. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/up.png +0 -0
  1761. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch01.html +83 -0
  1762. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch02.html +38 -0
  1763. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp +214 -0
  1764. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp2 +244 -0
  1765. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-capsfilter.html +184 -0
  1766. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesink.html +358 -0
  1767. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesrc.html +525 -0
  1768. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsink.html +166 -0
  1769. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsrc.html +210 -0
  1770. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesink.html +202 -0
  1771. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesrc.html +230 -0
  1772. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-funnel.html +156 -0
  1773. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-identity.html +310 -0
  1774. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-input-selector.html +327 -0
  1775. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-multiqueue.html +397 -0
  1776. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-output-selector.html +183 -0
  1777. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreelements.html +140 -0
  1778. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreindexers.html +70 -0
  1779. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue.html +425 -0
  1780. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue2.html +308 -0
  1781. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-tee.html +273 -0
  1782. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-typefind.html +243 -0
  1783. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-valve.html +179 -0
  1784. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/home.png +0 -0
  1785. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.html +95 -0
  1786. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.sgml +338 -0
  1787. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/left.png +0 -0
  1788. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/right.png +0 -0
  1789. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/style.css +266 -0
  1790. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/up.png +0 -0
  1791. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  1792. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  1793. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  1794. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  1795. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  1796. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +371 -0
  1797. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  1798. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  1799. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  1800. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  1801. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  1802. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  1803. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  1804. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +119 -0
  1805. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +208 -0
  1806. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  1807. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  1808. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  1809. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  1810. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +177 -0
  1811. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  1812. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +762 -0
  1813. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +673 -0
  1814. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  1815. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  1816. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  1817. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  1818. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  1819. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1542 -0
  1820. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  1821. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  1822. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  1823. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  1824. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +337 -0
  1825. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  1826. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +950 -0
  1827. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  1828. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  1829. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  1830. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +560 -0
  1831. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  1832. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +132 -0
  1833. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +299 -0
  1834. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  1835. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  1836. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  1837. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +277 -0
  1838. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +474 -0
  1839. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +529 -0
  1840. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  1841. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  1842. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3529 -0
  1843. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  1844. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  1845. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  1846. data/vendor/local/share/license/gst-ffmpeg/AUTHORS +1 -0
  1847. data/vendor/local/share/license/gst-ffmpeg/COPYING +339 -0
  1848. data/vendor/local/share/license/gst-ffmpeg/COPYING.LIB +481 -0
  1849. data/vendor/local/share/license/gst-plugins-bad/AUTHORS +21 -0
  1850. data/vendor/local/share/license/gst-plugins-bad/COPYING +340 -0
  1851. data/vendor/local/share/license/gst-plugins-bad/COPYING.LIB +481 -0
  1852. data/vendor/local/share/license/gst-plugins-base/AUTHORS +23 -0
  1853. data/vendor/local/share/license/gst-plugins-base/COPYING +340 -0
  1854. data/vendor/local/share/license/gst-plugins-base/COPYING.LIB +481 -0
  1855. data/vendor/local/share/license/gst-plugins-good/AUTHORS +21 -0
  1856. data/vendor/local/share/license/gst-plugins-good/COPYING +504 -0
  1857. data/vendor/local/share/license/gstreamer/AUTHORS +32 -0
  1858. data/vendor/local/share/license/gstreamer/COPYING +481 -0
  1859. data/vendor/local/share/license/libav/COPYING.GPLv2 +339 -0
  1860. data/vendor/local/share/license/libav/COPYING.GPLv3 +674 -0
  1861. data/vendor/local/share/license/libav/COPYING.LGPLv2.1 +504 -0
  1862. data/vendor/local/share/license/libav/COPYING.LGPLv3 +165 -0
  1863. data/vendor/local/share/license/libav/CREDITS +55 -0
  1864. data/vendor/local/share/license/libav/LICENSE +46 -0
  1865. data/vendor/local/share/license/libogg/AUTHORS +7 -0
  1866. data/vendor/local/share/license/libogg/COPYING +28 -0
  1867. data/vendor/local/share/license/libtheora/AUTHORS +49 -0
  1868. data/vendor/local/share/license/libtheora/COPYING +28 -0
  1869. data/vendor/local/share/license/libvorbis/AUTHORS +3 -0
  1870. data/vendor/local/share/license/libvorbis/COPYING +28 -0
  1871. data/vendor/local/share/license/speex/AUTHORS +18 -0
  1872. data/vendor/local/share/license/speex/COPYING +35 -0
  1873. data/vendor/local/share/man/man1/cjpeg.1 +325 -0
  1874. data/vendor/local/share/man/man1/djpeg.1 +252 -0
  1875. data/vendor/local/share/man/man1/gst-feedback-0.10.1 +38 -0
  1876. data/vendor/local/share/man/man1/gst-inspect-0.10.1 +58 -0
  1877. data/vendor/local/share/man/man1/gst-launch-0.10.1 +475 -0
  1878. data/vendor/local/share/man/man1/gst-typefind-0.10.1 +40 -0
  1879. data/vendor/local/share/man/man1/gst-visualise-0.10.1 +32 -0
  1880. data/vendor/local/share/man/man1/gst-xmlinspect-0.10.1 +51 -0
  1881. data/vendor/local/share/man/man1/gst-xmllaunch-0.10.1 +69 -0
  1882. data/vendor/local/share/man/man1/jpegtran.1 +285 -0
  1883. data/vendor/local/share/man/man1/rdjpgcom.1 +63 -0
  1884. data/vendor/local/share/man/man1/speexdec.1 +78 -0
  1885. data/vendor/local/share/man/man1/speexenc.1 +105 -0
  1886. data/vendor/local/share/man/man1/wrjpgcom.1 +103 -0
  1887. data/vendor/local/share/man/man1/xml2-config.1 +31 -0
  1888. data/vendor/local/share/man/man1/xmlcatalog.1 +229 -0
  1889. data/vendor/local/share/man/man1/xmllint.1 +427 -0
  1890. data/vendor/local/share/man/man3/libxml.3 +71 -0
  1891. data/vendor/local/src/tml/packaging/jpeg_8-1_win32.log +248 -0
  1892. data/vendor/local/src/tml/packaging/jpeg_8-1_win32.sh +44 -0
  1893. data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.log +1518 -0
  1894. data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.sh +60 -0
  1895. data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.log +1244 -0
  1896. data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.sh +66 -0
  1897. metadata +2025 -0
@@ -0,0 +1,227 @@
1
+ /*
2
+ * testXPath.c : a small tester program for XPath.
3
+ *
4
+ * See Copyright for the status of this software.
5
+ *
6
+ * daniel@veillard.com
7
+ */
8
+
9
+ #include "libxml.h"
10
+ #if defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_DEBUG_ENABLED)
11
+
12
+ #include <string.h>
13
+
14
+ #ifdef HAVE_SYS_TYPES_H
15
+ #include <sys/types.h>
16
+ #endif
17
+ #ifdef HAVE_SYS_STAT_H
18
+ #include <sys/stat.h>
19
+ #endif
20
+ #ifdef HAVE_FCNTL_H
21
+ #include <fcntl.h>
22
+ #endif
23
+ #ifdef HAVE_UNISTD_H
24
+ #include <unistd.h>
25
+ #endif
26
+ #ifdef HAVE_STDLIB_H
27
+ #include <stdlib.h>
28
+ #endif
29
+
30
+
31
+ #include <libxml/xpath.h>
32
+ #include <libxml/tree.h>
33
+ #include <libxml/parser.h>
34
+ #include <libxml/debugXML.h>
35
+ #include <libxml/xmlmemory.h>
36
+ #include <libxml/parserInternals.h>
37
+ #include <libxml/xpathInternals.h>
38
+ #include <libxml/xmlerror.h>
39
+ #include <libxml/globals.h>
40
+ #if defined(LIBXML_XPTR_ENABLED)
41
+ #include <libxml/xpointer.h>
42
+ static int xptr = 0;
43
+ #endif
44
+ static int debug = 0;
45
+ static int valid = 0;
46
+ static int expr = 0;
47
+ static int tree = 0;
48
+ static int nocdata = 0;
49
+ static xmlDocPtr document = NULL;
50
+
51
+ /*
52
+ * Default document
53
+ */
54
+ static xmlChar buffer[] =
55
+ "<?xml version=\"1.0\"?>\n\
56
+ <EXAMPLE prop1=\"gnome is great\" prop2=\"&amp; linux too\">\n\
57
+ <head>\n\
58
+ <title>Welcome to Gnome</title>\n\
59
+ </head>\n\
60
+ <chapter>\n\
61
+ <title>The Linux adventure</title>\n\
62
+ <p>bla bla bla ...</p>\n\
63
+ <image href=\"linus.gif\"/>\n\
64
+ <p>...</p>\n\
65
+ </chapter>\n\
66
+ <chapter>\n\
67
+ <title>Chapter 2</title>\n\
68
+ <p>this is chapter 2 ...</p>\n\
69
+ </chapter>\n\
70
+ <chapter>\n\
71
+ <title>Chapter 3</title>\n\
72
+ <p>this is chapter 3 ...</p>\n\
73
+ </chapter>\n\
74
+ </EXAMPLE>\n\
75
+ ";
76
+
77
+
78
+ static void
79
+ testXPath(const char *str) {
80
+ xmlXPathObjectPtr res;
81
+ xmlXPathContextPtr ctxt;
82
+
83
+ #if defined(LIBXML_XPTR_ENABLED)
84
+ if (xptr) {
85
+ ctxt = xmlXPtrNewContext(document, NULL, NULL);
86
+ res = xmlXPtrEval(BAD_CAST str, ctxt);
87
+ } else {
88
+ #endif
89
+ ctxt = xmlXPathNewContext(document);
90
+ ctxt->node = xmlDocGetRootElement(document);
91
+ if (expr)
92
+ res = xmlXPathEvalExpression(BAD_CAST str, ctxt);
93
+ else {
94
+ /* res = xmlXPathEval(BAD_CAST str, ctxt); */
95
+ xmlXPathCompExprPtr comp;
96
+
97
+ comp = xmlXPathCompile(BAD_CAST str);
98
+ if (comp != NULL) {
99
+ if (tree)
100
+ xmlXPathDebugDumpCompExpr(stdout, comp, 0);
101
+
102
+ res = xmlXPathCompiledEval(comp, ctxt);
103
+ xmlXPathFreeCompExpr(comp);
104
+ } else
105
+ res = NULL;
106
+ }
107
+ #if defined(LIBXML_XPTR_ENABLED)
108
+ }
109
+ #endif
110
+ xmlXPathDebugDumpObject(stdout, res, 0);
111
+ xmlXPathFreeObject(res);
112
+ xmlXPathFreeContext(ctxt);
113
+ }
114
+
115
+ static void
116
+ testXPathFile(const char *filename) {
117
+ FILE *input;
118
+ char expression[5000];
119
+ int len;
120
+
121
+ input = fopen(filename, "r");
122
+ if (input == NULL) {
123
+ xmlGenericError(xmlGenericErrorContext,
124
+ "Cannot open %s for reading\n", filename);
125
+ return;
126
+ }
127
+ while (fgets(expression, 4500, input) != NULL) {
128
+ len = strlen(expression);
129
+ len--;
130
+ while ((len >= 0) &&
131
+ ((expression[len] == '\n') || (expression[len] == '\t') ||
132
+ (expression[len] == '\r') || (expression[len] == ' '))) len--;
133
+ expression[len + 1] = 0;
134
+ if (len >= 0) {
135
+ printf("\n========================\nExpression: %s\n", expression) ;
136
+ testXPath(expression);
137
+ }
138
+ }
139
+
140
+ fclose(input);
141
+ }
142
+
143
+ int main(int argc, char **argv) {
144
+ int i;
145
+ int strings = 0;
146
+ int usefile = 0;
147
+ char *filename = NULL;
148
+
149
+ for (i = 1; i < argc ; i++) {
150
+ #if defined(LIBXML_XPTR_ENABLED)
151
+ if ((!strcmp(argv[i], "-xptr")) || (!strcmp(argv[i], "--xptr")))
152
+ xptr++;
153
+ else
154
+ #endif
155
+ if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
156
+ debug++;
157
+ else if ((!strcmp(argv[i], "-valid")) || (!strcmp(argv[i], "--valid")))
158
+ valid++;
159
+ else if ((!strcmp(argv[i], "-expr")) || (!strcmp(argv[i], "--expr")))
160
+ expr++;
161
+ else if ((!strcmp(argv[i], "-tree")) || (!strcmp(argv[i], "--tree")))
162
+ tree++;
163
+ else if ((!strcmp(argv[i], "-nocdata")) ||
164
+ (!strcmp(argv[i], "--nocdata")))
165
+ nocdata++;
166
+ else if ((!strcmp(argv[i], "-i")) || (!strcmp(argv[i], "--input")))
167
+ filename = argv[++i];
168
+ else if ((!strcmp(argv[i], "-f")) || (!strcmp(argv[i], "--file")))
169
+ usefile++;
170
+ }
171
+ if (valid != 0) xmlDoValidityCheckingDefaultValue = 1;
172
+ xmlLoadExtDtdDefaultValue |= XML_DETECT_IDS;
173
+ xmlLoadExtDtdDefaultValue |= XML_COMPLETE_ATTRS;
174
+ xmlSubstituteEntitiesDefaultValue = 1;
175
+ if (nocdata != 0) {
176
+ xmlDefaultSAXHandlerInit();
177
+ xmlDefaultSAXHandler.cdataBlock = NULL;
178
+ }
179
+ if (document == NULL) {
180
+ if (filename == NULL)
181
+ document = xmlReadDoc(buffer,NULL,NULL,XML_PARSE_COMPACT);
182
+ else
183
+ document = xmlReadFile(filename,NULL,XML_PARSE_COMPACT);
184
+ }
185
+ for (i = 1; i < argc ; i++) {
186
+ if ((!strcmp(argv[i], "-i")) || (!strcmp(argv[i], "--input"))) {
187
+ i++; continue;
188
+ }
189
+ if (argv[i][0] != '-') {
190
+ if (usefile)
191
+ testXPathFile(argv[i]);
192
+ else
193
+ testXPath(argv[i]);
194
+ strings ++;
195
+ }
196
+ }
197
+ if (strings == 0) {
198
+ printf("Usage : %s [--debug] [--copy] stringsorfiles ...\n",
199
+ argv[0]);
200
+ printf("\tParse the XPath strings and output the result of the parsing\n");
201
+ printf("\t--debug : dump a debug version of the result\n");
202
+ printf("\t--valid : switch on DTD support in the parser\n");
203
+ #if defined(LIBXML_XPTR_ENABLED)
204
+ printf("\t--xptr : expressions are XPointer expressions\n");
205
+ #endif
206
+ printf("\t--expr : debug XPath expressions only\n");
207
+ printf("\t--tree : show the compiled XPath tree\n");
208
+ printf("\t--nocdata : do not generate CDATA nodes\n");
209
+ printf("\t--input filename : or\n");
210
+ printf("\t-i filename : read the document from filename\n");
211
+ printf("\t--file : or\n");
212
+ printf("\t-f : read queries from files, args\n");
213
+ }
214
+ if (document != NULL)
215
+ xmlFreeDoc(document);
216
+ xmlCleanupParser();
217
+ xmlMemoryDump();
218
+
219
+ return(0);
220
+ }
221
+ #else
222
+ #include <stdio.h>
223
+ int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
224
+ printf("%s : XPath/Debug support not compiled in\n", argv[0]);
225
+ return(0);
226
+ }
227
+ #endif /* LIBXML_XPATH_ENABLED */
@@ -0,0 +1,3722 @@
1
+ /*
2
+ * xmllint.c : a small tester program for XML input.
3
+ *
4
+ * See Copyright for the status of this software.
5
+ *
6
+ * daniel@veillard.com
7
+ */
8
+
9
+ #include "libxml.h"
10
+
11
+ #include <string.h>
12
+ #include <stdarg.h>
13
+ #include <assert.h>
14
+
15
+ #if defined (_WIN32) && !defined(__CYGWIN__)
16
+ #if defined (_MSC_VER) || defined(__BORLANDC__)
17
+ #include <winsock2.h>
18
+ #pragma comment(lib, "ws2_32.lib")
19
+ #define gettimeofday(p1,p2)
20
+ #endif /* _MSC_VER */
21
+ #endif /* _WIN32 */
22
+
23
+ #ifdef HAVE_SYS_TIME_H
24
+ #include <sys/time.h>
25
+ #endif
26
+ #ifdef HAVE_TIME_H
27
+ #include <time.h>
28
+ #endif
29
+
30
+ #ifdef __MINGW32__
31
+ #define _WINSOCKAPI_
32
+ #include <wsockcompat.h>
33
+ #include <winsock2.h>
34
+ #undef XML_SOCKLEN_T
35
+ #define XML_SOCKLEN_T unsigned int
36
+ #endif
37
+
38
+ #ifdef HAVE_SYS_TIMEB_H
39
+ #include <sys/timeb.h>
40
+ #endif
41
+
42
+ #ifdef HAVE_SYS_TYPES_H
43
+ #include <sys/types.h>
44
+ #endif
45
+ #ifdef HAVE_SYS_STAT_H
46
+ #include <sys/stat.h>
47
+ #endif
48
+ #ifdef HAVE_FCNTL_H
49
+ #include <fcntl.h>
50
+ #endif
51
+ #ifdef HAVE_UNISTD_H
52
+ #include <unistd.h>
53
+ #endif
54
+ #ifdef HAVE_SYS_MMAN_H
55
+ #include <sys/mman.h>
56
+ /* seems needed for Solaris */
57
+ #ifndef MAP_FAILED
58
+ #define MAP_FAILED ((void *) -1)
59
+ #endif
60
+ #endif
61
+ #ifdef HAVE_STDLIB_H
62
+ #include <stdlib.h>
63
+ #endif
64
+ #ifdef HAVE_LIBREADLINE
65
+ #include <readline/readline.h>
66
+ #ifdef HAVE_LIBHISTORY
67
+ #include <readline/history.h>
68
+ #endif
69
+ #endif
70
+
71
+ #include <libxml/xmlmemory.h>
72
+ #include <libxml/parser.h>
73
+ #include <libxml/parserInternals.h>
74
+ #include <libxml/HTMLparser.h>
75
+ #include <libxml/HTMLtree.h>
76
+ #include <libxml/tree.h>
77
+ #include <libxml/xpath.h>
78
+ #include <libxml/debugXML.h>
79
+ #include <libxml/xmlerror.h>
80
+ #ifdef LIBXML_XINCLUDE_ENABLED
81
+ #include <libxml/xinclude.h>
82
+ #endif
83
+ #ifdef LIBXML_CATALOG_ENABLED
84
+ #include <libxml/catalog.h>
85
+ #endif
86
+ #include <libxml/globals.h>
87
+ #include <libxml/xmlreader.h>
88
+ #ifdef LIBXML_SCHEMATRON_ENABLED
89
+ #include <libxml/schematron.h>
90
+ #endif
91
+ #ifdef LIBXML_SCHEMAS_ENABLED
92
+ #include <libxml/relaxng.h>
93
+ #include <libxml/xmlschemas.h>
94
+ #endif
95
+ #ifdef LIBXML_PATTERN_ENABLED
96
+ #include <libxml/pattern.h>
97
+ #endif
98
+ #ifdef LIBXML_C14N_ENABLED
99
+ #include <libxml/c14n.h>
100
+ #endif
101
+ #ifdef LIBXML_OUTPUT_ENABLED
102
+ #include <libxml/xmlsave.h>
103
+ #endif
104
+
105
+ #ifndef XML_XML_DEFAULT_CATALOG
106
+ #define XML_XML_DEFAULT_CATALOG "file:///etc/xml/catalog"
107
+ #endif
108
+
109
+ typedef enum {
110
+ XMLLINT_RETURN_OK = 0, /* No error */
111
+ XMLLINT_ERR_UNCLASS = 1, /* Unclassified */
112
+ XMLLINT_ERR_DTD = 2, /* Error in DTD */
113
+ XMLLINT_ERR_VALID = 3, /* Validation error */
114
+ XMLLINT_ERR_RDFILE = 4, /* CtxtReadFile error */
115
+ XMLLINT_ERR_SCHEMACOMP = 5, /* Schema compilation */
116
+ XMLLINT_ERR_OUT = 6, /* Error writing output */
117
+ XMLLINT_ERR_SCHEMAPAT = 7, /* Error in schema pattern */
118
+ XMLLINT_ERR_RDREGIS = 8, /* Error in Reader registration */
119
+ XMLLINT_ERR_MEM = 9, /* Out of memory error */
120
+ XMLLINT_ERR_XPATH = 10 /* XPath evaluation error */
121
+ } xmllintReturnCode;
122
+ #ifdef LIBXML_DEBUG_ENABLED
123
+ static int shell = 0;
124
+ static int debugent = 0;
125
+ #endif
126
+ static int debug = 0;
127
+ static int maxmem = 0;
128
+ #ifdef LIBXML_TREE_ENABLED
129
+ static int copy = 0;
130
+ #endif /* LIBXML_TREE_ENABLED */
131
+ static int recovery = 0;
132
+ static int noent = 0;
133
+ static int noblanks = 0;
134
+ static int noout = 0;
135
+ static int nowrap = 0;
136
+ #ifdef LIBXML_OUTPUT_ENABLED
137
+ static int format = 0;
138
+ static const char *output = NULL;
139
+ static int compress = 0;
140
+ static int oldout = 0;
141
+ #endif /* LIBXML_OUTPUT_ENABLED */
142
+ #ifdef LIBXML_VALID_ENABLED
143
+ static int valid = 0;
144
+ static int postvalid = 0;
145
+ static char * dtdvalid = NULL;
146
+ static char * dtdvalidfpi = NULL;
147
+ #endif
148
+ #ifdef LIBXML_SCHEMAS_ENABLED
149
+ static char * relaxng = NULL;
150
+ static xmlRelaxNGPtr relaxngschemas = NULL;
151
+ static char * schema = NULL;
152
+ static xmlSchemaPtr wxschemas = NULL;
153
+ #endif
154
+ #ifdef LIBXML_SCHEMATRON_ENABLED
155
+ static char * schematron = NULL;
156
+ static xmlSchematronPtr wxschematron = NULL;
157
+ #endif
158
+ static int repeat = 0;
159
+ static int insert = 0;
160
+ #if defined(LIBXML_HTML_ENABLED) || defined(LIBXML_VALID_ENABLED)
161
+ static int html = 0;
162
+ static int xmlout = 0;
163
+ #endif
164
+ static int htmlout = 0;
165
+ #ifdef LIBXML_PUSH_ENABLED
166
+ static int push = 0;
167
+ #endif /* LIBXML_PUSH_ENABLED */
168
+ #ifdef HAVE_SYS_MMAN_H
169
+ static int memory = 0;
170
+ #endif
171
+ static int testIO = 0;
172
+ static char *encoding = NULL;
173
+ #ifdef LIBXML_XINCLUDE_ENABLED
174
+ static int xinclude = 0;
175
+ #endif
176
+ static int dtdattrs = 0;
177
+ static int loaddtd = 0;
178
+ static xmllintReturnCode progresult = XMLLINT_RETURN_OK;
179
+ static int timing = 0;
180
+ static int generate = 0;
181
+ static int dropdtd = 0;
182
+ #ifdef LIBXML_CATALOG_ENABLED
183
+ static int catalogs = 0;
184
+ static int nocatalogs = 0;
185
+ #endif
186
+ #ifdef LIBXML_C14N_ENABLED
187
+ static int canonical = 0;
188
+ static int canonical_11 = 0;
189
+ static int exc_canonical = 0;
190
+ #endif
191
+ #ifdef LIBXML_READER_ENABLED
192
+ static int stream = 0;
193
+ static int walker = 0;
194
+ #endif /* LIBXML_READER_ENABLED */
195
+ static int chkregister = 0;
196
+ static int nbregister = 0;
197
+ #ifdef LIBXML_SAX1_ENABLED
198
+ static int sax1 = 0;
199
+ #endif /* LIBXML_SAX1_ENABLED */
200
+ #ifdef LIBXML_PATTERN_ENABLED
201
+ static const char *pattern = NULL;
202
+ static xmlPatternPtr patternc = NULL;
203
+ static xmlStreamCtxtPtr patstream = NULL;
204
+ #endif
205
+ #ifdef LIBXML_XPATH_ENABLED
206
+ static const char *xpathquery = NULL;
207
+ #endif
208
+ static int options = XML_PARSE_COMPACT;
209
+ static int sax = 0;
210
+ static int oldxml10 = 0;
211
+
212
+ /************************************************************************
213
+ * *
214
+ * Entity loading control and customization. *
215
+ * *
216
+ ************************************************************************/
217
+ #define MAX_PATHS 64
218
+ #ifdef _WIN32
219
+ # define PATH_SEPARATOR ';'
220
+ #else
221
+ # define PATH_SEPARATOR ':'
222
+ #endif
223
+ static xmlChar *paths[MAX_PATHS + 1];
224
+ static int nbpaths = 0;
225
+ static int load_trace = 0;
226
+
227
+ static
228
+ void parsePath(const xmlChar *path) {
229
+ const xmlChar *cur;
230
+
231
+ if (path == NULL)
232
+ return;
233
+ while (*path != 0) {
234
+ if (nbpaths >= MAX_PATHS) {
235
+ fprintf(stderr, "MAX_PATHS reached: too many paths\n");
236
+ return;
237
+ }
238
+ cur = path;
239
+ while ((*cur == ' ') || (*cur == PATH_SEPARATOR))
240
+ cur++;
241
+ path = cur;
242
+ while ((*cur != 0) && (*cur != ' ') && (*cur != PATH_SEPARATOR))
243
+ cur++;
244
+ if (cur != path) {
245
+ paths[nbpaths] = xmlStrndup(path, cur - path);
246
+ if (paths[nbpaths] != NULL)
247
+ nbpaths++;
248
+ path = cur;
249
+ }
250
+ }
251
+ }
252
+
253
+ static xmlExternalEntityLoader defaultEntityLoader = NULL;
254
+
255
+ static xmlParserInputPtr
256
+ xmllintExternalEntityLoader(const char *URL, const char *ID,
257
+ xmlParserCtxtPtr ctxt) {
258
+ xmlParserInputPtr ret;
259
+ warningSAXFunc warning = NULL;
260
+ errorSAXFunc err = NULL;
261
+
262
+ int i;
263
+ const char *lastsegment = URL;
264
+ const char *iter = URL;
265
+
266
+ if ((nbpaths > 0) && (iter != NULL)) {
267
+ while (*iter != 0) {
268
+ if (*iter == '/')
269
+ lastsegment = iter + 1;
270
+ iter++;
271
+ }
272
+ }
273
+
274
+ if ((ctxt != NULL) && (ctxt->sax != NULL)) {
275
+ warning = ctxt->sax->warning;
276
+ err = ctxt->sax->error;
277
+ ctxt->sax->warning = NULL;
278
+ ctxt->sax->error = NULL;
279
+ }
280
+
281
+ if (defaultEntityLoader != NULL) {
282
+ ret = defaultEntityLoader(URL, ID, ctxt);
283
+ if (ret != NULL) {
284
+ if (warning != NULL)
285
+ ctxt->sax->warning = warning;
286
+ if (err != NULL)
287
+ ctxt->sax->error = err;
288
+ if (load_trace) {
289
+ fprintf \
290
+ (stderr,
291
+ "Loaded URL=\"%s\" ID=\"%s\"\n",
292
+ URL ? URL : "(null)",
293
+ ID ? ID : "(null)");
294
+ }
295
+ return(ret);
296
+ }
297
+ }
298
+ for (i = 0;i < nbpaths;i++) {
299
+ xmlChar *newURL;
300
+
301
+ newURL = xmlStrdup((const xmlChar *) paths[i]);
302
+ newURL = xmlStrcat(newURL, (const xmlChar *) "/");
303
+ newURL = xmlStrcat(newURL, (const xmlChar *) lastsegment);
304
+ if (newURL != NULL) {
305
+ ret = defaultEntityLoader((const char *)newURL, ID, ctxt);
306
+ if (ret != NULL) {
307
+ if (warning != NULL)
308
+ ctxt->sax->warning = warning;
309
+ if (err != NULL)
310
+ ctxt->sax->error = err;
311
+ if (load_trace) {
312
+ fprintf \
313
+ (stderr,
314
+ "Loaded URL=\"%s\" ID=\"%s\"\n",
315
+ newURL,
316
+ ID ? ID : "(null)");
317
+ }
318
+ xmlFree(newURL);
319
+ return(ret);
320
+ }
321
+ xmlFree(newURL);
322
+ }
323
+ }
324
+ if (err != NULL)
325
+ ctxt->sax->error = err;
326
+ if (warning != NULL) {
327
+ ctxt->sax->warning = warning;
328
+ if (URL != NULL)
329
+ warning(ctxt, "failed to load external entity \"%s\"\n", URL);
330
+ else if (ID != NULL)
331
+ warning(ctxt, "failed to load external entity \"%s\"\n", ID);
332
+ }
333
+ return(NULL);
334
+ }
335
+ /************************************************************************
336
+ * *
337
+ * Memory allocation consumption debugging *
338
+ * *
339
+ ************************************************************************/
340
+
341
+ static void
342
+ OOM(void)
343
+ {
344
+ fprintf(stderr, "Ran out of memory needs > %d bytes\n", maxmem);
345
+ progresult = XMLLINT_ERR_MEM;
346
+ }
347
+
348
+ static void
349
+ myFreeFunc(void *mem)
350
+ {
351
+ xmlMemFree(mem);
352
+ }
353
+ static void *
354
+ myMallocFunc(size_t size)
355
+ {
356
+ void *ret;
357
+
358
+ ret = xmlMemMalloc(size);
359
+ if (ret != NULL) {
360
+ if (xmlMemUsed() > maxmem) {
361
+ OOM();
362
+ xmlMemFree(ret);
363
+ return (NULL);
364
+ }
365
+ }
366
+ return (ret);
367
+ }
368
+ static void *
369
+ myReallocFunc(void *mem, size_t size)
370
+ {
371
+ void *ret;
372
+
373
+ ret = xmlMemRealloc(mem, size);
374
+ if (ret != NULL) {
375
+ if (xmlMemUsed() > maxmem) {
376
+ OOM();
377
+ xmlMemFree(ret);
378
+ return (NULL);
379
+ }
380
+ }
381
+ return (ret);
382
+ }
383
+ static char *
384
+ myStrdupFunc(const char *str)
385
+ {
386
+ char *ret;
387
+
388
+ ret = xmlMemoryStrdup(str);
389
+ if (ret != NULL) {
390
+ if (xmlMemUsed() > maxmem) {
391
+ OOM();
392
+ xmlFree(ret);
393
+ return (NULL);
394
+ }
395
+ }
396
+ return (ret);
397
+ }
398
+ /************************************************************************
399
+ * *
400
+ * Internal timing routines to remove the necessity to have *
401
+ * unix-specific function calls. *
402
+ * *
403
+ ************************************************************************/
404
+
405
+ #ifndef HAVE_GETTIMEOFDAY
406
+ #ifdef HAVE_SYS_TIMEB_H
407
+ #ifdef HAVE_SYS_TIME_H
408
+ #ifdef HAVE_FTIME
409
+
410
+ static int
411
+ my_gettimeofday(struct timeval *tvp, void *tzp)
412
+ {
413
+ struct timeb timebuffer;
414
+
415
+ ftime(&timebuffer);
416
+ if (tvp) {
417
+ tvp->tv_sec = timebuffer.time;
418
+ tvp->tv_usec = timebuffer.millitm * 1000L;
419
+ }
420
+ return (0);
421
+ }
422
+ #define HAVE_GETTIMEOFDAY 1
423
+ #define gettimeofday my_gettimeofday
424
+
425
+ #endif /* HAVE_FTIME */
426
+ #endif /* HAVE_SYS_TIME_H */
427
+ #endif /* HAVE_SYS_TIMEB_H */
428
+ #endif /* !HAVE_GETTIMEOFDAY */
429
+
430
+ #if defined(HAVE_GETTIMEOFDAY)
431
+ static struct timeval begin, end;
432
+
433
+ /*
434
+ * startTimer: call where you want to start timing
435
+ */
436
+ static void
437
+ startTimer(void)
438
+ {
439
+ gettimeofday(&begin, NULL);
440
+ }
441
+
442
+ /*
443
+ * endTimer: call where you want to stop timing and to print out a
444
+ * message about the timing performed; format is a printf
445
+ * type argument
446
+ */
447
+ static void XMLCDECL
448
+ endTimer(const char *fmt, ...)
449
+ {
450
+ long msec;
451
+ va_list ap;
452
+
453
+ gettimeofday(&end, NULL);
454
+ msec = end.tv_sec - begin.tv_sec;
455
+ msec *= 1000;
456
+ msec += (end.tv_usec - begin.tv_usec) / 1000;
457
+
458
+ #ifndef HAVE_STDARG_H
459
+ #error "endTimer required stdarg functions"
460
+ #endif
461
+ va_start(ap, fmt);
462
+ vfprintf(stderr, fmt, ap);
463
+ va_end(ap);
464
+
465
+ fprintf(stderr, " took %ld ms\n", msec);
466
+ }
467
+ #elif defined(HAVE_TIME_H)
468
+ /*
469
+ * No gettimeofday function, so we have to make do with calling clock.
470
+ * This is obviously less accurate, but there's little we can do about
471
+ * that.
472
+ */
473
+ #ifndef CLOCKS_PER_SEC
474
+ #define CLOCKS_PER_SEC 100
475
+ #endif
476
+
477
+ static clock_t begin, end;
478
+ static void
479
+ startTimer(void)
480
+ {
481
+ begin = clock();
482
+ }
483
+ static void XMLCDECL
484
+ endTimer(const char *fmt, ...)
485
+ {
486
+ long msec;
487
+ va_list ap;
488
+
489
+ end = clock();
490
+ msec = ((end - begin) * 1000) / CLOCKS_PER_SEC;
491
+
492
+ #ifndef HAVE_STDARG_H
493
+ #error "endTimer required stdarg functions"
494
+ #endif
495
+ va_start(ap, fmt);
496
+ vfprintf(stderr, fmt, ap);
497
+ va_end(ap);
498
+ fprintf(stderr, " took %ld ms\n", msec);
499
+ }
500
+ #else
501
+
502
+ /*
503
+ * We don't have a gettimeofday or time.h, so we just don't do timing
504
+ */
505
+ static void
506
+ startTimer(void)
507
+ {
508
+ /*
509
+ * Do nothing
510
+ */
511
+ }
512
+ static void XMLCDECL
513
+ endTimer(char *format, ...)
514
+ {
515
+ /*
516
+ * We cannot do anything because we don't have a timing function
517
+ */
518
+ #ifdef HAVE_STDARG_H
519
+ va_start(ap, format);
520
+ vfprintf(stderr, format, ap);
521
+ va_end(ap);
522
+ fprintf(stderr, " was not timed\n", msec);
523
+ #else
524
+ /* We don't have gettimeofday, time or stdarg.h, what crazy world is
525
+ * this ?!
526
+ */
527
+ #endif
528
+ }
529
+ #endif
530
+ /************************************************************************
531
+ * *
532
+ * HTML ouput *
533
+ * *
534
+ ************************************************************************/
535
+ static char buffer[50000];
536
+
537
+ static void
538
+ xmlHTMLEncodeSend(void) {
539
+ char *result;
540
+
541
+ result = (char *) xmlEncodeEntitiesReentrant(NULL, BAD_CAST buffer);
542
+ if (result) {
543
+ xmlGenericError(xmlGenericErrorContext, "%s", result);
544
+ xmlFree(result);
545
+ }
546
+ buffer[0] = 0;
547
+ }
548
+
549
+ /**
550
+ * xmlHTMLPrintFileInfo:
551
+ * @input: an xmlParserInputPtr input
552
+ *
553
+ * Displays the associated file and line informations for the current input
554
+ */
555
+
556
+ static void
557
+ xmlHTMLPrintFileInfo(xmlParserInputPtr input) {
558
+ int len;
559
+ xmlGenericError(xmlGenericErrorContext, "<p>");
560
+
561
+ len = strlen(buffer);
562
+ if (input != NULL) {
563
+ if (input->filename) {
564
+ snprintf(&buffer[len], sizeof(buffer) - len, "%s:%d: ", input->filename,
565
+ input->line);
566
+ } else {
567
+ snprintf(&buffer[len], sizeof(buffer) - len, "Entity: line %d: ", input->line);
568
+ }
569
+ }
570
+ xmlHTMLEncodeSend();
571
+ }
572
+
573
+ /**
574
+ * xmlHTMLPrintFileContext:
575
+ * @input: an xmlParserInputPtr input
576
+ *
577
+ * Displays current context within the input content for error tracking
578
+ */
579
+
580
+ static void
581
+ xmlHTMLPrintFileContext(xmlParserInputPtr input) {
582
+ const xmlChar *cur, *base;
583
+ int len;
584
+ int n;
585
+
586
+ if (input == NULL) return;
587
+ xmlGenericError(xmlGenericErrorContext, "<pre>\n");
588
+ cur = input->cur;
589
+ base = input->base;
590
+ while ((cur > base) && ((*cur == '\n') || (*cur == '\r'))) {
591
+ cur--;
592
+ }
593
+ n = 0;
594
+ while ((n++ < 80) && (cur > base) && (*cur != '\n') && (*cur != '\r'))
595
+ cur--;
596
+ if ((*cur == '\n') || (*cur == '\r')) cur++;
597
+ base = cur;
598
+ n = 0;
599
+ while ((*cur != 0) && (*cur != '\n') && (*cur != '\r') && (n < 79)) {
600
+ len = strlen(buffer);
601
+ snprintf(&buffer[len], sizeof(buffer) - len, "%c",
602
+ (unsigned char) *cur++);
603
+ n++;
604
+ }
605
+ len = strlen(buffer);
606
+ snprintf(&buffer[len], sizeof(buffer) - len, "\n");
607
+ cur = input->cur;
608
+ while ((*cur == '\n') || (*cur == '\r'))
609
+ cur--;
610
+ n = 0;
611
+ while ((cur != base) && (n++ < 80)) {
612
+ len = strlen(buffer);
613
+ snprintf(&buffer[len], sizeof(buffer) - len, " ");
614
+ base++;
615
+ }
616
+ len = strlen(buffer);
617
+ snprintf(&buffer[len], sizeof(buffer) - len, "^\n");
618
+ xmlHTMLEncodeSend();
619
+ xmlGenericError(xmlGenericErrorContext, "</pre>");
620
+ }
621
+
622
+ /**
623
+ * xmlHTMLError:
624
+ * @ctx: an XML parser context
625
+ * @msg: the message to display/transmit
626
+ * @...: extra parameters for the message display
627
+ *
628
+ * Display and format an error messages, gives file, line, position and
629
+ * extra parameters.
630
+ */
631
+ static void XMLCDECL
632
+ xmlHTMLError(void *ctx, const char *msg, ...)
633
+ {
634
+ xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
635
+ xmlParserInputPtr input;
636
+ va_list args;
637
+ int len;
638
+
639
+ buffer[0] = 0;
640
+ input = ctxt->input;
641
+ if ((input != NULL) && (input->filename == NULL) && (ctxt->inputNr > 1)) {
642
+ input = ctxt->inputTab[ctxt->inputNr - 2];
643
+ }
644
+
645
+ xmlHTMLPrintFileInfo(input);
646
+
647
+ xmlGenericError(xmlGenericErrorContext, "<b>error</b>: ");
648
+ va_start(args, msg);
649
+ len = strlen(buffer);
650
+ vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
651
+ va_end(args);
652
+ xmlHTMLEncodeSend();
653
+ xmlGenericError(xmlGenericErrorContext, "</p>\n");
654
+
655
+ xmlHTMLPrintFileContext(input);
656
+ xmlHTMLEncodeSend();
657
+ }
658
+
659
+ /**
660
+ * xmlHTMLWarning:
661
+ * @ctx: an XML parser context
662
+ * @msg: the message to display/transmit
663
+ * @...: extra parameters for the message display
664
+ *
665
+ * Display and format a warning messages, gives file, line, position and
666
+ * extra parameters.
667
+ */
668
+ static void XMLCDECL
669
+ xmlHTMLWarning(void *ctx, const char *msg, ...)
670
+ {
671
+ xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
672
+ xmlParserInputPtr input;
673
+ va_list args;
674
+ int len;
675
+
676
+ buffer[0] = 0;
677
+ input = ctxt->input;
678
+ if ((input != NULL) && (input->filename == NULL) && (ctxt->inputNr > 1)) {
679
+ input = ctxt->inputTab[ctxt->inputNr - 2];
680
+ }
681
+
682
+
683
+ xmlHTMLPrintFileInfo(input);
684
+
685
+ xmlGenericError(xmlGenericErrorContext, "<b>warning</b>: ");
686
+ va_start(args, msg);
687
+ len = strlen(buffer);
688
+ vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
689
+ va_end(args);
690
+ xmlHTMLEncodeSend();
691
+ xmlGenericError(xmlGenericErrorContext, "</p>\n");
692
+
693
+ xmlHTMLPrintFileContext(input);
694
+ xmlHTMLEncodeSend();
695
+ }
696
+
697
+ /**
698
+ * xmlHTMLValidityError:
699
+ * @ctx: an XML parser context
700
+ * @msg: the message to display/transmit
701
+ * @...: extra parameters for the message display
702
+ *
703
+ * Display and format an validity error messages, gives file,
704
+ * line, position and extra parameters.
705
+ */
706
+ static void XMLCDECL
707
+ xmlHTMLValidityError(void *ctx, const char *msg, ...)
708
+ {
709
+ xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
710
+ xmlParserInputPtr input;
711
+ va_list args;
712
+ int len;
713
+
714
+ buffer[0] = 0;
715
+ input = ctxt->input;
716
+ if ((input->filename == NULL) && (ctxt->inputNr > 1))
717
+ input = ctxt->inputTab[ctxt->inputNr - 2];
718
+
719
+ xmlHTMLPrintFileInfo(input);
720
+
721
+ xmlGenericError(xmlGenericErrorContext, "<b>validity error</b>: ");
722
+ len = strlen(buffer);
723
+ va_start(args, msg);
724
+ vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
725
+ va_end(args);
726
+ xmlHTMLEncodeSend();
727
+ xmlGenericError(xmlGenericErrorContext, "</p>\n");
728
+
729
+ xmlHTMLPrintFileContext(input);
730
+ xmlHTMLEncodeSend();
731
+ progresult = XMLLINT_ERR_VALID;
732
+ }
733
+
734
+ /**
735
+ * xmlHTMLValidityWarning:
736
+ * @ctx: an XML parser context
737
+ * @msg: the message to display/transmit
738
+ * @...: extra parameters for the message display
739
+ *
740
+ * Display and format a validity warning messages, gives file, line,
741
+ * position and extra parameters.
742
+ */
743
+ static void XMLCDECL
744
+ xmlHTMLValidityWarning(void *ctx, const char *msg, ...)
745
+ {
746
+ xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
747
+ xmlParserInputPtr input;
748
+ va_list args;
749
+ int len;
750
+
751
+ buffer[0] = 0;
752
+ input = ctxt->input;
753
+ if ((input->filename == NULL) && (ctxt->inputNr > 1))
754
+ input = ctxt->inputTab[ctxt->inputNr - 2];
755
+
756
+ xmlHTMLPrintFileInfo(input);
757
+
758
+ xmlGenericError(xmlGenericErrorContext, "<b>validity warning</b>: ");
759
+ va_start(args, msg);
760
+ len = strlen(buffer);
761
+ vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
762
+ va_end(args);
763
+ xmlHTMLEncodeSend();
764
+ xmlGenericError(xmlGenericErrorContext, "</p>\n");
765
+
766
+ xmlHTMLPrintFileContext(input);
767
+ xmlHTMLEncodeSend();
768
+ }
769
+
770
+ /************************************************************************
771
+ * *
772
+ * Shell Interface *
773
+ * *
774
+ ************************************************************************/
775
+ #ifdef LIBXML_DEBUG_ENABLED
776
+ #ifdef LIBXML_XPATH_ENABLED
777
+ /**
778
+ * xmlShellReadline:
779
+ * @prompt: the prompt value
780
+ *
781
+ * Read a string
782
+ *
783
+ * Returns a pointer to it or NULL on EOF the caller is expected to
784
+ * free the returned string.
785
+ */
786
+ static char *
787
+ xmlShellReadline(char *prompt) {
788
+ #ifdef HAVE_LIBREADLINE
789
+ char *line_read;
790
+
791
+ /* Get a line from the user. */
792
+ line_read = readline (prompt);
793
+
794
+ /* If the line has any text in it, save it on the history. */
795
+ if (line_read && *line_read)
796
+ add_history (line_read);
797
+
798
+ return (line_read);
799
+ #else
800
+ char line_read[501];
801
+ char *ret;
802
+ int len;
803
+
804
+ if (prompt != NULL)
805
+ fprintf(stdout, "%s", prompt);
806
+ if (!fgets(line_read, 500, stdin))
807
+ return(NULL);
808
+ line_read[500] = 0;
809
+ len = strlen(line_read);
810
+ ret = (char *) malloc(len + 1);
811
+ if (ret != NULL) {
812
+ memcpy (ret, line_read, len + 1);
813
+ }
814
+ return(ret);
815
+ #endif
816
+ }
817
+ #endif /* LIBXML_XPATH_ENABLED */
818
+ #endif /* LIBXML_DEBUG_ENABLED */
819
+
820
+ /************************************************************************
821
+ * *
822
+ * I/O Interfaces *
823
+ * *
824
+ ************************************************************************/
825
+
826
+ static int myRead(FILE *f, char * buf, int len) {
827
+ return(fread(buf, 1, len, f));
828
+ }
829
+ static void myClose(FILE *f) {
830
+ if (f != stdin) {
831
+ fclose(f);
832
+ }
833
+ }
834
+
835
+ /************************************************************************
836
+ * *
837
+ * SAX based tests *
838
+ * *
839
+ ************************************************************************/
840
+
841
+ /*
842
+ * empty SAX block
843
+ */
844
+ static xmlSAXHandler emptySAXHandlerStruct = {
845
+ NULL, /* internalSubset */
846
+ NULL, /* isStandalone */
847
+ NULL, /* hasInternalSubset */
848
+ NULL, /* hasExternalSubset */
849
+ NULL, /* resolveEntity */
850
+ NULL, /* getEntity */
851
+ NULL, /* entityDecl */
852
+ NULL, /* notationDecl */
853
+ NULL, /* attributeDecl */
854
+ NULL, /* elementDecl */
855
+ NULL, /* unparsedEntityDecl */
856
+ NULL, /* setDocumentLocator */
857
+ NULL, /* startDocument */
858
+ NULL, /* endDocument */
859
+ NULL, /* startElement */
860
+ NULL, /* endElement */
861
+ NULL, /* reference */
862
+ NULL, /* characters */
863
+ NULL, /* ignorableWhitespace */
864
+ NULL, /* processingInstruction */
865
+ NULL, /* comment */
866
+ NULL, /* xmlParserWarning */
867
+ NULL, /* xmlParserError */
868
+ NULL, /* xmlParserError */
869
+ NULL, /* getParameterEntity */
870
+ NULL, /* cdataBlock; */
871
+ NULL, /* externalSubset; */
872
+ XML_SAX2_MAGIC,
873
+ NULL,
874
+ NULL, /* startElementNs */
875
+ NULL, /* endElementNs */
876
+ NULL /* xmlStructuredErrorFunc */
877
+ };
878
+
879
+ static xmlSAXHandlerPtr emptySAXHandler = &emptySAXHandlerStruct;
880
+ extern xmlSAXHandlerPtr debugSAXHandler;
881
+ static int callbacks;
882
+
883
+ /**
884
+ * isStandaloneDebug:
885
+ * @ctxt: An XML parser context
886
+ *
887
+ * Is this document tagged standalone ?
888
+ *
889
+ * Returns 1 if true
890
+ */
891
+ static int
892
+ isStandaloneDebug(void *ctx ATTRIBUTE_UNUSED)
893
+ {
894
+ callbacks++;
895
+ if (noout)
896
+ return(0);
897
+ fprintf(stdout, "SAX.isStandalone()\n");
898
+ return(0);
899
+ }
900
+
901
+ /**
902
+ * hasInternalSubsetDebug:
903
+ * @ctxt: An XML parser context
904
+ *
905
+ * Does this document has an internal subset
906
+ *
907
+ * Returns 1 if true
908
+ */
909
+ static int
910
+ hasInternalSubsetDebug(void *ctx ATTRIBUTE_UNUSED)
911
+ {
912
+ callbacks++;
913
+ if (noout)
914
+ return(0);
915
+ fprintf(stdout, "SAX.hasInternalSubset()\n");
916
+ return(0);
917
+ }
918
+
919
+ /**
920
+ * hasExternalSubsetDebug:
921
+ * @ctxt: An XML parser context
922
+ *
923
+ * Does this document has an external subset
924
+ *
925
+ * Returns 1 if true
926
+ */
927
+ static int
928
+ hasExternalSubsetDebug(void *ctx ATTRIBUTE_UNUSED)
929
+ {
930
+ callbacks++;
931
+ if (noout)
932
+ return(0);
933
+ fprintf(stdout, "SAX.hasExternalSubset()\n");
934
+ return(0);
935
+ }
936
+
937
+ /**
938
+ * internalSubsetDebug:
939
+ * @ctxt: An XML parser context
940
+ *
941
+ * Does this document has an internal subset
942
+ */
943
+ static void
944
+ internalSubsetDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name,
945
+ const xmlChar *ExternalID, const xmlChar *SystemID)
946
+ {
947
+ callbacks++;
948
+ if (noout)
949
+ return;
950
+ fprintf(stdout, "SAX.internalSubset(%s,", name);
951
+ if (ExternalID == NULL)
952
+ fprintf(stdout, " ,");
953
+ else
954
+ fprintf(stdout, " %s,", ExternalID);
955
+ if (SystemID == NULL)
956
+ fprintf(stdout, " )\n");
957
+ else
958
+ fprintf(stdout, " %s)\n", SystemID);
959
+ }
960
+
961
+ /**
962
+ * externalSubsetDebug:
963
+ * @ctxt: An XML parser context
964
+ *
965
+ * Does this document has an external subset
966
+ */
967
+ static void
968
+ externalSubsetDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name,
969
+ const xmlChar *ExternalID, const xmlChar *SystemID)
970
+ {
971
+ callbacks++;
972
+ if (noout)
973
+ return;
974
+ fprintf(stdout, "SAX.externalSubset(%s,", name);
975
+ if (ExternalID == NULL)
976
+ fprintf(stdout, " ,");
977
+ else
978
+ fprintf(stdout, " %s,", ExternalID);
979
+ if (SystemID == NULL)
980
+ fprintf(stdout, " )\n");
981
+ else
982
+ fprintf(stdout, " %s)\n", SystemID);
983
+ }
984
+
985
+ /**
986
+ * resolveEntityDebug:
987
+ * @ctxt: An XML parser context
988
+ * @publicId: The public ID of the entity
989
+ * @systemId: The system ID of the entity
990
+ *
991
+ * Special entity resolver, better left to the parser, it has
992
+ * more context than the application layer.
993
+ * The default behaviour is to NOT resolve the entities, in that case
994
+ * the ENTITY_REF nodes are built in the structure (and the parameter
995
+ * values).
996
+ *
997
+ * Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour.
998
+ */
999
+ static xmlParserInputPtr
1000
+ resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
1001
+ {
1002
+ callbacks++;
1003
+ if (noout)
1004
+ return(NULL);
1005
+ /* xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx; */
1006
+
1007
+
1008
+ fprintf(stdout, "SAX.resolveEntity(");
1009
+ if (publicId != NULL)
1010
+ fprintf(stdout, "%s", (char *)publicId);
1011
+ else
1012
+ fprintf(stdout, " ");
1013
+ if (systemId != NULL)
1014
+ fprintf(stdout, ", %s)\n", (char *)systemId);
1015
+ else
1016
+ fprintf(stdout, ", )\n");
1017
+ return(NULL);
1018
+ }
1019
+
1020
+ /**
1021
+ * getEntityDebug:
1022
+ * @ctxt: An XML parser context
1023
+ * @name: The entity name
1024
+ *
1025
+ * Get an entity by name
1026
+ *
1027
+ * Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour.
1028
+ */
1029
+ static xmlEntityPtr
1030
+ getEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name)
1031
+ {
1032
+ callbacks++;
1033
+ if (noout)
1034
+ return(NULL);
1035
+ fprintf(stdout, "SAX.getEntity(%s)\n", name);
1036
+ return(NULL);
1037
+ }
1038
+
1039
+ /**
1040
+ * getParameterEntityDebug:
1041
+ * @ctxt: An XML parser context
1042
+ * @name: The entity name
1043
+ *
1044
+ * Get a parameter entity by name
1045
+ *
1046
+ * Returns the xmlParserInputPtr
1047
+ */
1048
+ static xmlEntityPtr
1049
+ getParameterEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name)
1050
+ {
1051
+ callbacks++;
1052
+ if (noout)
1053
+ return(NULL);
1054
+ fprintf(stdout, "SAX.getParameterEntity(%s)\n", name);
1055
+ return(NULL);
1056
+ }
1057
+
1058
+
1059
+ /**
1060
+ * entityDeclDebug:
1061
+ * @ctxt: An XML parser context
1062
+ * @name: the entity name
1063
+ * @type: the entity type
1064
+ * @publicId: The public ID of the entity
1065
+ * @systemId: The system ID of the entity
1066
+ * @content: the entity value (without processing).
1067
+ *
1068
+ * An entity definition has been parsed
1069
+ */
1070
+ static void
1071
+ entityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, int type,
1072
+ const xmlChar *publicId, const xmlChar *systemId, xmlChar *content)
1073
+ {
1074
+ const xmlChar *nullstr = BAD_CAST "(null)";
1075
+ /* not all libraries handle printing null pointers nicely */
1076
+ if (publicId == NULL)
1077
+ publicId = nullstr;
1078
+ if (systemId == NULL)
1079
+ systemId = nullstr;
1080
+ if (content == NULL)
1081
+ content = (xmlChar *)nullstr;
1082
+ callbacks++;
1083
+ if (noout)
1084
+ return;
1085
+ fprintf(stdout, "SAX.entityDecl(%s, %d, %s, %s, %s)\n",
1086
+ name, type, publicId, systemId, content);
1087
+ }
1088
+
1089
+ /**
1090
+ * attributeDeclDebug:
1091
+ * @ctxt: An XML parser context
1092
+ * @name: the attribute name
1093
+ * @type: the attribute type
1094
+ *
1095
+ * An attribute definition has been parsed
1096
+ */
1097
+ static void
1098
+ attributeDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar * elem,
1099
+ const xmlChar * name, int type, int def,
1100
+ const xmlChar * defaultValue, xmlEnumerationPtr tree)
1101
+ {
1102
+ callbacks++;
1103
+ if (noout)
1104
+ return;
1105
+ if (defaultValue == NULL)
1106
+ fprintf(stdout, "SAX.attributeDecl(%s, %s, %d, %d, NULL, ...)\n",
1107
+ elem, name, type, def);
1108
+ else
1109
+ fprintf(stdout, "SAX.attributeDecl(%s, %s, %d, %d, %s, ...)\n",
1110
+ elem, name, type, def, defaultValue);
1111
+ xmlFreeEnumeration(tree);
1112
+ }
1113
+
1114
+ /**
1115
+ * elementDeclDebug:
1116
+ * @ctxt: An XML parser context
1117
+ * @name: the element name
1118
+ * @type: the element type
1119
+ * @content: the element value (without processing).
1120
+ *
1121
+ * An element definition has been parsed
1122
+ */
1123
+ static void
1124
+ elementDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, int type,
1125
+ xmlElementContentPtr content ATTRIBUTE_UNUSED)
1126
+ {
1127
+ callbacks++;
1128
+ if (noout)
1129
+ return;
1130
+ fprintf(stdout, "SAX.elementDecl(%s, %d, ...)\n",
1131
+ name, type);
1132
+ }
1133
+
1134
+ /**
1135
+ * notationDeclDebug:
1136
+ * @ctxt: An XML parser context
1137
+ * @name: The name of the notation
1138
+ * @publicId: The public ID of the entity
1139
+ * @systemId: The system ID of the entity
1140
+ *
1141
+ * What to do when a notation declaration has been parsed.
1142
+ */
1143
+ static void
1144
+ notationDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name,
1145
+ const xmlChar *publicId, const xmlChar *systemId)
1146
+ {
1147
+ callbacks++;
1148
+ if (noout)
1149
+ return;
1150
+ fprintf(stdout, "SAX.notationDecl(%s, %s, %s)\n",
1151
+ (char *) name, (char *) publicId, (char *) systemId);
1152
+ }
1153
+
1154
+ /**
1155
+ * unparsedEntityDeclDebug:
1156
+ * @ctxt: An XML parser context
1157
+ * @name: The name of the entity
1158
+ * @publicId: The public ID of the entity
1159
+ * @systemId: The system ID of the entity
1160
+ * @notationName: the name of the notation
1161
+ *
1162
+ * What to do when an unparsed entity declaration is parsed
1163
+ */
1164
+ static void
1165
+ unparsedEntityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name,
1166
+ const xmlChar *publicId, const xmlChar *systemId,
1167
+ const xmlChar *notationName)
1168
+ {
1169
+ const xmlChar *nullstr = BAD_CAST "(null)";
1170
+
1171
+ if (publicId == NULL)
1172
+ publicId = nullstr;
1173
+ if (systemId == NULL)
1174
+ systemId = nullstr;
1175
+ if (notationName == NULL)
1176
+ notationName = nullstr;
1177
+ callbacks++;
1178
+ if (noout)
1179
+ return;
1180
+ fprintf(stdout, "SAX.unparsedEntityDecl(%s, %s, %s, %s)\n",
1181
+ (char *) name, (char *) publicId, (char *) systemId,
1182
+ (char *) notationName);
1183
+ }
1184
+
1185
+ /**
1186
+ * setDocumentLocatorDebug:
1187
+ * @ctxt: An XML parser context
1188
+ * @loc: A SAX Locator
1189
+ *
1190
+ * Receive the document locator at startup, actually xmlDefaultSAXLocator
1191
+ * Everything is available on the context, so this is useless in our case.
1192
+ */
1193
+ static void
1194
+ setDocumentLocatorDebug(void *ctx ATTRIBUTE_UNUSED, xmlSAXLocatorPtr loc ATTRIBUTE_UNUSED)
1195
+ {
1196
+ callbacks++;
1197
+ if (noout)
1198
+ return;
1199
+ fprintf(stdout, "SAX.setDocumentLocator()\n");
1200
+ }
1201
+
1202
+ /**
1203
+ * startDocumentDebug:
1204
+ * @ctxt: An XML parser context
1205
+ *
1206
+ * called when the document start being processed.
1207
+ */
1208
+ static void
1209
+ startDocumentDebug(void *ctx ATTRIBUTE_UNUSED)
1210
+ {
1211
+ callbacks++;
1212
+ if (noout)
1213
+ return;
1214
+ fprintf(stdout, "SAX.startDocument()\n");
1215
+ }
1216
+
1217
+ /**
1218
+ * endDocumentDebug:
1219
+ * @ctxt: An XML parser context
1220
+ *
1221
+ * called when the document end has been detected.
1222
+ */
1223
+ static void
1224
+ endDocumentDebug(void *ctx ATTRIBUTE_UNUSED)
1225
+ {
1226
+ callbacks++;
1227
+ if (noout)
1228
+ return;
1229
+ fprintf(stdout, "SAX.endDocument()\n");
1230
+ }
1231
+
1232
+ /**
1233
+ * startElementDebug:
1234
+ * @ctxt: An XML parser context
1235
+ * @name: The element name
1236
+ *
1237
+ * called when an opening tag has been processed.
1238
+ */
1239
+ static void
1240
+ startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts)
1241
+ {
1242
+ int i;
1243
+
1244
+ callbacks++;
1245
+ if (noout)
1246
+ return;
1247
+ fprintf(stdout, "SAX.startElement(%s", (char *) name);
1248
+ if (atts != NULL) {
1249
+ for (i = 0;(atts[i] != NULL);i++) {
1250
+ fprintf(stdout, ", %s='", atts[i++]);
1251
+ if (atts[i] != NULL)
1252
+ fprintf(stdout, "%s'", atts[i]);
1253
+ }
1254
+ }
1255
+ fprintf(stdout, ")\n");
1256
+ }
1257
+
1258
+ /**
1259
+ * endElementDebug:
1260
+ * @ctxt: An XML parser context
1261
+ * @name: The element name
1262
+ *
1263
+ * called when the end of an element has been detected.
1264
+ */
1265
+ static void
1266
+ endElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name)
1267
+ {
1268
+ callbacks++;
1269
+ if (noout)
1270
+ return;
1271
+ fprintf(stdout, "SAX.endElement(%s)\n", (char *) name);
1272
+ }
1273
+
1274
+ /**
1275
+ * charactersDebug:
1276
+ * @ctxt: An XML parser context
1277
+ * @ch: a xmlChar string
1278
+ * @len: the number of xmlChar
1279
+ *
1280
+ * receiving some chars from the parser.
1281
+ * Question: how much at a time ???
1282
+ */
1283
+ static void
1284
+ charactersDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *ch, int len)
1285
+ {
1286
+ char out[40];
1287
+ int i;
1288
+
1289
+ callbacks++;
1290
+ if (noout)
1291
+ return;
1292
+ for (i = 0;(i<len) && (i < 30);i++)
1293
+ out[i] = ch[i];
1294
+ out[i] = 0;
1295
+
1296
+ fprintf(stdout, "SAX.characters(%s, %d)\n", out, len);
1297
+ }
1298
+
1299
+ /**
1300
+ * referenceDebug:
1301
+ * @ctxt: An XML parser context
1302
+ * @name: The entity name
1303
+ *
1304
+ * called when an entity reference is detected.
1305
+ */
1306
+ static void
1307
+ referenceDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name)
1308
+ {
1309
+ callbacks++;
1310
+ if (noout)
1311
+ return;
1312
+ fprintf(stdout, "SAX.reference(%s)\n", name);
1313
+ }
1314
+
1315
+ /**
1316
+ * ignorableWhitespaceDebug:
1317
+ * @ctxt: An XML parser context
1318
+ * @ch: a xmlChar string
1319
+ * @start: the first char in the string
1320
+ * @len: the number of xmlChar
1321
+ *
1322
+ * receiving some ignorable whitespaces from the parser.
1323
+ * Question: how much at a time ???
1324
+ */
1325
+ static void
1326
+ ignorableWhitespaceDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *ch, int len)
1327
+ {
1328
+ char out[40];
1329
+ int i;
1330
+
1331
+ callbacks++;
1332
+ if (noout)
1333
+ return;
1334
+ for (i = 0;(i<len) && (i < 30);i++)
1335
+ out[i] = ch[i];
1336
+ out[i] = 0;
1337
+ fprintf(stdout, "SAX.ignorableWhitespace(%s, %d)\n", out, len);
1338
+ }
1339
+
1340
+ /**
1341
+ * processingInstructionDebug:
1342
+ * @ctxt: An XML parser context
1343
+ * @target: the target name
1344
+ * @data: the PI data's
1345
+ * @len: the number of xmlChar
1346
+ *
1347
+ * A processing instruction has been parsed.
1348
+ */
1349
+ static void
1350
+ processingInstructionDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *target,
1351
+ const xmlChar *data)
1352
+ {
1353
+ callbacks++;
1354
+ if (noout)
1355
+ return;
1356
+ if (data != NULL)
1357
+ fprintf(stdout, "SAX.processingInstruction(%s, %s)\n",
1358
+ (char *) target, (char *) data);
1359
+ else
1360
+ fprintf(stdout, "SAX.processingInstruction(%s, NULL)\n",
1361
+ (char *) target);
1362
+ }
1363
+
1364
+ /**
1365
+ * cdataBlockDebug:
1366
+ * @ctx: the user data (XML parser context)
1367
+ * @value: The pcdata content
1368
+ * @len: the block length
1369
+ *
1370
+ * called when a pcdata block has been parsed
1371
+ */
1372
+ static void
1373
+ cdataBlockDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *value, int len)
1374
+ {
1375
+ callbacks++;
1376
+ if (noout)
1377
+ return;
1378
+ fprintf(stdout, "SAX.pcdata(%.20s, %d)\n",
1379
+ (char *) value, len);
1380
+ }
1381
+
1382
+ /**
1383
+ * commentDebug:
1384
+ * @ctxt: An XML parser context
1385
+ * @value: the comment content
1386
+ *
1387
+ * A comment has been parsed.
1388
+ */
1389
+ static void
1390
+ commentDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *value)
1391
+ {
1392
+ callbacks++;
1393
+ if (noout)
1394
+ return;
1395
+ fprintf(stdout, "SAX.comment(%s)\n", value);
1396
+ }
1397
+
1398
+ /**
1399
+ * warningDebug:
1400
+ * @ctxt: An XML parser context
1401
+ * @msg: the message to display/transmit
1402
+ * @...: extra parameters for the message display
1403
+ *
1404
+ * Display and format a warning messages, gives file, line, position and
1405
+ * extra parameters.
1406
+ */
1407
+ static void XMLCDECL
1408
+ warningDebug(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...)
1409
+ {
1410
+ va_list args;
1411
+
1412
+ callbacks++;
1413
+ if (noout)
1414
+ return;
1415
+ va_start(args, msg);
1416
+ fprintf(stdout, "SAX.warning: ");
1417
+ vfprintf(stdout, msg, args);
1418
+ va_end(args);
1419
+ }
1420
+
1421
+ /**
1422
+ * errorDebug:
1423
+ * @ctxt: An XML parser context
1424
+ * @msg: the message to display/transmit
1425
+ * @...: extra parameters for the message display
1426
+ *
1427
+ * Display and format a error messages, gives file, line, position and
1428
+ * extra parameters.
1429
+ */
1430
+ static void XMLCDECL
1431
+ errorDebug(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...)
1432
+ {
1433
+ va_list args;
1434
+
1435
+ callbacks++;
1436
+ if (noout)
1437
+ return;
1438
+ va_start(args, msg);
1439
+ fprintf(stdout, "SAX.error: ");
1440
+ vfprintf(stdout, msg, args);
1441
+ va_end(args);
1442
+ }
1443
+
1444
+ /**
1445
+ * fatalErrorDebug:
1446
+ * @ctxt: An XML parser context
1447
+ * @msg: the message to display/transmit
1448
+ * @...: extra parameters for the message display
1449
+ *
1450
+ * Display and format a fatalError messages, gives file, line, position and
1451
+ * extra parameters.
1452
+ */
1453
+ static void XMLCDECL
1454
+ fatalErrorDebug(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...)
1455
+ {
1456
+ va_list args;
1457
+
1458
+ callbacks++;
1459
+ if (noout)
1460
+ return;
1461
+ va_start(args, msg);
1462
+ fprintf(stdout, "SAX.fatalError: ");
1463
+ vfprintf(stdout, msg, args);
1464
+ va_end(args);
1465
+ }
1466
+
1467
+ static xmlSAXHandler debugSAXHandlerStruct = {
1468
+ internalSubsetDebug,
1469
+ isStandaloneDebug,
1470
+ hasInternalSubsetDebug,
1471
+ hasExternalSubsetDebug,
1472
+ resolveEntityDebug,
1473
+ getEntityDebug,
1474
+ entityDeclDebug,
1475
+ notationDeclDebug,
1476
+ attributeDeclDebug,
1477
+ elementDeclDebug,
1478
+ unparsedEntityDeclDebug,
1479
+ setDocumentLocatorDebug,
1480
+ startDocumentDebug,
1481
+ endDocumentDebug,
1482
+ startElementDebug,
1483
+ endElementDebug,
1484
+ referenceDebug,
1485
+ charactersDebug,
1486
+ ignorableWhitespaceDebug,
1487
+ processingInstructionDebug,
1488
+ commentDebug,
1489
+ warningDebug,
1490
+ errorDebug,
1491
+ fatalErrorDebug,
1492
+ getParameterEntityDebug,
1493
+ cdataBlockDebug,
1494
+ externalSubsetDebug,
1495
+ 1,
1496
+ NULL,
1497
+ NULL,
1498
+ NULL,
1499
+ NULL
1500
+ };
1501
+
1502
+ xmlSAXHandlerPtr debugSAXHandler = &debugSAXHandlerStruct;
1503
+
1504
+ /*
1505
+ * SAX2 specific callbacks
1506
+ */
1507
+ /**
1508
+ * startElementNsDebug:
1509
+ * @ctxt: An XML parser context
1510
+ * @name: The element name
1511
+ *
1512
+ * called when an opening tag has been processed.
1513
+ */
1514
+ static void
1515
+ startElementNsDebug(void *ctx ATTRIBUTE_UNUSED,
1516
+ const xmlChar *localname,
1517
+ const xmlChar *prefix,
1518
+ const xmlChar *URI,
1519
+ int nb_namespaces,
1520
+ const xmlChar **namespaces,
1521
+ int nb_attributes,
1522
+ int nb_defaulted,
1523
+ const xmlChar **attributes)
1524
+ {
1525
+ int i;
1526
+
1527
+ callbacks++;
1528
+ if (noout)
1529
+ return;
1530
+ fprintf(stdout, "SAX.startElementNs(%s", (char *) localname);
1531
+ if (prefix == NULL)
1532
+ fprintf(stdout, ", NULL");
1533
+ else
1534
+ fprintf(stdout, ", %s", (char *) prefix);
1535
+ if (URI == NULL)
1536
+ fprintf(stdout, ", NULL");
1537
+ else
1538
+ fprintf(stdout, ", '%s'", (char *) URI);
1539
+ fprintf(stdout, ", %d", nb_namespaces);
1540
+
1541
+ if (namespaces != NULL) {
1542
+ for (i = 0;i < nb_namespaces * 2;i++) {
1543
+ fprintf(stdout, ", xmlns");
1544
+ if (namespaces[i] != NULL)
1545
+ fprintf(stdout, ":%s", namespaces[i]);
1546
+ i++;
1547
+ fprintf(stdout, "='%s'", namespaces[i]);
1548
+ }
1549
+ }
1550
+ fprintf(stdout, ", %d, %d", nb_attributes, nb_defaulted);
1551
+ if (attributes != NULL) {
1552
+ for (i = 0;i < nb_attributes * 5;i += 5) {
1553
+ if (attributes[i + 1] != NULL)
1554
+ fprintf(stdout, ", %s:%s='", attributes[i + 1], attributes[i]);
1555
+ else
1556
+ fprintf(stdout, ", %s='", attributes[i]);
1557
+ fprintf(stdout, "%.4s...', %d", attributes[i + 3],
1558
+ (int)(attributes[i + 4] - attributes[i + 3]));
1559
+ }
1560
+ }
1561
+ fprintf(stdout, ")\n");
1562
+ }
1563
+
1564
+ /**
1565
+ * endElementDebug:
1566
+ * @ctxt: An XML parser context
1567
+ * @name: The element name
1568
+ *
1569
+ * called when the end of an element has been detected.
1570
+ */
1571
+ static void
1572
+ endElementNsDebug(void *ctx ATTRIBUTE_UNUSED,
1573
+ const xmlChar *localname,
1574
+ const xmlChar *prefix,
1575
+ const xmlChar *URI)
1576
+ {
1577
+ callbacks++;
1578
+ if (noout)
1579
+ return;
1580
+ fprintf(stdout, "SAX.endElementNs(%s", (char *) localname);
1581
+ if (prefix == NULL)
1582
+ fprintf(stdout, ", NULL");
1583
+ else
1584
+ fprintf(stdout, ", %s", (char *) prefix);
1585
+ if (URI == NULL)
1586
+ fprintf(stdout, ", NULL)\n");
1587
+ else
1588
+ fprintf(stdout, ", '%s')\n", (char *) URI);
1589
+ }
1590
+
1591
+ static xmlSAXHandler debugSAX2HandlerStruct = {
1592
+ internalSubsetDebug,
1593
+ isStandaloneDebug,
1594
+ hasInternalSubsetDebug,
1595
+ hasExternalSubsetDebug,
1596
+ resolveEntityDebug,
1597
+ getEntityDebug,
1598
+ entityDeclDebug,
1599
+ notationDeclDebug,
1600
+ attributeDeclDebug,
1601
+ elementDeclDebug,
1602
+ unparsedEntityDeclDebug,
1603
+ setDocumentLocatorDebug,
1604
+ startDocumentDebug,
1605
+ endDocumentDebug,
1606
+ NULL,
1607
+ NULL,
1608
+ referenceDebug,
1609
+ charactersDebug,
1610
+ ignorableWhitespaceDebug,
1611
+ processingInstructionDebug,
1612
+ commentDebug,
1613
+ warningDebug,
1614
+ errorDebug,
1615
+ fatalErrorDebug,
1616
+ getParameterEntityDebug,
1617
+ cdataBlockDebug,
1618
+ externalSubsetDebug,
1619
+ XML_SAX2_MAGIC,
1620
+ NULL,
1621
+ startElementNsDebug,
1622
+ endElementNsDebug,
1623
+ NULL
1624
+ };
1625
+
1626
+ static xmlSAXHandlerPtr debugSAX2Handler = &debugSAX2HandlerStruct;
1627
+
1628
+ static void
1629
+ testSAX(const char *filename) {
1630
+ xmlSAXHandlerPtr handler;
1631
+ const char *user_data = "user_data"; /* mostly for debugging */
1632
+ xmlParserInputBufferPtr buf = NULL;
1633
+ xmlParserInputPtr inputStream;
1634
+ xmlParserCtxtPtr ctxt = NULL;
1635
+ xmlSAXHandlerPtr old_sax = NULL;
1636
+
1637
+ callbacks = 0;
1638
+
1639
+ if (noout) {
1640
+ handler = emptySAXHandler;
1641
+ #ifdef LIBXML_SAX1_ENABLED
1642
+ } else if (sax1) {
1643
+ handler = debugSAXHandler;
1644
+ #endif
1645
+ } else {
1646
+ handler = debugSAX2Handler;
1647
+ }
1648
+
1649
+ /*
1650
+ * it's not the simplest code but the most generic in term of I/O
1651
+ */
1652
+ buf = xmlParserInputBufferCreateFilename(filename, XML_CHAR_ENCODING_NONE);
1653
+ if (buf == NULL) {
1654
+ goto error;
1655
+ }
1656
+
1657
+ #ifdef LIBXML_SCHEMAS_ENABLED
1658
+ if (wxschemas != NULL) {
1659
+ int ret;
1660
+ xmlSchemaValidCtxtPtr vctxt;
1661
+
1662
+ vctxt = xmlSchemaNewValidCtxt(wxschemas);
1663
+ xmlSchemaSetValidErrors(vctxt,
1664
+ (xmlSchemaValidityErrorFunc) fprintf,
1665
+ (xmlSchemaValidityWarningFunc) fprintf,
1666
+ stderr);
1667
+
1668
+ ret = xmlSchemaValidateStream(vctxt, buf, 0, handler,
1669
+ (void *)user_data);
1670
+ if (repeat == 0) {
1671
+ if (ret == 0) {
1672
+ fprintf(stderr, "%s validates\n", filename);
1673
+ } else if (ret > 0) {
1674
+ fprintf(stderr, "%s fails to validate\n", filename);
1675
+ progresult = XMLLINT_ERR_VALID;
1676
+ } else {
1677
+ fprintf(stderr, "%s validation generated an internal error\n",
1678
+ filename);
1679
+ progresult = XMLLINT_ERR_VALID;
1680
+ }
1681
+ }
1682
+ xmlSchemaFreeValidCtxt(vctxt);
1683
+ } else
1684
+ #endif
1685
+ {
1686
+ /*
1687
+ * Create the parser context amd hook the input
1688
+ */
1689
+ ctxt = xmlNewParserCtxt();
1690
+ if (ctxt == NULL) {
1691
+ xmlFreeParserInputBuffer(buf);
1692
+ goto error;
1693
+ }
1694
+ old_sax = ctxt->sax;
1695
+ ctxt->sax = handler;
1696
+ ctxt->userData = (void *) user_data;
1697
+ inputStream = xmlNewIOInputStream(ctxt, buf, XML_CHAR_ENCODING_NONE);
1698
+ if (inputStream == NULL) {
1699
+ xmlFreeParserInputBuffer(buf);
1700
+ goto error;
1701
+ }
1702
+ inputPush(ctxt, inputStream);
1703
+
1704
+ /* do the parsing */
1705
+ xmlParseDocument(ctxt);
1706
+
1707
+ if (ctxt->myDoc != NULL) {
1708
+ fprintf(stderr, "SAX generated a doc !\n");
1709
+ xmlFreeDoc(ctxt->myDoc);
1710
+ ctxt->myDoc = NULL;
1711
+ }
1712
+ }
1713
+
1714
+ error:
1715
+ if (ctxt != NULL) {
1716
+ ctxt->sax = old_sax;
1717
+ xmlFreeParserCtxt(ctxt);
1718
+ }
1719
+ }
1720
+
1721
+ /************************************************************************
1722
+ * *
1723
+ * Stream Test processing *
1724
+ * *
1725
+ ************************************************************************/
1726
+ #ifdef LIBXML_READER_ENABLED
1727
+ static void processNode(xmlTextReaderPtr reader) {
1728
+ const xmlChar *name, *value;
1729
+ int type, empty;
1730
+
1731
+ type = xmlTextReaderNodeType(reader);
1732
+ empty = xmlTextReaderIsEmptyElement(reader);
1733
+
1734
+ if (debug) {
1735
+ name = xmlTextReaderConstName(reader);
1736
+ if (name == NULL)
1737
+ name = BAD_CAST "--";
1738
+
1739
+ value = xmlTextReaderConstValue(reader);
1740
+
1741
+
1742
+ printf("%d %d %s %d %d",
1743
+ xmlTextReaderDepth(reader),
1744
+ type,
1745
+ name,
1746
+ empty,
1747
+ xmlTextReaderHasValue(reader));
1748
+ if (value == NULL)
1749
+ printf("\n");
1750
+ else {
1751
+ printf(" %s\n", value);
1752
+ }
1753
+ }
1754
+ #ifdef LIBXML_PATTERN_ENABLED
1755
+ if (patternc) {
1756
+ xmlChar *path = NULL;
1757
+ int match = -1;
1758
+
1759
+ if (type == XML_READER_TYPE_ELEMENT) {
1760
+ /* do the check only on element start */
1761
+ match = xmlPatternMatch(patternc, xmlTextReaderCurrentNode(reader));
1762
+
1763
+ if (match) {
1764
+ #if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED)
1765
+ path = xmlGetNodePath(xmlTextReaderCurrentNode(reader));
1766
+ printf("Node %s matches pattern %s\n", path, pattern);
1767
+ #else
1768
+ printf("Node %s matches pattern %s\n",
1769
+ xmlTextReaderConstName(reader), pattern);
1770
+ #endif
1771
+ }
1772
+ }
1773
+ if (patstream != NULL) {
1774
+ int ret;
1775
+
1776
+ if (type == XML_READER_TYPE_ELEMENT) {
1777
+ ret = xmlStreamPush(patstream,
1778
+ xmlTextReaderConstLocalName(reader),
1779
+ xmlTextReaderConstNamespaceUri(reader));
1780
+ if (ret < 0) {
1781
+ fprintf(stderr, "xmlStreamPush() failure\n");
1782
+ xmlFreeStreamCtxt(patstream);
1783
+ patstream = NULL;
1784
+ } else if (ret != match) {
1785
+ #if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED)
1786
+ if (path == NULL) {
1787
+ path = xmlGetNodePath(
1788
+ xmlTextReaderCurrentNode(reader));
1789
+ }
1790
+ #endif
1791
+ fprintf(stderr,
1792
+ "xmlPatternMatch and xmlStreamPush disagree\n");
1793
+ if (path != NULL)
1794
+ fprintf(stderr, " pattern %s node %s\n",
1795
+ pattern, path);
1796
+ else
1797
+ fprintf(stderr, " pattern %s node %s\n",
1798
+ pattern, xmlTextReaderConstName(reader));
1799
+ }
1800
+
1801
+ }
1802
+ if ((type == XML_READER_TYPE_END_ELEMENT) ||
1803
+ ((type == XML_READER_TYPE_ELEMENT) && (empty))) {
1804
+ ret = xmlStreamPop(patstream);
1805
+ if (ret < 0) {
1806
+ fprintf(stderr, "xmlStreamPop() failure\n");
1807
+ xmlFreeStreamCtxt(patstream);
1808
+ patstream = NULL;
1809
+ }
1810
+ }
1811
+ }
1812
+ if (path != NULL)
1813
+ xmlFree(path);
1814
+ }
1815
+ #endif
1816
+ }
1817
+
1818
+ static void streamFile(char *filename) {
1819
+ xmlTextReaderPtr reader;
1820
+ int ret;
1821
+ #ifdef HAVE_SYS_MMAN_H
1822
+ int fd = -1;
1823
+ struct stat info;
1824
+ const char *base = NULL;
1825
+ xmlParserInputBufferPtr input = NULL;
1826
+
1827
+ if (memory) {
1828
+ if (stat(filename, &info) < 0)
1829
+ return;
1830
+ if ((fd = open(filename, O_RDONLY)) < 0)
1831
+ return;
1832
+ base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
1833
+ if (base == (void *) MAP_FAILED)
1834
+ return;
1835
+
1836
+ reader = xmlReaderForMemory(base, info.st_size, filename,
1837
+ NULL, options);
1838
+ } else
1839
+ #endif
1840
+ reader = xmlReaderForFile(filename, NULL, options);
1841
+ #ifdef LIBXML_PATTERN_ENABLED
1842
+ if (pattern != NULL) {
1843
+ patternc = xmlPatterncompile((const xmlChar *) pattern, NULL, 0, NULL);
1844
+ if (patternc == NULL) {
1845
+ xmlGenericError(xmlGenericErrorContext,
1846
+ "Pattern %s failed to compile\n", pattern);
1847
+ progresult = XMLLINT_ERR_SCHEMAPAT;
1848
+ pattern = NULL;
1849
+ }
1850
+ }
1851
+ if (patternc != NULL) {
1852
+ patstream = xmlPatternGetStreamCtxt(patternc);
1853
+ if (patstream != NULL) {
1854
+ ret = xmlStreamPush(patstream, NULL, NULL);
1855
+ if (ret < 0) {
1856
+ fprintf(stderr, "xmlStreamPush() failure\n");
1857
+ xmlFreeStreamCtxt(patstream);
1858
+ patstream = NULL;
1859
+ }
1860
+ }
1861
+ }
1862
+ #endif
1863
+
1864
+
1865
+ if (reader != NULL) {
1866
+ #ifdef LIBXML_VALID_ENABLED
1867
+ if (valid)
1868
+ xmlTextReaderSetParserProp(reader, XML_PARSER_VALIDATE, 1);
1869
+ else
1870
+ #endif /* LIBXML_VALID_ENABLED */
1871
+ xmlTextReaderSetParserProp(reader, XML_PARSER_LOADDTD, 1);
1872
+ #ifdef LIBXML_SCHEMAS_ENABLED
1873
+ if (relaxng != NULL) {
1874
+ if ((timing) && (!repeat)) {
1875
+ startTimer();
1876
+ }
1877
+ ret = xmlTextReaderRelaxNGValidate(reader, relaxng);
1878
+ if (ret < 0) {
1879
+ xmlGenericError(xmlGenericErrorContext,
1880
+ "Relax-NG schema %s failed to compile\n", relaxng);
1881
+ progresult = XMLLINT_ERR_SCHEMACOMP;
1882
+ relaxng = NULL;
1883
+ }
1884
+ if ((timing) && (!repeat)) {
1885
+ endTimer("Compiling the schemas");
1886
+ }
1887
+ }
1888
+ if (schema != NULL) {
1889
+ if ((timing) && (!repeat)) {
1890
+ startTimer();
1891
+ }
1892
+ ret = xmlTextReaderSchemaValidate(reader, schema);
1893
+ if (ret < 0) {
1894
+ xmlGenericError(xmlGenericErrorContext,
1895
+ "XSD schema %s failed to compile\n", schema);
1896
+ progresult = XMLLINT_ERR_SCHEMACOMP;
1897
+ schema = NULL;
1898
+ }
1899
+ if ((timing) && (!repeat)) {
1900
+ endTimer("Compiling the schemas");
1901
+ }
1902
+ }
1903
+ #endif
1904
+
1905
+ /*
1906
+ * Process all nodes in sequence
1907
+ */
1908
+ if ((timing) && (!repeat)) {
1909
+ startTimer();
1910
+ }
1911
+ ret = xmlTextReaderRead(reader);
1912
+ while (ret == 1) {
1913
+ if ((debug)
1914
+ #ifdef LIBXML_PATTERN_ENABLED
1915
+ || (patternc)
1916
+ #endif
1917
+ )
1918
+ processNode(reader);
1919
+ ret = xmlTextReaderRead(reader);
1920
+ }
1921
+ if ((timing) && (!repeat)) {
1922
+ #ifdef LIBXML_SCHEMAS_ENABLED
1923
+ if (relaxng != NULL)
1924
+ endTimer("Parsing and validating");
1925
+ else
1926
+ #endif
1927
+ #ifdef LIBXML_VALID_ENABLED
1928
+ if (valid)
1929
+ endTimer("Parsing and validating");
1930
+ else
1931
+ #endif
1932
+ endTimer("Parsing");
1933
+ }
1934
+
1935
+ #ifdef LIBXML_VALID_ENABLED
1936
+ if (valid) {
1937
+ if (xmlTextReaderIsValid(reader) != 1) {
1938
+ xmlGenericError(xmlGenericErrorContext,
1939
+ "Document %s does not validate\n", filename);
1940
+ progresult = XMLLINT_ERR_VALID;
1941
+ }
1942
+ }
1943
+ #endif /* LIBXML_VALID_ENABLED */
1944
+ #ifdef LIBXML_SCHEMAS_ENABLED
1945
+ if ((relaxng != NULL) || (schema != NULL)) {
1946
+ if (xmlTextReaderIsValid(reader) != 1) {
1947
+ fprintf(stderr, "%s fails to validate\n", filename);
1948
+ progresult = XMLLINT_ERR_VALID;
1949
+ } else {
1950
+ fprintf(stderr, "%s validates\n", filename);
1951
+ }
1952
+ }
1953
+ #endif
1954
+ /*
1955
+ * Done, cleanup and status
1956
+ */
1957
+ xmlFreeTextReader(reader);
1958
+ if (ret != 0) {
1959
+ fprintf(stderr, "%s : failed to parse\n", filename);
1960
+ progresult = XMLLINT_ERR_UNCLASS;
1961
+ }
1962
+ } else {
1963
+ fprintf(stderr, "Unable to open %s\n", filename);
1964
+ progresult = XMLLINT_ERR_UNCLASS;
1965
+ }
1966
+ #ifdef LIBXML_PATTERN_ENABLED
1967
+ if (patstream != NULL) {
1968
+ xmlFreeStreamCtxt(patstream);
1969
+ patstream = NULL;
1970
+ }
1971
+ #endif
1972
+ #ifdef HAVE_SYS_MMAN_H
1973
+ if (memory) {
1974
+ xmlFreeParserInputBuffer(input);
1975
+ munmap((char *) base, info.st_size);
1976
+ close(fd);
1977
+ }
1978
+ #endif
1979
+ }
1980
+
1981
+ static void walkDoc(xmlDocPtr doc) {
1982
+ xmlTextReaderPtr reader;
1983
+ int ret;
1984
+
1985
+ #ifdef LIBXML_PATTERN_ENABLED
1986
+ xmlNodePtr root;
1987
+ const xmlChar *namespaces[22];
1988
+ int i;
1989
+ xmlNsPtr ns;
1990
+
1991
+ root = xmlDocGetRootElement(doc);
1992
+ for (ns = root->nsDef, i = 0;ns != NULL && i < 20;ns=ns->next) {
1993
+ namespaces[i++] = ns->href;
1994
+ namespaces[i++] = ns->prefix;
1995
+ }
1996
+ namespaces[i++] = NULL;
1997
+ namespaces[i] = NULL;
1998
+
1999
+ if (pattern != NULL) {
2000
+ patternc = xmlPatterncompile((const xmlChar *) pattern, doc->dict,
2001
+ 0, &namespaces[0]);
2002
+ if (patternc == NULL) {
2003
+ xmlGenericError(xmlGenericErrorContext,
2004
+ "Pattern %s failed to compile\n", pattern);
2005
+ progresult = XMLLINT_ERR_SCHEMAPAT;
2006
+ pattern = NULL;
2007
+ }
2008
+ }
2009
+ if (patternc != NULL) {
2010
+ patstream = xmlPatternGetStreamCtxt(patternc);
2011
+ if (patstream != NULL) {
2012
+ ret = xmlStreamPush(patstream, NULL, NULL);
2013
+ if (ret < 0) {
2014
+ fprintf(stderr, "xmlStreamPush() failure\n");
2015
+ xmlFreeStreamCtxt(patstream);
2016
+ patstream = NULL;
2017
+ }
2018
+ }
2019
+ }
2020
+ #endif /* LIBXML_PATTERN_ENABLED */
2021
+ reader = xmlReaderWalker(doc);
2022
+ if (reader != NULL) {
2023
+ if ((timing) && (!repeat)) {
2024
+ startTimer();
2025
+ }
2026
+ ret = xmlTextReaderRead(reader);
2027
+ while (ret == 1) {
2028
+ if ((debug)
2029
+ #ifdef LIBXML_PATTERN_ENABLED
2030
+ || (patternc)
2031
+ #endif
2032
+ )
2033
+ processNode(reader);
2034
+ ret = xmlTextReaderRead(reader);
2035
+ }
2036
+ if ((timing) && (!repeat)) {
2037
+ endTimer("walking through the doc");
2038
+ }
2039
+ xmlFreeTextReader(reader);
2040
+ if (ret != 0) {
2041
+ fprintf(stderr, "failed to walk through the doc\n");
2042
+ progresult = XMLLINT_ERR_UNCLASS;
2043
+ }
2044
+ } else {
2045
+ fprintf(stderr, "Failed to crate a reader from the document\n");
2046
+ progresult = XMLLINT_ERR_UNCLASS;
2047
+ }
2048
+ #ifdef LIBXML_PATTERN_ENABLED
2049
+ if (patstream != NULL) {
2050
+ xmlFreeStreamCtxt(patstream);
2051
+ patstream = NULL;
2052
+ }
2053
+ #endif
2054
+ }
2055
+ #endif /* LIBXML_READER_ENABLED */
2056
+
2057
+ #ifdef LIBXML_XPATH_ENABLED
2058
+ /************************************************************************
2059
+ * *
2060
+ * XPath Query *
2061
+ * *
2062
+ ************************************************************************/
2063
+
2064
+ static void doXPathDump(xmlXPathObjectPtr cur) {
2065
+ switch(cur->type) {
2066
+ case XPATH_NODESET: {
2067
+ int i;
2068
+ xmlNodePtr node;
2069
+ #ifdef LIBXML_OUTPUT_ENABLED
2070
+ xmlSaveCtxtPtr ctxt;
2071
+
2072
+ if (cur->nodesetval->nodeNr <= 0) {
2073
+ fprintf(stderr, "XPath set is empty\n");
2074
+ progresult = XMLLINT_ERR_XPATH;
2075
+ break;
2076
+ }
2077
+ ctxt = xmlSaveToFd(1, NULL, 0);
2078
+ if (ctxt == NULL) {
2079
+ fprintf(stderr, "Out of memory for XPath\n");
2080
+ progresult = XMLLINT_ERR_MEM;
2081
+ return;
2082
+ }
2083
+ for (i = 0;i < cur->nodesetval->nodeNr;i++) {
2084
+ node = cur->nodesetval->nodeTab[i];
2085
+ xmlSaveTree(ctxt, node);
2086
+ }
2087
+ xmlSaveClose(ctxt);
2088
+ #else
2089
+ printf("xpath returned %d nodes\n", cur->nodesetval->nodeNr);
2090
+ #endif
2091
+ break;
2092
+ }
2093
+ case XPATH_BOOLEAN:
2094
+ if (cur->boolval) printf("true");
2095
+ else printf("false");
2096
+ break;
2097
+ case XPATH_NUMBER:
2098
+ switch (xmlXPathIsInf(cur->floatval)) {
2099
+ case 1:
2100
+ printf("Infinity");
2101
+ break;
2102
+ case -1:
2103
+ printf("-Infinity");
2104
+ break;
2105
+ default:
2106
+ if (xmlXPathIsNaN(cur->floatval)) {
2107
+ printf("NaN");
2108
+ } else {
2109
+ printf("%0g", cur->floatval);
2110
+ }
2111
+ }
2112
+ break;
2113
+ case XPATH_STRING:
2114
+ printf("%s", (const char *) cur->stringval);
2115
+ break;
2116
+ case XPATH_UNDEFINED:
2117
+ fprintf(stderr, "XPath Object is uninitialized\n");
2118
+ progresult = XMLLINT_ERR_XPATH;
2119
+ break;
2120
+ default:
2121
+ fprintf(stderr, "XPath object of unexpected type\n");
2122
+ progresult = XMLLINT_ERR_XPATH;
2123
+ break;
2124
+ }
2125
+ }
2126
+
2127
+ static void doXPathQuery(xmlDocPtr doc, const char *query) {
2128
+ xmlXPathContextPtr ctxt;
2129
+ xmlXPathObjectPtr res;
2130
+
2131
+ ctxt = xmlXPathNewContext(doc);
2132
+ if (ctxt == NULL) {
2133
+ fprintf(stderr, "Out of memory for XPath\n");
2134
+ progresult = XMLLINT_ERR_MEM;
2135
+ return;
2136
+ }
2137
+ ctxt->node = xmlDocGetRootElement(doc);
2138
+ res = xmlXPathEval(BAD_CAST query, ctxt);
2139
+ xmlXPathFreeContext(ctxt);
2140
+
2141
+ if (res == NULL) {
2142
+ fprintf(stderr, "XPath evaluation failure\n");
2143
+ progresult = XMLLINT_ERR_XPATH;
2144
+ return;
2145
+ }
2146
+ doXPathDump(res);
2147
+ xmlXPathFreeObject(res);
2148
+ }
2149
+ #endif /* LIBXML_XPATH_ENABLED */
2150
+
2151
+ /************************************************************************
2152
+ * *
2153
+ * Tree Test processing *
2154
+ * *
2155
+ ************************************************************************/
2156
+ static void parseAndPrintFile(char *filename, xmlParserCtxtPtr rectxt) {
2157
+ xmlDocPtr doc = NULL;
2158
+ #ifdef LIBXML_TREE_ENABLED
2159
+ xmlDocPtr tmp;
2160
+ #endif /* LIBXML_TREE_ENABLED */
2161
+
2162
+ if ((timing) && (!repeat))
2163
+ startTimer();
2164
+
2165
+
2166
+ #ifdef LIBXML_TREE_ENABLED
2167
+ if (filename == NULL) {
2168
+ if (generate) {
2169
+ xmlNodePtr n;
2170
+
2171
+ doc = xmlNewDoc(BAD_CAST "1.0");
2172
+ n = xmlNewDocNode(doc, NULL, BAD_CAST "info", NULL);
2173
+ xmlNodeSetContent(n, BAD_CAST "abc");
2174
+ xmlDocSetRootElement(doc, n);
2175
+ }
2176
+ }
2177
+ #endif /* LIBXML_TREE_ENABLED */
2178
+ #ifdef LIBXML_HTML_ENABLED
2179
+ #ifdef LIBXML_PUSH_ENABLED
2180
+ else if ((html) && (push)) {
2181
+ FILE *f;
2182
+
2183
+ #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)
2184
+ f = fopen(filename, "rb");
2185
+ #else
2186
+ f = fopen(filename, "r");
2187
+ #endif
2188
+ if (f != NULL) {
2189
+ int res, size = 3;
2190
+ char chars[4096];
2191
+ htmlParserCtxtPtr ctxt;
2192
+
2193
+ /* if (repeat) */
2194
+ size = 4096;
2195
+ res = fread(chars, 1, 4, f);
2196
+ if (res > 0) {
2197
+ ctxt = htmlCreatePushParserCtxt(NULL, NULL,
2198
+ chars, res, filename, XML_CHAR_ENCODING_NONE);
2199
+ while ((res = fread(chars, 1, size, f)) > 0) {
2200
+ htmlParseChunk(ctxt, chars, res, 0);
2201
+ }
2202
+ htmlParseChunk(ctxt, chars, 0, 1);
2203
+ doc = ctxt->myDoc;
2204
+ htmlFreeParserCtxt(ctxt);
2205
+ }
2206
+ fclose(f);
2207
+ }
2208
+ }
2209
+ #endif /* LIBXML_PUSH_ENABLED */
2210
+ #ifdef HAVE_SYS_MMAN_H
2211
+ else if ((html) && (memory)) {
2212
+ int fd;
2213
+ struct stat info;
2214
+ const char *base;
2215
+ if (stat(filename, &info) < 0)
2216
+ return;
2217
+ if ((fd = open(filename, O_RDONLY)) < 0)
2218
+ return;
2219
+ base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
2220
+ if (base == (void *) MAP_FAILED)
2221
+ return;
2222
+
2223
+ doc = htmlReadMemory((char *) base, info.st_size, filename,
2224
+ NULL, options);
2225
+
2226
+ munmap((char *) base, info.st_size);
2227
+ close(fd);
2228
+ }
2229
+ #endif
2230
+ else if (html) {
2231
+ doc = htmlReadFile(filename, NULL, options);
2232
+ }
2233
+ #endif /* LIBXML_HTML_ENABLED */
2234
+ else {
2235
+ #ifdef LIBXML_PUSH_ENABLED
2236
+ /*
2237
+ * build an XML tree from a string;
2238
+ */
2239
+ if (push) {
2240
+ FILE *f;
2241
+
2242
+ /* '-' Usually means stdin -<sven@zen.org> */
2243
+ if ((filename[0] == '-') && (filename[1] == 0)) {
2244
+ f = stdin;
2245
+ } else {
2246
+ #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)
2247
+ f = fopen(filename, "rb");
2248
+ #else
2249
+ f = fopen(filename, "r");
2250
+ #endif
2251
+ }
2252
+ if (f != NULL) {
2253
+ int ret;
2254
+ int res, size = 1024;
2255
+ char chars[1024];
2256
+ xmlParserCtxtPtr ctxt;
2257
+
2258
+ /* if (repeat) size = 1024; */
2259
+ res = fread(chars, 1, 4, f);
2260
+ if (res > 0) {
2261
+ ctxt = xmlCreatePushParserCtxt(NULL, NULL,
2262
+ chars, res, filename);
2263
+ xmlCtxtUseOptions(ctxt, options);
2264
+ while ((res = fread(chars, 1, size, f)) > 0) {
2265
+ xmlParseChunk(ctxt, chars, res, 0);
2266
+ }
2267
+ xmlParseChunk(ctxt, chars, 0, 1);
2268
+ doc = ctxt->myDoc;
2269
+ ret = ctxt->wellFormed;
2270
+ xmlFreeParserCtxt(ctxt);
2271
+ if (!ret) {
2272
+ xmlFreeDoc(doc);
2273
+ doc = NULL;
2274
+ }
2275
+ }
2276
+ if (f != stdin)
2277
+ fclose(f);
2278
+ }
2279
+ } else
2280
+ #endif /* LIBXML_PUSH_ENABLED */
2281
+ if (testIO) {
2282
+ if ((filename[0] == '-') && (filename[1] == 0)) {
2283
+ doc = xmlReadFd(0, NULL, NULL, options);
2284
+ } else {
2285
+ FILE *f;
2286
+
2287
+ #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)
2288
+ f = fopen(filename, "rb");
2289
+ #else
2290
+ f = fopen(filename, "r");
2291
+ #endif
2292
+ if (f != NULL) {
2293
+ if (rectxt == NULL)
2294
+ doc = xmlReadIO((xmlInputReadCallback) myRead,
2295
+ (xmlInputCloseCallback) myClose, f,
2296
+ filename, NULL, options);
2297
+ else
2298
+ doc = xmlCtxtReadIO(rectxt,
2299
+ (xmlInputReadCallback) myRead,
2300
+ (xmlInputCloseCallback) myClose, f,
2301
+ filename, NULL, options);
2302
+ } else
2303
+ doc = NULL;
2304
+ }
2305
+ } else if (htmlout) {
2306
+ xmlParserCtxtPtr ctxt;
2307
+
2308
+ if (rectxt == NULL)
2309
+ ctxt = xmlNewParserCtxt();
2310
+ else
2311
+ ctxt = rectxt;
2312
+ if (ctxt == NULL) {
2313
+ doc = NULL;
2314
+ } else {
2315
+ ctxt->sax->error = xmlHTMLError;
2316
+ ctxt->sax->warning = xmlHTMLWarning;
2317
+ ctxt->vctxt.error = xmlHTMLValidityError;
2318
+ ctxt->vctxt.warning = xmlHTMLValidityWarning;
2319
+
2320
+ doc = xmlCtxtReadFile(ctxt, filename, NULL, options);
2321
+
2322
+ if (rectxt == NULL)
2323
+ xmlFreeParserCtxt(ctxt);
2324
+ }
2325
+ #ifdef HAVE_SYS_MMAN_H
2326
+ } else if (memory) {
2327
+ int fd;
2328
+ struct stat info;
2329
+ const char *base;
2330
+ if (stat(filename, &info) < 0)
2331
+ return;
2332
+ if ((fd = open(filename, O_RDONLY)) < 0)
2333
+ return;
2334
+ base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
2335
+ if (base == (void *) MAP_FAILED)
2336
+ return;
2337
+
2338
+ if (rectxt == NULL)
2339
+ doc = xmlReadMemory((char *) base, info.st_size,
2340
+ filename, NULL, options);
2341
+ else
2342
+ doc = xmlCtxtReadMemory(rectxt, (char *) base, info.st_size,
2343
+ filename, NULL, options);
2344
+
2345
+ munmap((char *) base, info.st_size);
2346
+ close(fd);
2347
+ #endif
2348
+ #ifdef LIBXML_VALID_ENABLED
2349
+ } else if (valid) {
2350
+ xmlParserCtxtPtr ctxt = NULL;
2351
+
2352
+ if (rectxt == NULL)
2353
+ ctxt = xmlNewParserCtxt();
2354
+ else
2355
+ ctxt = rectxt;
2356
+ if (ctxt == NULL) {
2357
+ doc = NULL;
2358
+ } else {
2359
+ doc = xmlCtxtReadFile(ctxt, filename, NULL, options);
2360
+
2361
+ if (ctxt->valid == 0)
2362
+ progresult = XMLLINT_ERR_RDFILE;
2363
+ if (rectxt == NULL)
2364
+ xmlFreeParserCtxt(ctxt);
2365
+ }
2366
+ #endif /* LIBXML_VALID_ENABLED */
2367
+ } else {
2368
+ if (rectxt != NULL)
2369
+ doc = xmlCtxtReadFile(rectxt, filename, NULL, options);
2370
+ else {
2371
+ #ifdef LIBXML_SAX1_ENABLED
2372
+ if (sax1)
2373
+ doc = xmlParseFile(filename);
2374
+ else
2375
+ #endif /* LIBXML_SAX1_ENABLED */
2376
+ doc = xmlReadFile(filename, NULL, options);
2377
+ }
2378
+ }
2379
+ }
2380
+
2381
+ /*
2382
+ * If we don't have a document we might as well give up. Do we
2383
+ * want an error message here? <sven@zen.org> */
2384
+ if (doc == NULL) {
2385
+ progresult = XMLLINT_ERR_UNCLASS;
2386
+ return;
2387
+ }
2388
+
2389
+ if ((timing) && (!repeat)) {
2390
+ endTimer("Parsing");
2391
+ }
2392
+
2393
+ /*
2394
+ * Remove DOCTYPE nodes
2395
+ */
2396
+ if (dropdtd) {
2397
+ xmlDtdPtr dtd;
2398
+
2399
+ dtd = xmlGetIntSubset(doc);
2400
+ if (dtd != NULL) {
2401
+ xmlUnlinkNode((xmlNodePtr)dtd);
2402
+ xmlFreeDtd(dtd);
2403
+ }
2404
+ }
2405
+
2406
+ #ifdef LIBXML_XINCLUDE_ENABLED
2407
+ if (xinclude) {
2408
+ if ((timing) && (!repeat)) {
2409
+ startTimer();
2410
+ }
2411
+ if (xmlXIncludeProcessFlags(doc, options) < 0)
2412
+ progresult = XMLLINT_ERR_UNCLASS;
2413
+ if ((timing) && (!repeat)) {
2414
+ endTimer("Xinclude processing");
2415
+ }
2416
+ }
2417
+ #endif
2418
+
2419
+ #ifdef LIBXML_XPATH_ENABLED
2420
+ if (xpathquery != NULL) {
2421
+ doXPathQuery(doc, xpathquery);
2422
+ }
2423
+ #endif
2424
+
2425
+ #ifdef LIBXML_DEBUG_ENABLED
2426
+ #ifdef LIBXML_XPATH_ENABLED
2427
+ /*
2428
+ * shell interaction
2429
+ */
2430
+ if (shell) {
2431
+ xmlXPathOrderDocElems(doc);
2432
+ xmlShell(doc, filename, xmlShellReadline, stdout);
2433
+ }
2434
+ #endif
2435
+ #endif
2436
+
2437
+ #ifdef LIBXML_TREE_ENABLED
2438
+ /*
2439
+ * test intermediate copy if needed.
2440
+ */
2441
+ if (copy) {
2442
+ tmp = doc;
2443
+ if (timing) {
2444
+ startTimer();
2445
+ }
2446
+ doc = xmlCopyDoc(doc, 1);
2447
+ if (timing) {
2448
+ endTimer("Copying");
2449
+ }
2450
+ if (timing) {
2451
+ startTimer();
2452
+ }
2453
+ xmlFreeDoc(tmp);
2454
+ if (timing) {
2455
+ endTimer("Freeing original");
2456
+ }
2457
+ }
2458
+ #endif /* LIBXML_TREE_ENABLED */
2459
+
2460
+ #ifdef LIBXML_VALID_ENABLED
2461
+ if ((insert) && (!html)) {
2462
+ const xmlChar* list[256];
2463
+ int nb, i;
2464
+ xmlNodePtr node;
2465
+
2466
+ if (doc->children != NULL) {
2467
+ node = doc->children;
2468
+ while ((node != NULL) && (node->last == NULL)) node = node->next;
2469
+ if (node != NULL) {
2470
+ nb = xmlValidGetValidElements(node->last, NULL, list, 256);
2471
+ if (nb < 0) {
2472
+ fprintf(stderr, "could not get valid list of elements\n");
2473
+ } else if (nb == 0) {
2474
+ fprintf(stderr, "No element can be inserted under root\n");
2475
+ } else {
2476
+ fprintf(stderr, "%d element types can be inserted under root:\n",
2477
+ nb);
2478
+ for (i = 0;i < nb;i++) {
2479
+ fprintf(stderr, "%s\n", (char *) list[i]);
2480
+ }
2481
+ }
2482
+ }
2483
+ }
2484
+ }else
2485
+ #endif /* LIBXML_VALID_ENABLED */
2486
+ #ifdef LIBXML_READER_ENABLED
2487
+ if (walker) {
2488
+ walkDoc(doc);
2489
+ }
2490
+ #endif /* LIBXML_READER_ENABLED */
2491
+ #ifdef LIBXML_OUTPUT_ENABLED
2492
+ if (noout == 0) {
2493
+ int ret;
2494
+
2495
+ /*
2496
+ * print it.
2497
+ */
2498
+ #ifdef LIBXML_DEBUG_ENABLED
2499
+ if (!debug) {
2500
+ #endif
2501
+ if ((timing) && (!repeat)) {
2502
+ startTimer();
2503
+ }
2504
+ #ifdef LIBXML_HTML_ENABLED
2505
+ if ((html) && (!xmlout)) {
2506
+ if (compress) {
2507
+ htmlSaveFile(output ? output : "-", doc);
2508
+ }
2509
+ else if (encoding != NULL) {
2510
+ if ( format ) {
2511
+ htmlSaveFileFormat(output ? output : "-", doc, encoding, 1);
2512
+ }
2513
+ else {
2514
+ htmlSaveFileFormat(output ? output : "-", doc, encoding, 0);
2515
+ }
2516
+ }
2517
+ else if (format) {
2518
+ htmlSaveFileFormat(output ? output : "-", doc, NULL, 1);
2519
+ }
2520
+ else {
2521
+ FILE *out;
2522
+ if (output == NULL)
2523
+ out = stdout;
2524
+ else {
2525
+ out = fopen(output,"wb");
2526
+ }
2527
+ if (out != NULL) {
2528
+ if (htmlDocDump(out, doc) < 0)
2529
+ progresult = XMLLINT_ERR_OUT;
2530
+
2531
+ if (output != NULL)
2532
+ fclose(out);
2533
+ } else {
2534
+ fprintf(stderr, "failed to open %s\n", output);
2535
+ progresult = XMLLINT_ERR_OUT;
2536
+ }
2537
+ }
2538
+ if ((timing) && (!repeat)) {
2539
+ endTimer("Saving");
2540
+ }
2541
+ } else
2542
+ #endif
2543
+ #ifdef LIBXML_C14N_ENABLED
2544
+ if (canonical) {
2545
+ xmlChar *result = NULL;
2546
+ int size;
2547
+
2548
+ size = xmlC14NDocDumpMemory(doc, NULL, XML_C14N_1_0, NULL, 1, &result);
2549
+ if (size >= 0) {
2550
+ write(1, result, size);
2551
+ xmlFree(result);
2552
+ } else {
2553
+ fprintf(stderr, "Failed to canonicalize\n");
2554
+ progresult = XMLLINT_ERR_OUT;
2555
+ }
2556
+ } else if (canonical) {
2557
+ xmlChar *result = NULL;
2558
+ int size;
2559
+
2560
+ size = xmlC14NDocDumpMemory(doc, NULL, XML_C14N_1_1, NULL, 1, &result);
2561
+ if (size >= 0) {
2562
+ write(1, result, size);
2563
+ xmlFree(result);
2564
+ } else {
2565
+ fprintf(stderr, "Failed to canonicalize\n");
2566
+ progresult = XMLLINT_ERR_OUT;
2567
+ }
2568
+ } else
2569
+ if (exc_canonical) {
2570
+ xmlChar *result = NULL;
2571
+ int size;
2572
+
2573
+ size = xmlC14NDocDumpMemory(doc, NULL, XML_C14N_EXCLUSIVE_1_0, NULL, 1, &result);
2574
+ if (size >= 0) {
2575
+ write(1, result, size);
2576
+ xmlFree(result);
2577
+ } else {
2578
+ fprintf(stderr, "Failed to canonicalize\n");
2579
+ progresult = XMLLINT_ERR_OUT;
2580
+ }
2581
+ } else
2582
+ #endif
2583
+ #ifdef HAVE_SYS_MMAN_H
2584
+ if (memory) {
2585
+ xmlChar *result;
2586
+ int len;
2587
+
2588
+ if (encoding != NULL) {
2589
+ if ( format ) {
2590
+ xmlDocDumpFormatMemoryEnc(doc, &result, &len, encoding, 1);
2591
+ } else {
2592
+ xmlDocDumpMemoryEnc(doc, &result, &len, encoding);
2593
+ }
2594
+ } else {
2595
+ if (format)
2596
+ xmlDocDumpFormatMemory(doc, &result, &len, 1);
2597
+ else
2598
+ xmlDocDumpMemory(doc, &result, &len);
2599
+ }
2600
+ if (result == NULL) {
2601
+ fprintf(stderr, "Failed to save\n");
2602
+ progresult = XMLLINT_ERR_OUT;
2603
+ } else {
2604
+ write(1, result, len);
2605
+ xmlFree(result);
2606
+ }
2607
+
2608
+ } else
2609
+ #endif /* HAVE_SYS_MMAN_H */
2610
+ if (compress) {
2611
+ xmlSaveFile(output ? output : "-", doc);
2612
+ } else if (oldout) {
2613
+ if (encoding != NULL) {
2614
+ if ( format ) {
2615
+ ret = xmlSaveFormatFileEnc(output ? output : "-", doc,
2616
+ encoding, 1);
2617
+ }
2618
+ else {
2619
+ ret = xmlSaveFileEnc(output ? output : "-", doc,
2620
+ encoding);
2621
+ }
2622
+ if (ret < 0) {
2623
+ fprintf(stderr, "failed save to %s\n",
2624
+ output ? output : "-");
2625
+ progresult = XMLLINT_ERR_OUT;
2626
+ }
2627
+ } else if (format) {
2628
+ ret = xmlSaveFormatFile(output ? output : "-", doc, 1);
2629
+ if (ret < 0) {
2630
+ fprintf(stderr, "failed save to %s\n",
2631
+ output ? output : "-");
2632
+ progresult = XMLLINT_ERR_OUT;
2633
+ }
2634
+ } else {
2635
+ FILE *out;
2636
+ if (output == NULL)
2637
+ out = stdout;
2638
+ else {
2639
+ out = fopen(output,"wb");
2640
+ }
2641
+ if (out != NULL) {
2642
+ if (xmlDocDump(out, doc) < 0)
2643
+ progresult = XMLLINT_ERR_OUT;
2644
+
2645
+ if (output != NULL)
2646
+ fclose(out);
2647
+ } else {
2648
+ fprintf(stderr, "failed to open %s\n", output);
2649
+ progresult = XMLLINT_ERR_OUT;
2650
+ }
2651
+ }
2652
+ } else {
2653
+ xmlSaveCtxtPtr ctxt;
2654
+ int saveOpts = 0;
2655
+
2656
+ if (format)
2657
+ saveOpts |= XML_SAVE_FORMAT;
2658
+
2659
+ #if defined(LIBXML_HTML_ENABLED) || defined(LIBXML_VALID_ENABLED)
2660
+ if (xmlout)
2661
+ saveOpts |= XML_SAVE_AS_XML;
2662
+ #endif
2663
+
2664
+ if (output == NULL)
2665
+ ctxt = xmlSaveToFd(1, encoding, saveOpts);
2666
+ else
2667
+ ctxt = xmlSaveToFilename(output, encoding, saveOpts);
2668
+
2669
+ if (ctxt != NULL) {
2670
+ if (xmlSaveDoc(ctxt, doc) < 0) {
2671
+ fprintf(stderr, "failed save to %s\n",
2672
+ output ? output : "-");
2673
+ progresult = XMLLINT_ERR_OUT;
2674
+ }
2675
+ xmlSaveClose(ctxt);
2676
+ } else {
2677
+ progresult = XMLLINT_ERR_OUT;
2678
+ }
2679
+ }
2680
+ if ((timing) && (!repeat)) {
2681
+ endTimer("Saving");
2682
+ }
2683
+ #ifdef LIBXML_DEBUG_ENABLED
2684
+ } else {
2685
+ FILE *out;
2686
+ if (output == NULL)
2687
+ out = stdout;
2688
+ else {
2689
+ out = fopen(output,"wb");
2690
+ }
2691
+ if (out != NULL) {
2692
+ xmlDebugDumpDocument(out, doc);
2693
+
2694
+ if (output != NULL)
2695
+ fclose(out);
2696
+ } else {
2697
+ fprintf(stderr, "failed to open %s\n", output);
2698
+ progresult = XMLLINT_ERR_OUT;
2699
+ }
2700
+ }
2701
+ #endif
2702
+ }
2703
+ #endif /* LIBXML_OUTPUT_ENABLED */
2704
+
2705
+ #ifdef LIBXML_VALID_ENABLED
2706
+ /*
2707
+ * A posteriori validation test
2708
+ */
2709
+ if ((dtdvalid != NULL) || (dtdvalidfpi != NULL)) {
2710
+ xmlDtdPtr dtd;
2711
+
2712
+ if ((timing) && (!repeat)) {
2713
+ startTimer();
2714
+ }
2715
+ if (dtdvalid != NULL)
2716
+ dtd = xmlParseDTD(NULL, (const xmlChar *)dtdvalid);
2717
+ else
2718
+ dtd = xmlParseDTD((const xmlChar *)dtdvalidfpi, NULL);
2719
+ if ((timing) && (!repeat)) {
2720
+ endTimer("Parsing DTD");
2721
+ }
2722
+ if (dtd == NULL) {
2723
+ if (dtdvalid != NULL)
2724
+ xmlGenericError(xmlGenericErrorContext,
2725
+ "Could not parse DTD %s\n", dtdvalid);
2726
+ else
2727
+ xmlGenericError(xmlGenericErrorContext,
2728
+ "Could not parse DTD %s\n", dtdvalidfpi);
2729
+ progresult = XMLLINT_ERR_DTD;
2730
+ } else {
2731
+ xmlValidCtxtPtr cvp;
2732
+
2733
+ if ((cvp = xmlNewValidCtxt()) == NULL) {
2734
+ xmlGenericError(xmlGenericErrorContext,
2735
+ "Couldn't allocate validation context\n");
2736
+ exit(-1);
2737
+ }
2738
+ cvp->userData = (void *) stderr;
2739
+ cvp->error = (xmlValidityErrorFunc) fprintf;
2740
+ cvp->warning = (xmlValidityWarningFunc) fprintf;
2741
+
2742
+ if ((timing) && (!repeat)) {
2743
+ startTimer();
2744
+ }
2745
+ if (!xmlValidateDtd(cvp, doc, dtd)) {
2746
+ if (dtdvalid != NULL)
2747
+ xmlGenericError(xmlGenericErrorContext,
2748
+ "Document %s does not validate against %s\n",
2749
+ filename, dtdvalid);
2750
+ else
2751
+ xmlGenericError(xmlGenericErrorContext,
2752
+ "Document %s does not validate against %s\n",
2753
+ filename, dtdvalidfpi);
2754
+ progresult = XMLLINT_ERR_VALID;
2755
+ }
2756
+ if ((timing) && (!repeat)) {
2757
+ endTimer("Validating against DTD");
2758
+ }
2759
+ xmlFreeValidCtxt(cvp);
2760
+ xmlFreeDtd(dtd);
2761
+ }
2762
+ } else if (postvalid) {
2763
+ xmlValidCtxtPtr cvp;
2764
+
2765
+ if ((cvp = xmlNewValidCtxt()) == NULL) {
2766
+ xmlGenericError(xmlGenericErrorContext,
2767
+ "Couldn't allocate validation context\n");
2768
+ exit(-1);
2769
+ }
2770
+
2771
+ if ((timing) && (!repeat)) {
2772
+ startTimer();
2773
+ }
2774
+ cvp->userData = (void *) stderr;
2775
+ cvp->error = (xmlValidityErrorFunc) fprintf;
2776
+ cvp->warning = (xmlValidityWarningFunc) fprintf;
2777
+ if (!xmlValidateDocument(cvp, doc)) {
2778
+ xmlGenericError(xmlGenericErrorContext,
2779
+ "Document %s does not validate\n", filename);
2780
+ progresult = XMLLINT_ERR_VALID;
2781
+ }
2782
+ if ((timing) && (!repeat)) {
2783
+ endTimer("Validating");
2784
+ }
2785
+ xmlFreeValidCtxt(cvp);
2786
+ }
2787
+ #endif /* LIBXML_VALID_ENABLED */
2788
+ #ifdef LIBXML_SCHEMATRON_ENABLED
2789
+ if (wxschematron != NULL) {
2790
+ xmlSchematronValidCtxtPtr ctxt;
2791
+ int ret;
2792
+ int flag;
2793
+
2794
+ if ((timing) && (!repeat)) {
2795
+ startTimer();
2796
+ }
2797
+
2798
+ if (debug)
2799
+ flag = XML_SCHEMATRON_OUT_XML;
2800
+ else
2801
+ flag = XML_SCHEMATRON_OUT_TEXT;
2802
+ if (noout)
2803
+ flag |= XML_SCHEMATRON_OUT_QUIET;
2804
+ ctxt = xmlSchematronNewValidCtxt(wxschematron, flag);
2805
+ #if 0
2806
+ xmlSchematronSetValidErrors(ctxt,
2807
+ (xmlSchematronValidityErrorFunc) fprintf,
2808
+ (xmlSchematronValidityWarningFunc) fprintf,
2809
+ stderr);
2810
+ #endif
2811
+ ret = xmlSchematronValidateDoc(ctxt, doc);
2812
+ if (ret == 0) {
2813
+ fprintf(stderr, "%s validates\n", filename);
2814
+ } else if (ret > 0) {
2815
+ fprintf(stderr, "%s fails to validate\n", filename);
2816
+ progresult = XMLLINT_ERR_VALID;
2817
+ } else {
2818
+ fprintf(stderr, "%s validation generated an internal error\n",
2819
+ filename);
2820
+ progresult = XMLLINT_ERR_VALID;
2821
+ }
2822
+ xmlSchematronFreeValidCtxt(ctxt);
2823
+ if ((timing) && (!repeat)) {
2824
+ endTimer("Validating");
2825
+ }
2826
+ }
2827
+ #endif
2828
+ #ifdef LIBXML_SCHEMAS_ENABLED
2829
+ if (relaxngschemas != NULL) {
2830
+ xmlRelaxNGValidCtxtPtr ctxt;
2831
+ int ret;
2832
+
2833
+ if ((timing) && (!repeat)) {
2834
+ startTimer();
2835
+ }
2836
+
2837
+ ctxt = xmlRelaxNGNewValidCtxt(relaxngschemas);
2838
+ xmlRelaxNGSetValidErrors(ctxt,
2839
+ (xmlRelaxNGValidityErrorFunc) fprintf,
2840
+ (xmlRelaxNGValidityWarningFunc) fprintf,
2841
+ stderr);
2842
+ ret = xmlRelaxNGValidateDoc(ctxt, doc);
2843
+ if (ret == 0) {
2844
+ fprintf(stderr, "%s validates\n", filename);
2845
+ } else if (ret > 0) {
2846
+ fprintf(stderr, "%s fails to validate\n", filename);
2847
+ progresult = XMLLINT_ERR_VALID;
2848
+ } else {
2849
+ fprintf(stderr, "%s validation generated an internal error\n",
2850
+ filename);
2851
+ progresult = XMLLINT_ERR_VALID;
2852
+ }
2853
+ xmlRelaxNGFreeValidCtxt(ctxt);
2854
+ if ((timing) && (!repeat)) {
2855
+ endTimer("Validating");
2856
+ }
2857
+ } else if (wxschemas != NULL) {
2858
+ xmlSchemaValidCtxtPtr ctxt;
2859
+ int ret;
2860
+
2861
+ if ((timing) && (!repeat)) {
2862
+ startTimer();
2863
+ }
2864
+
2865
+ ctxt = xmlSchemaNewValidCtxt(wxschemas);
2866
+ xmlSchemaSetValidErrors(ctxt,
2867
+ (xmlSchemaValidityErrorFunc) fprintf,
2868
+ (xmlSchemaValidityWarningFunc) fprintf,
2869
+ stderr);
2870
+ ret = xmlSchemaValidateDoc(ctxt, doc);
2871
+ if (ret == 0) {
2872
+ fprintf(stderr, "%s validates\n", filename);
2873
+ } else if (ret > 0) {
2874
+ fprintf(stderr, "%s fails to validate\n", filename);
2875
+ progresult = XMLLINT_ERR_VALID;
2876
+ } else {
2877
+ fprintf(stderr, "%s validation generated an internal error\n",
2878
+ filename);
2879
+ progresult = XMLLINT_ERR_VALID;
2880
+ }
2881
+ xmlSchemaFreeValidCtxt(ctxt);
2882
+ if ((timing) && (!repeat)) {
2883
+ endTimer("Validating");
2884
+ }
2885
+ }
2886
+ #endif
2887
+
2888
+ #ifdef LIBXML_DEBUG_ENABLED
2889
+ #if defined(LIBXML_HTML_ENABLED) || defined(LIBXML_VALID_ENABLED)
2890
+ if ((debugent) && (!html))
2891
+ xmlDebugDumpEntities(stderr, doc);
2892
+ #endif
2893
+ #endif
2894
+
2895
+ /*
2896
+ * free it.
2897
+ */
2898
+ if ((timing) && (!repeat)) {
2899
+ startTimer();
2900
+ }
2901
+ xmlFreeDoc(doc);
2902
+ if ((timing) && (!repeat)) {
2903
+ endTimer("Freeing");
2904
+ }
2905
+ }
2906
+
2907
+ /************************************************************************
2908
+ * *
2909
+ * Usage and Main *
2910
+ * *
2911
+ ************************************************************************/
2912
+
2913
+ static void showVersion(const char *name) {
2914
+ fprintf(stderr, "%s: using libxml version %s\n", name, xmlParserVersion);
2915
+ fprintf(stderr, " compiled with: ");
2916
+ if (xmlHasFeature(XML_WITH_THREAD)) fprintf(stderr, "Threads ");
2917
+ if (xmlHasFeature(XML_WITH_TREE)) fprintf(stderr, "Tree ");
2918
+ if (xmlHasFeature(XML_WITH_OUTPUT)) fprintf(stderr, "Output ");
2919
+ if (xmlHasFeature(XML_WITH_PUSH)) fprintf(stderr, "Push ");
2920
+ if (xmlHasFeature(XML_WITH_READER)) fprintf(stderr, "Reader ");
2921
+ if (xmlHasFeature(XML_WITH_PATTERN)) fprintf(stderr, "Patterns ");
2922
+ if (xmlHasFeature(XML_WITH_WRITER)) fprintf(stderr, "Writer ");
2923
+ if (xmlHasFeature(XML_WITH_SAX1)) fprintf(stderr, "SAXv1 ");
2924
+ if (xmlHasFeature(XML_WITH_FTP)) fprintf(stderr, "FTP ");
2925
+ if (xmlHasFeature(XML_WITH_HTTP)) fprintf(stderr, "HTTP ");
2926
+ if (xmlHasFeature(XML_WITH_VALID)) fprintf(stderr, "DTDValid ");
2927
+ if (xmlHasFeature(XML_WITH_HTML)) fprintf(stderr, "HTML ");
2928
+ if (xmlHasFeature(XML_WITH_LEGACY)) fprintf(stderr, "Legacy ");
2929
+ if (xmlHasFeature(XML_WITH_C14N)) fprintf(stderr, "C14N ");
2930
+ if (xmlHasFeature(XML_WITH_CATALOG)) fprintf(stderr, "Catalog ");
2931
+ if (xmlHasFeature(XML_WITH_XPATH)) fprintf(stderr, "XPath ");
2932
+ if (xmlHasFeature(XML_WITH_XPTR)) fprintf(stderr, "XPointer ");
2933
+ if (xmlHasFeature(XML_WITH_XINCLUDE)) fprintf(stderr, "XInclude ");
2934
+ if (xmlHasFeature(XML_WITH_ICONV)) fprintf(stderr, "Iconv ");
2935
+ if (xmlHasFeature(XML_WITH_ISO8859X)) fprintf(stderr, "ISO8859X ");
2936
+ if (xmlHasFeature(XML_WITH_UNICODE)) fprintf(stderr, "Unicode ");
2937
+ if (xmlHasFeature(XML_WITH_REGEXP)) fprintf(stderr, "Regexps ");
2938
+ if (xmlHasFeature(XML_WITH_AUTOMATA)) fprintf(stderr, "Automata ");
2939
+ if (xmlHasFeature(XML_WITH_EXPR)) fprintf(stderr, "Expr ");
2940
+ if (xmlHasFeature(XML_WITH_SCHEMAS)) fprintf(stderr, "Schemas ");
2941
+ if (xmlHasFeature(XML_WITH_SCHEMATRON)) fprintf(stderr, "Schematron ");
2942
+ if (xmlHasFeature(XML_WITH_MODULES)) fprintf(stderr, "Modules ");
2943
+ if (xmlHasFeature(XML_WITH_DEBUG)) fprintf(stderr, "Debug ");
2944
+ if (xmlHasFeature(XML_WITH_DEBUG_MEM)) fprintf(stderr, "MemDebug ");
2945
+ if (xmlHasFeature(XML_WITH_DEBUG_RUN)) fprintf(stderr, "RunDebug ");
2946
+ if (xmlHasFeature(XML_WITH_ZLIB)) fprintf(stderr, "Zlib ");
2947
+ fprintf(stderr, "\n");
2948
+ }
2949
+
2950
+ static void usage(const char *name) {
2951
+ printf("Usage : %s [options] XMLfiles ...\n", name);
2952
+ #ifdef LIBXML_OUTPUT_ENABLED
2953
+ printf("\tParse the XML files and output the result of the parsing\n");
2954
+ #else
2955
+ printf("\tParse the XML files\n");
2956
+ #endif /* LIBXML_OUTPUT_ENABLED */
2957
+ printf("\t--version : display the version of the XML library used\n");
2958
+ #ifdef LIBXML_DEBUG_ENABLED
2959
+ printf("\t--debug : dump a debug tree of the in-memory document\n");
2960
+ printf("\t--shell : run a navigating shell\n");
2961
+ printf("\t--debugent : debug the entities defined in the document\n");
2962
+ #else
2963
+ #ifdef LIBXML_READER_ENABLED
2964
+ printf("\t--debug : dump the nodes content when using --stream\n");
2965
+ #endif /* LIBXML_READER_ENABLED */
2966
+ #endif
2967
+ #ifdef LIBXML_TREE_ENABLED
2968
+ printf("\t--copy : used to test the internal copy implementation\n");
2969
+ #endif /* LIBXML_TREE_ENABLED */
2970
+ printf("\t--recover : output what was parsable on broken XML documents\n");
2971
+ printf("\t--huge : remove any internal arbitrary parser limits\n");
2972
+ printf("\t--noent : substitute entity references by their value\n");
2973
+ printf("\t--noout : don't output the result tree\n");
2974
+ printf("\t--path 'paths': provide a set of paths for resources\n");
2975
+ printf("\t--load-trace : print trace of all external entites loaded\n");
2976
+ printf("\t--nonet : refuse to fetch DTDs or entities over network\n");
2977
+ printf("\t--nocompact : do not generate compact text nodes\n");
2978
+ printf("\t--htmlout : output results as HTML\n");
2979
+ printf("\t--nowrap : do not put HTML doc wrapper\n");
2980
+ #ifdef LIBXML_VALID_ENABLED
2981
+ printf("\t--valid : validate the document in addition to std well-formed check\n");
2982
+ printf("\t--postvalid : do a posteriori validation, i.e after parsing\n");
2983
+ printf("\t--dtdvalid URL : do a posteriori validation against a given DTD\n");
2984
+ printf("\t--dtdvalidfpi FPI : same but name the DTD with a Public Identifier\n");
2985
+ #endif /* LIBXML_VALID_ENABLED */
2986
+ printf("\t--timing : print some timings\n");
2987
+ printf("\t--output file or -o file: save to a given file\n");
2988
+ printf("\t--repeat : repeat 100 times, for timing or profiling\n");
2989
+ printf("\t--insert : ad-hoc test for valid insertions\n");
2990
+ #ifdef LIBXML_OUTPUT_ENABLED
2991
+ #ifdef HAVE_ZLIB_H
2992
+ printf("\t--compress : turn on gzip compression of output\n");
2993
+ #endif
2994
+ #endif /* LIBXML_OUTPUT_ENABLED */
2995
+ #ifdef LIBXML_HTML_ENABLED
2996
+ printf("\t--html : use the HTML parser\n");
2997
+ printf("\t--xmlout : force to use the XML serializer when using --html\n");
2998
+ #endif
2999
+ #ifdef LIBXML_PUSH_ENABLED
3000
+ printf("\t--push : use the push mode of the parser\n");
3001
+ #endif /* LIBXML_PUSH_ENABLED */
3002
+ #ifdef HAVE_SYS_MMAN_H
3003
+ printf("\t--memory : parse from memory\n");
3004
+ #endif
3005
+ printf("\t--maxmem nbbytes : limits memory allocation to nbbytes bytes\n");
3006
+ printf("\t--nowarning : do not emit warnings from parser/validator\n");
3007
+ printf("\t--noblanks : drop (ignorable?) blanks spaces\n");
3008
+ printf("\t--nocdata : replace cdata section with text nodes\n");
3009
+ #ifdef LIBXML_OUTPUT_ENABLED
3010
+ printf("\t--format : reformat/reindent the input\n");
3011
+ printf("\t--encode encoding : output in the given encoding\n");
3012
+ printf("\t--dropdtd : remove the DOCTYPE of the input docs\n");
3013
+ #endif /* LIBXML_OUTPUT_ENABLED */
3014
+ printf("\t--c14n : save in W3C canonical format v1.0 (with comments)\n");
3015
+ printf("\t--c14n11 : save in W3C canonical format v1.1 (with comments)\n");
3016
+ printf("\t--exc-c14n : save in W3C exclusive canonical format (with comments)\n");
3017
+ #ifdef LIBXML_C14N_ENABLED
3018
+ #endif /* LIBXML_C14N_ENABLED */
3019
+ printf("\t--nsclean : remove redundant namespace declarations\n");
3020
+ printf("\t--testIO : test user I/O support\n");
3021
+ #ifdef LIBXML_CATALOG_ENABLED
3022
+ printf("\t--catalogs : use SGML catalogs from $SGML_CATALOG_FILES\n");
3023
+ printf("\t otherwise XML Catalogs starting from \n");
3024
+ printf("\t %s are activated by default\n", XML_XML_DEFAULT_CATALOG);
3025
+ printf("\t--nocatalogs: deactivate all catalogs\n");
3026
+ #endif
3027
+ printf("\t--auto : generate a small doc on the fly\n");
3028
+ #ifdef LIBXML_XINCLUDE_ENABLED
3029
+ printf("\t--xinclude : do XInclude processing\n");
3030
+ printf("\t--noxincludenode : same but do not generate XInclude nodes\n");
3031
+ printf("\t--nofixup-base-uris : do not fixup xml:base uris\n");
3032
+ #endif
3033
+ printf("\t--loaddtd : fetch external DTD\n");
3034
+ printf("\t--dtdattr : loaddtd + populate the tree with inherited attributes \n");
3035
+ #ifdef LIBXML_READER_ENABLED
3036
+ printf("\t--stream : use the streaming interface to process very large files\n");
3037
+ printf("\t--walker : create a reader and walk though the resulting doc\n");
3038
+ #endif /* LIBXML_READER_ENABLED */
3039
+ #ifdef LIBXML_PATTERN_ENABLED
3040
+ printf("\t--pattern pattern_value : test the pattern support\n");
3041
+ #endif
3042
+ printf("\t--chkregister : verify the node registration code\n");
3043
+ #ifdef LIBXML_SCHEMAS_ENABLED
3044
+ printf("\t--relaxng schema : do RelaxNG validation against the schema\n");
3045
+ printf("\t--schema schema : do validation against the WXS schema\n");
3046
+ #endif
3047
+ #ifdef LIBXML_SCHEMATRON_ENABLED
3048
+ printf("\t--schematron schema : do validation against a schematron\n");
3049
+ #endif
3050
+ #ifdef LIBXML_SAX1_ENABLED
3051
+ printf("\t--sax1: use the old SAX1 interfaces for processing\n");
3052
+ #endif
3053
+ printf("\t--sax: do not build a tree but work just at the SAX level\n");
3054
+ printf("\t--oldxml10: use XML-1.0 parsing rules before the 5th edition\n");
3055
+ #ifdef LIBXML_XPATH_ENABLED
3056
+ printf("\t--xpath expr: evaluate the XPath expression, inply --noout\n");
3057
+ #endif
3058
+
3059
+ printf("\nLibxml project home page: http://xmlsoft.org/\n");
3060
+ printf("To report bugs or get some help check: http://xmlsoft.org/bugs.html\n");
3061
+ }
3062
+
3063
+ static void registerNode(xmlNodePtr node)
3064
+ {
3065
+ node->_private = malloc(sizeof(long));
3066
+ *(long*)node->_private = (long) 0x81726354;
3067
+ nbregister++;
3068
+ }
3069
+
3070
+ static void deregisterNode(xmlNodePtr node)
3071
+ {
3072
+ assert(node->_private != NULL);
3073
+ assert(*(long*)node->_private == (long) 0x81726354);
3074
+ free(node->_private);
3075
+ nbregister--;
3076
+ }
3077
+
3078
+ int
3079
+ main(int argc, char **argv) {
3080
+ int i, acount;
3081
+ int files = 0;
3082
+ int version = 0;
3083
+ const char* indent;
3084
+
3085
+ if (argc <= 1) {
3086
+ usage(argv[0]);
3087
+ return(1);
3088
+ }
3089
+ LIBXML_TEST_VERSION
3090
+ for (i = 1; i < argc ; i++) {
3091
+ if (!strcmp(argv[i], "-"))
3092
+ break;
3093
+
3094
+ if (argv[i][0] != '-')
3095
+ continue;
3096
+ if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
3097
+ debug++;
3098
+ else
3099
+ #ifdef LIBXML_DEBUG_ENABLED
3100
+ if ((!strcmp(argv[i], "-shell")) ||
3101
+ (!strcmp(argv[i], "--shell"))) {
3102
+ shell++;
3103
+ noout = 1;
3104
+ } else
3105
+ #endif
3106
+ #ifdef LIBXML_TREE_ENABLED
3107
+ if ((!strcmp(argv[i], "-copy")) || (!strcmp(argv[i], "--copy")))
3108
+ copy++;
3109
+ else
3110
+ #endif /* LIBXML_TREE_ENABLED */
3111
+ if ((!strcmp(argv[i], "-recover")) ||
3112
+ (!strcmp(argv[i], "--recover"))) {
3113
+ recovery++;
3114
+ options |= XML_PARSE_RECOVER;
3115
+ } else if ((!strcmp(argv[i], "-huge")) ||
3116
+ (!strcmp(argv[i], "--huge"))) {
3117
+ options |= XML_PARSE_HUGE;
3118
+ } else if ((!strcmp(argv[i], "-noent")) ||
3119
+ (!strcmp(argv[i], "--noent"))) {
3120
+ noent++;
3121
+ options |= XML_PARSE_NOENT;
3122
+ } else if ((!strcmp(argv[i], "-nsclean")) ||
3123
+ (!strcmp(argv[i], "--nsclean"))) {
3124
+ options |= XML_PARSE_NSCLEAN;
3125
+ } else if ((!strcmp(argv[i], "-nocdata")) ||
3126
+ (!strcmp(argv[i], "--nocdata"))) {
3127
+ options |= XML_PARSE_NOCDATA;
3128
+ } else if ((!strcmp(argv[i], "-nodict")) ||
3129
+ (!strcmp(argv[i], "--nodict"))) {
3130
+ options |= XML_PARSE_NODICT;
3131
+ } else if ((!strcmp(argv[i], "-version")) ||
3132
+ (!strcmp(argv[i], "--version"))) {
3133
+ showVersion(argv[0]);
3134
+ version = 1;
3135
+ } else if ((!strcmp(argv[i], "-noout")) ||
3136
+ (!strcmp(argv[i], "--noout")))
3137
+ noout++;
3138
+ #ifdef LIBXML_OUTPUT_ENABLED
3139
+ else if ((!strcmp(argv[i], "-o")) ||
3140
+ (!strcmp(argv[i], "-output")) ||
3141
+ (!strcmp(argv[i], "--output"))) {
3142
+ i++;
3143
+ output = argv[i];
3144
+ }
3145
+ #endif /* LIBXML_OUTPUT_ENABLED */
3146
+ else if ((!strcmp(argv[i], "-htmlout")) ||
3147
+ (!strcmp(argv[i], "--htmlout")))
3148
+ htmlout++;
3149
+ else if ((!strcmp(argv[i], "-nowrap")) ||
3150
+ (!strcmp(argv[i], "--nowrap")))
3151
+ nowrap++;
3152
+ #ifdef LIBXML_HTML_ENABLED
3153
+ else if ((!strcmp(argv[i], "-html")) ||
3154
+ (!strcmp(argv[i], "--html"))) {
3155
+ html++;
3156
+ }
3157
+ else if ((!strcmp(argv[i], "-xmlout")) ||
3158
+ (!strcmp(argv[i], "--xmlout"))) {
3159
+ xmlout++;
3160
+ }
3161
+ #endif /* LIBXML_HTML_ENABLED */
3162
+ else if ((!strcmp(argv[i], "-loaddtd")) ||
3163
+ (!strcmp(argv[i], "--loaddtd"))) {
3164
+ loaddtd++;
3165
+ options |= XML_PARSE_DTDLOAD;
3166
+ } else if ((!strcmp(argv[i], "-dtdattr")) ||
3167
+ (!strcmp(argv[i], "--dtdattr"))) {
3168
+ loaddtd++;
3169
+ dtdattrs++;
3170
+ options |= XML_PARSE_DTDATTR;
3171
+ }
3172
+ #ifdef LIBXML_VALID_ENABLED
3173
+ else if ((!strcmp(argv[i], "-valid")) ||
3174
+ (!strcmp(argv[i], "--valid"))) {
3175
+ valid++;
3176
+ options |= XML_PARSE_DTDVALID;
3177
+ } else if ((!strcmp(argv[i], "-postvalid")) ||
3178
+ (!strcmp(argv[i], "--postvalid"))) {
3179
+ postvalid++;
3180
+ loaddtd++;
3181
+ options |= XML_PARSE_DTDLOAD;
3182
+ } else if ((!strcmp(argv[i], "-dtdvalid")) ||
3183
+ (!strcmp(argv[i], "--dtdvalid"))) {
3184
+ i++;
3185
+ dtdvalid = argv[i];
3186
+ loaddtd++;
3187
+ options |= XML_PARSE_DTDLOAD;
3188
+ } else if ((!strcmp(argv[i], "-dtdvalidfpi")) ||
3189
+ (!strcmp(argv[i], "--dtdvalidfpi"))) {
3190
+ i++;
3191
+ dtdvalidfpi = argv[i];
3192
+ loaddtd++;
3193
+ options |= XML_PARSE_DTDLOAD;
3194
+ }
3195
+ #endif /* LIBXML_VALID_ENABLED */
3196
+ else if ((!strcmp(argv[i], "-dropdtd")) ||
3197
+ (!strcmp(argv[i], "--dropdtd")))
3198
+ dropdtd++;
3199
+ else if ((!strcmp(argv[i], "-insert")) ||
3200
+ (!strcmp(argv[i], "--insert")))
3201
+ insert++;
3202
+ else if ((!strcmp(argv[i], "-timing")) ||
3203
+ (!strcmp(argv[i], "--timing")))
3204
+ timing++;
3205
+ else if ((!strcmp(argv[i], "-auto")) ||
3206
+ (!strcmp(argv[i], "--auto")))
3207
+ generate++;
3208
+ else if ((!strcmp(argv[i], "-repeat")) ||
3209
+ (!strcmp(argv[i], "--repeat"))) {
3210
+ if (repeat)
3211
+ repeat *= 10;
3212
+ else
3213
+ repeat = 100;
3214
+ }
3215
+ #ifdef LIBXML_PUSH_ENABLED
3216
+ else if ((!strcmp(argv[i], "-push")) ||
3217
+ (!strcmp(argv[i], "--push")))
3218
+ push++;
3219
+ #endif /* LIBXML_PUSH_ENABLED */
3220
+ #ifdef HAVE_SYS_MMAN_H
3221
+ else if ((!strcmp(argv[i], "-memory")) ||
3222
+ (!strcmp(argv[i], "--memory")))
3223
+ memory++;
3224
+ #endif
3225
+ else if ((!strcmp(argv[i], "-testIO")) ||
3226
+ (!strcmp(argv[i], "--testIO")))
3227
+ testIO++;
3228
+ #ifdef LIBXML_XINCLUDE_ENABLED
3229
+ else if ((!strcmp(argv[i], "-xinclude")) ||
3230
+ (!strcmp(argv[i], "--xinclude"))) {
3231
+ xinclude++;
3232
+ options |= XML_PARSE_XINCLUDE;
3233
+ }
3234
+ else if ((!strcmp(argv[i], "-noxincludenode")) ||
3235
+ (!strcmp(argv[i], "--noxincludenode"))) {
3236
+ xinclude++;
3237
+ options |= XML_PARSE_XINCLUDE;
3238
+ options |= XML_PARSE_NOXINCNODE;
3239
+ }
3240
+ else if ((!strcmp(argv[i], "-nofixup-base-uris")) ||
3241
+ (!strcmp(argv[i], "--nofixup-base-uris"))) {
3242
+ xinclude++;
3243
+ options |= XML_PARSE_XINCLUDE;
3244
+ options |= XML_PARSE_NOBASEFIX;
3245
+ }
3246
+ #endif
3247
+ #ifdef LIBXML_OUTPUT_ENABLED
3248
+ #ifdef HAVE_ZLIB_H
3249
+ else if ((!strcmp(argv[i], "-compress")) ||
3250
+ (!strcmp(argv[i], "--compress"))) {
3251
+ compress++;
3252
+ xmlSetCompressMode(9);
3253
+ }
3254
+ #endif
3255
+ #endif /* LIBXML_OUTPUT_ENABLED */
3256
+ else if ((!strcmp(argv[i], "-nowarning")) ||
3257
+ (!strcmp(argv[i], "--nowarning"))) {
3258
+ xmlGetWarningsDefaultValue = 0;
3259
+ xmlPedanticParserDefault(0);
3260
+ options |= XML_PARSE_NOWARNING;
3261
+ }
3262
+ else if ((!strcmp(argv[i], "-pedantic")) ||
3263
+ (!strcmp(argv[i], "--pedantic"))) {
3264
+ xmlGetWarningsDefaultValue = 1;
3265
+ xmlPedanticParserDefault(1);
3266
+ options |= XML_PARSE_PEDANTIC;
3267
+ }
3268
+ #ifdef LIBXML_DEBUG_ENABLED
3269
+ else if ((!strcmp(argv[i], "-debugent")) ||
3270
+ (!strcmp(argv[i], "--debugent"))) {
3271
+ debugent++;
3272
+ xmlParserDebugEntities = 1;
3273
+ }
3274
+ #endif
3275
+ #ifdef LIBXML_C14N_ENABLED
3276
+ else if ((!strcmp(argv[i], "-c14n")) ||
3277
+ (!strcmp(argv[i], "--c14n"))) {
3278
+ canonical++;
3279
+ options |= XML_PARSE_NOENT | XML_PARSE_DTDATTR | XML_PARSE_DTDLOAD;
3280
+ }
3281
+ else if ((!strcmp(argv[i], "-c14n11")) ||
3282
+ (!strcmp(argv[i], "--c14n11"))) {
3283
+ canonical_11++;
3284
+ options |= XML_PARSE_NOENT | XML_PARSE_DTDATTR | XML_PARSE_DTDLOAD;
3285
+ }
3286
+ else if ((!strcmp(argv[i], "-exc-c14n")) ||
3287
+ (!strcmp(argv[i], "--exc-c14n"))) {
3288
+ exc_canonical++;
3289
+ options |= XML_PARSE_NOENT | XML_PARSE_DTDATTR | XML_PARSE_DTDLOAD;
3290
+ }
3291
+ #endif
3292
+ #ifdef LIBXML_CATALOG_ENABLED
3293
+ else if ((!strcmp(argv[i], "-catalogs")) ||
3294
+ (!strcmp(argv[i], "--catalogs"))) {
3295
+ catalogs++;
3296
+ } else if ((!strcmp(argv[i], "-nocatalogs")) ||
3297
+ (!strcmp(argv[i], "--nocatalogs"))) {
3298
+ nocatalogs++;
3299
+ }
3300
+ #endif
3301
+ else if ((!strcmp(argv[i], "-encode")) ||
3302
+ (!strcmp(argv[i], "--encode"))) {
3303
+ i++;
3304
+ encoding = argv[i];
3305
+ /*
3306
+ * OK it's for testing purposes
3307
+ */
3308
+ xmlAddEncodingAlias("UTF-8", "DVEnc");
3309
+ }
3310
+ else if ((!strcmp(argv[i], "-noblanks")) ||
3311
+ (!strcmp(argv[i], "--noblanks"))) {
3312
+ noblanks++;
3313
+ xmlKeepBlanksDefault(0);
3314
+ }
3315
+ else if ((!strcmp(argv[i], "-maxmem")) ||
3316
+ (!strcmp(argv[i], "--maxmem"))) {
3317
+ i++;
3318
+ if (sscanf(argv[i], "%d", &maxmem) == 1) {
3319
+ xmlMemSetup(myFreeFunc, myMallocFunc, myReallocFunc,
3320
+ myStrdupFunc);
3321
+ } else {
3322
+ maxmem = 0;
3323
+ }
3324
+ }
3325
+ else if ((!strcmp(argv[i], "-format")) ||
3326
+ (!strcmp(argv[i], "--format"))) {
3327
+ noblanks++;
3328
+ #ifdef LIBXML_OUTPUT_ENABLED
3329
+ format++;
3330
+ #endif /* LIBXML_OUTPUT_ENABLED */
3331
+ xmlKeepBlanksDefault(0);
3332
+ }
3333
+ #ifdef LIBXML_READER_ENABLED
3334
+ else if ((!strcmp(argv[i], "-stream")) ||
3335
+ (!strcmp(argv[i], "--stream"))) {
3336
+ stream++;
3337
+ }
3338
+ else if ((!strcmp(argv[i], "-walker")) ||
3339
+ (!strcmp(argv[i], "--walker"))) {
3340
+ walker++;
3341
+ noout++;
3342
+ }
3343
+ #endif /* LIBXML_READER_ENABLED */
3344
+ #ifdef LIBXML_SAX1_ENABLED
3345
+ else if ((!strcmp(argv[i], "-sax1")) ||
3346
+ (!strcmp(argv[i], "--sax1"))) {
3347
+ sax1++;
3348
+ options |= XML_PARSE_SAX1;
3349
+ }
3350
+ #endif /* LIBXML_SAX1_ENABLED */
3351
+ else if ((!strcmp(argv[i], "-sax")) ||
3352
+ (!strcmp(argv[i], "--sax"))) {
3353
+ sax++;
3354
+ }
3355
+ else if ((!strcmp(argv[i], "-chkregister")) ||
3356
+ (!strcmp(argv[i], "--chkregister"))) {
3357
+ chkregister++;
3358
+ #ifdef LIBXML_SCHEMAS_ENABLED
3359
+ } else if ((!strcmp(argv[i], "-relaxng")) ||
3360
+ (!strcmp(argv[i], "--relaxng"))) {
3361
+ i++;
3362
+ relaxng = argv[i];
3363
+ noent++;
3364
+ options |= XML_PARSE_NOENT;
3365
+ } else if ((!strcmp(argv[i], "-schema")) ||
3366
+ (!strcmp(argv[i], "--schema"))) {
3367
+ i++;
3368
+ schema = argv[i];
3369
+ noent++;
3370
+ #endif
3371
+ #ifdef LIBXML_SCHEMATRON_ENABLED
3372
+ } else if ((!strcmp(argv[i], "-schematron")) ||
3373
+ (!strcmp(argv[i], "--schematron"))) {
3374
+ i++;
3375
+ schematron = argv[i];
3376
+ noent++;
3377
+ #endif
3378
+ } else if ((!strcmp(argv[i], "-nonet")) ||
3379
+ (!strcmp(argv[i], "--nonet"))) {
3380
+ options |= XML_PARSE_NONET;
3381
+ xmlSetExternalEntityLoader(xmlNoNetExternalEntityLoader);
3382
+ } else if ((!strcmp(argv[i], "-nocompact")) ||
3383
+ (!strcmp(argv[i], "--nocompact"))) {
3384
+ options &= ~XML_PARSE_COMPACT;
3385
+ } else if ((!strcmp(argv[i], "-load-trace")) ||
3386
+ (!strcmp(argv[i], "--load-trace"))) {
3387
+ load_trace++;
3388
+ } else if ((!strcmp(argv[i], "-path")) ||
3389
+ (!strcmp(argv[i], "--path"))) {
3390
+ i++;
3391
+ parsePath(BAD_CAST argv[i]);
3392
+ #ifdef LIBXML_PATTERN_ENABLED
3393
+ } else if ((!strcmp(argv[i], "-pattern")) ||
3394
+ (!strcmp(argv[i], "--pattern"))) {
3395
+ i++;
3396
+ pattern = argv[i];
3397
+ #endif
3398
+ #ifdef LIBXML_XPATH_ENABLED
3399
+ } else if ((!strcmp(argv[i], "-xpath")) ||
3400
+ (!strcmp(argv[i], "--xpath"))) {
3401
+ i++;
3402
+ noout++;
3403
+ xpathquery = argv[i];
3404
+ #endif
3405
+ } else if ((!strcmp(argv[i], "-oldxml10")) ||
3406
+ (!strcmp(argv[i], "--oldxml10"))) {
3407
+ oldxml10++;
3408
+ options |= XML_PARSE_OLD10;
3409
+ } else {
3410
+ fprintf(stderr, "Unknown option %s\n", argv[i]);
3411
+ usage(argv[0]);
3412
+ return(1);
3413
+ }
3414
+ }
3415
+
3416
+ #ifdef LIBXML_CATALOG_ENABLED
3417
+ if (nocatalogs == 0) {
3418
+ if (catalogs) {
3419
+ const char *catal;
3420
+
3421
+ catal = getenv("SGML_CATALOG_FILES");
3422
+ if (catal != NULL) {
3423
+ xmlLoadCatalogs(catal);
3424
+ } else {
3425
+ fprintf(stderr, "Variable $SGML_CATALOG_FILES not set\n");
3426
+ }
3427
+ }
3428
+ }
3429
+ #endif
3430
+
3431
+ #ifdef LIBXML_SAX1_ENABLED
3432
+ if (sax1)
3433
+ xmlSAXDefaultVersion(1);
3434
+ else
3435
+ xmlSAXDefaultVersion(2);
3436
+ #endif /* LIBXML_SAX1_ENABLED */
3437
+
3438
+ if (chkregister) {
3439
+ xmlRegisterNodeDefault(registerNode);
3440
+ xmlDeregisterNodeDefault(deregisterNode);
3441
+ }
3442
+
3443
+ indent = getenv("XMLLINT_INDENT");
3444
+ if(indent != NULL) {
3445
+ xmlTreeIndentString = indent;
3446
+ }
3447
+
3448
+
3449
+ defaultEntityLoader = xmlGetExternalEntityLoader();
3450
+ xmlSetExternalEntityLoader(xmllintExternalEntityLoader);
3451
+
3452
+ xmlLineNumbersDefault(1);
3453
+ if (loaddtd != 0)
3454
+ xmlLoadExtDtdDefaultValue |= XML_DETECT_IDS;
3455
+ if (dtdattrs)
3456
+ xmlLoadExtDtdDefaultValue |= XML_COMPLETE_ATTRS;
3457
+ if (noent != 0) xmlSubstituteEntitiesDefault(1);
3458
+ #ifdef LIBXML_VALID_ENABLED
3459
+ if (valid != 0) xmlDoValidityCheckingDefaultValue = 1;
3460
+ #endif /* LIBXML_VALID_ENABLED */
3461
+ if ((htmlout) && (!nowrap)) {
3462
+ xmlGenericError(xmlGenericErrorContext,
3463
+ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"\n");
3464
+ xmlGenericError(xmlGenericErrorContext,
3465
+ "\t\"http://www.w3.org/TR/REC-html40/loose.dtd\">\n");
3466
+ xmlGenericError(xmlGenericErrorContext,
3467
+ "<html><head><title>%s output</title></head>\n",
3468
+ argv[0]);
3469
+ xmlGenericError(xmlGenericErrorContext,
3470
+ "<body bgcolor=\"#ffffff\"><h1 align=\"center\">%s output</h1>\n",
3471
+ argv[0]);
3472
+ }
3473
+
3474
+ #ifdef LIBXML_SCHEMATRON_ENABLED
3475
+ if ((schematron != NULL) && (sax == 0)
3476
+ #ifdef LIBXML_READER_ENABLED
3477
+ && (stream == 0)
3478
+ #endif /* LIBXML_READER_ENABLED */
3479
+ ) {
3480
+ xmlSchematronParserCtxtPtr ctxt;
3481
+
3482
+ /* forces loading the DTDs */
3483
+ xmlLoadExtDtdDefaultValue |= 1;
3484
+ options |= XML_PARSE_DTDLOAD;
3485
+ if (timing) {
3486
+ startTimer();
3487
+ }
3488
+ ctxt = xmlSchematronNewParserCtxt(schematron);
3489
+ #if 0
3490
+ xmlSchematronSetParserErrors(ctxt,
3491
+ (xmlSchematronValidityErrorFunc) fprintf,
3492
+ (xmlSchematronValidityWarningFunc) fprintf,
3493
+ stderr);
3494
+ #endif
3495
+ wxschematron = xmlSchematronParse(ctxt);
3496
+ if (wxschematron == NULL) {
3497
+ xmlGenericError(xmlGenericErrorContext,
3498
+ "Schematron schema %s failed to compile\n", schematron);
3499
+ progresult = XMLLINT_ERR_SCHEMACOMP;
3500
+ schematron = NULL;
3501
+ }
3502
+ xmlSchematronFreeParserCtxt(ctxt);
3503
+ if (timing) {
3504
+ endTimer("Compiling the schemas");
3505
+ }
3506
+ }
3507
+ #endif
3508
+ #ifdef LIBXML_SCHEMAS_ENABLED
3509
+ if ((relaxng != NULL) && (sax == 0)
3510
+ #ifdef LIBXML_READER_ENABLED
3511
+ && (stream == 0)
3512
+ #endif /* LIBXML_READER_ENABLED */
3513
+ ) {
3514
+ xmlRelaxNGParserCtxtPtr ctxt;
3515
+
3516
+ /* forces loading the DTDs */
3517
+ xmlLoadExtDtdDefaultValue |= 1;
3518
+ options |= XML_PARSE_DTDLOAD;
3519
+ if (timing) {
3520
+ startTimer();
3521
+ }
3522
+ ctxt = xmlRelaxNGNewParserCtxt(relaxng);
3523
+ xmlRelaxNGSetParserErrors(ctxt,
3524
+ (xmlRelaxNGValidityErrorFunc) fprintf,
3525
+ (xmlRelaxNGValidityWarningFunc) fprintf,
3526
+ stderr);
3527
+ relaxngschemas = xmlRelaxNGParse(ctxt);
3528
+ if (relaxngschemas == NULL) {
3529
+ xmlGenericError(xmlGenericErrorContext,
3530
+ "Relax-NG schema %s failed to compile\n", relaxng);
3531
+ progresult = XMLLINT_ERR_SCHEMACOMP;
3532
+ relaxng = NULL;
3533
+ }
3534
+ xmlRelaxNGFreeParserCtxt(ctxt);
3535
+ if (timing) {
3536
+ endTimer("Compiling the schemas");
3537
+ }
3538
+ } else if ((schema != NULL)
3539
+ #ifdef LIBXML_READER_ENABLED
3540
+ && (stream == 0)
3541
+ #endif
3542
+ ) {
3543
+ xmlSchemaParserCtxtPtr ctxt;
3544
+
3545
+ if (timing) {
3546
+ startTimer();
3547
+ }
3548
+ ctxt = xmlSchemaNewParserCtxt(schema);
3549
+ xmlSchemaSetParserErrors(ctxt,
3550
+ (xmlSchemaValidityErrorFunc) fprintf,
3551
+ (xmlSchemaValidityWarningFunc) fprintf,
3552
+ stderr);
3553
+ wxschemas = xmlSchemaParse(ctxt);
3554
+ if (wxschemas == NULL) {
3555
+ xmlGenericError(xmlGenericErrorContext,
3556
+ "WXS schema %s failed to compile\n", schema);
3557
+ progresult = XMLLINT_ERR_SCHEMACOMP;
3558
+ schema = NULL;
3559
+ }
3560
+ xmlSchemaFreeParserCtxt(ctxt);
3561
+ if (timing) {
3562
+ endTimer("Compiling the schemas");
3563
+ }
3564
+ }
3565
+ #endif /* LIBXML_SCHEMAS_ENABLED */
3566
+ #ifdef LIBXML_PATTERN_ENABLED
3567
+ if ((pattern != NULL)
3568
+ #ifdef LIBXML_READER_ENABLED
3569
+ && (walker == 0)
3570
+ #endif
3571
+ ) {
3572
+ patternc = xmlPatterncompile((const xmlChar *) pattern, NULL, 0, NULL);
3573
+ if (patternc == NULL) {
3574
+ xmlGenericError(xmlGenericErrorContext,
3575
+ "Pattern %s failed to compile\n", pattern);
3576
+ progresult = XMLLINT_ERR_SCHEMAPAT;
3577
+ pattern = NULL;
3578
+ }
3579
+ }
3580
+ #endif /* LIBXML_PATTERN_ENABLED */
3581
+ for (i = 1; i < argc ; i++) {
3582
+ if ((!strcmp(argv[i], "-encode")) ||
3583
+ (!strcmp(argv[i], "--encode"))) {
3584
+ i++;
3585
+ continue;
3586
+ } else if ((!strcmp(argv[i], "-o")) ||
3587
+ (!strcmp(argv[i], "-output")) ||
3588
+ (!strcmp(argv[i], "--output"))) {
3589
+ i++;
3590
+ continue;
3591
+ }
3592
+ #ifdef LIBXML_VALID_ENABLED
3593
+ if ((!strcmp(argv[i], "-dtdvalid")) ||
3594
+ (!strcmp(argv[i], "--dtdvalid"))) {
3595
+ i++;
3596
+ continue;
3597
+ }
3598
+ if ((!strcmp(argv[i], "-path")) ||
3599
+ (!strcmp(argv[i], "--path"))) {
3600
+ i++;
3601
+ continue;
3602
+ }
3603
+ if ((!strcmp(argv[i], "-dtdvalidfpi")) ||
3604
+ (!strcmp(argv[i], "--dtdvalidfpi"))) {
3605
+ i++;
3606
+ continue;
3607
+ }
3608
+ #endif /* LIBXML_VALID_ENABLED */
3609
+ if ((!strcmp(argv[i], "-relaxng")) ||
3610
+ (!strcmp(argv[i], "--relaxng"))) {
3611
+ i++;
3612
+ continue;
3613
+ }
3614
+ if ((!strcmp(argv[i], "-maxmem")) ||
3615
+ (!strcmp(argv[i], "--maxmem"))) {
3616
+ i++;
3617
+ continue;
3618
+ }
3619
+ if ((!strcmp(argv[i], "-schema")) ||
3620
+ (!strcmp(argv[i], "--schema"))) {
3621
+ i++;
3622
+ continue;
3623
+ }
3624
+ if ((!strcmp(argv[i], "-schematron")) ||
3625
+ (!strcmp(argv[i], "--schematron"))) {
3626
+ i++;
3627
+ continue;
3628
+ }
3629
+ #ifdef LIBXML_PATTERN_ENABLED
3630
+ if ((!strcmp(argv[i], "-pattern")) ||
3631
+ (!strcmp(argv[i], "--pattern"))) {
3632
+ i++;
3633
+ continue;
3634
+ }
3635
+ #endif
3636
+ #ifdef LIBXML_XPATH_ENABLED
3637
+ if ((!strcmp(argv[i], "-xpath")) ||
3638
+ (!strcmp(argv[i], "--xpath"))) {
3639
+ i++;
3640
+ continue;
3641
+ }
3642
+ #endif
3643
+ if ((timing) && (repeat))
3644
+ startTimer();
3645
+ /* Remember file names. "-" means stdin. <sven@zen.org> */
3646
+ if ((argv[i][0] != '-') || (strcmp(argv[i], "-") == 0)) {
3647
+ if (repeat) {
3648
+ xmlParserCtxtPtr ctxt = NULL;
3649
+
3650
+ for (acount = 0;acount < repeat;acount++) {
3651
+ #ifdef LIBXML_READER_ENABLED
3652
+ if (stream != 0) {
3653
+ streamFile(argv[i]);
3654
+ } else {
3655
+ #endif /* LIBXML_READER_ENABLED */
3656
+ if (sax) {
3657
+ testSAX(argv[i]);
3658
+ } else {
3659
+ if (ctxt == NULL)
3660
+ ctxt = xmlNewParserCtxt();
3661
+ parseAndPrintFile(argv[i], ctxt);
3662
+ }
3663
+ #ifdef LIBXML_READER_ENABLED
3664
+ }
3665
+ #endif /* LIBXML_READER_ENABLED */
3666
+ }
3667
+ if (ctxt != NULL)
3668
+ xmlFreeParserCtxt(ctxt);
3669
+ } else {
3670
+ nbregister = 0;
3671
+
3672
+ #ifdef LIBXML_READER_ENABLED
3673
+ if (stream != 0)
3674
+ streamFile(argv[i]);
3675
+ else
3676
+ #endif /* LIBXML_READER_ENABLED */
3677
+ if (sax) {
3678
+ testSAX(argv[i]);
3679
+ } else {
3680
+ parseAndPrintFile(argv[i], NULL);
3681
+ }
3682
+
3683
+ if ((chkregister) && (nbregister != 0)) {
3684
+ fprintf(stderr, "Registration count off: %d\n", nbregister);
3685
+ progresult = XMLLINT_ERR_RDREGIS;
3686
+ }
3687
+ }
3688
+ files ++;
3689
+ if ((timing) && (repeat)) {
3690
+ endTimer("%d iterations", repeat);
3691
+ }
3692
+ }
3693
+ }
3694
+ if (generate)
3695
+ parseAndPrintFile(NULL, NULL);
3696
+ if ((htmlout) && (!nowrap)) {
3697
+ xmlGenericError(xmlGenericErrorContext, "</body></html>\n");
3698
+ }
3699
+ if ((files == 0) && (!generate) && (version == 0)) {
3700
+ usage(argv[0]);
3701
+ }
3702
+ #ifdef LIBXML_SCHEMATRON_ENABLED
3703
+ if (wxschematron != NULL)
3704
+ xmlSchematronFree(wxschematron);
3705
+ #endif
3706
+ #ifdef LIBXML_SCHEMAS_ENABLED
3707
+ if (relaxngschemas != NULL)
3708
+ xmlRelaxNGFree(relaxngschemas);
3709
+ if (wxschemas != NULL)
3710
+ xmlSchemaFree(wxschemas);
3711
+ xmlRelaxNGCleanupTypes();
3712
+ #endif
3713
+ #ifdef LIBXML_PATTERN_ENABLED
3714
+ if (patternc != NULL)
3715
+ xmlFreePattern(patternc);
3716
+ #endif
3717
+ xmlCleanupParser();
3718
+ xmlMemoryDump();
3719
+
3720
+ return(progresult);
3721
+ }
3722
+