gstreamer 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2721) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +81 -25
  3. data/ext/gstreamer/rbgst-element-factory.c +61 -0
  4. data/ext/gstreamer/rbgst.c +50 -5
  5. data/ext/gstreamer/rbgst.h +26 -0
  6. data/lib/1.9/gstreamer.so +0 -0
  7. data/lib/2.0/gstreamer.so +0 -0
  8. data/lib/gst.rb +51 -5
  9. data/lib/gst/{base_loader.rb → base-loader.rb} +0 -0
  10. data/lib/gst/caps.rb +25 -0
  11. data/lib/gst/{controller_loader.rb → controller-loader.rb} +0 -0
  12. data/lib/gst/element-factory.rb +35 -0
  13. data/lib/gst/element.rb +5 -0
  14. data/lib/gst/plugin-feature.rb +24 -0
  15. data/lib/gst/registry.rb +30 -0
  16. data/lib/gst/structure.rb +28 -0
  17. data/sample/gst-inspect.rb +478 -0
  18. data/vendor/local/bin/cjpeg.exe +0 -0
  19. data/vendor/local/bin/djpeg.exe +0 -0
  20. data/vendor/local/bin/flac.exe +0 -0
  21. data/vendor/local/bin/gst-discoverer-1.0.exe +0 -0
  22. data/vendor/local/bin/gst-inspect-1.0.exe +0 -0
  23. data/vendor/local/bin/gst-launch-1.0.exe +0 -0
  24. data/vendor/local/bin/gst-play-1.0.exe +0 -0
  25. data/vendor/local/bin/gst-typefind-1.0.exe +0 -0
  26. data/vendor/local/bin/jpegtran.exe +0 -0
  27. data/vendor/local/bin/libFLAC-8.dll +0 -0
  28. data/vendor/local/bin/libgstallocators-1.0-0.dll +0 -0
  29. data/vendor/local/bin/libgstapp-1.0-0.dll +0 -0
  30. data/vendor/local/bin/libgstaudio-1.0-0.dll +0 -0
  31. data/vendor/local/bin/libgstbase-1.0-0.dll +0 -0
  32. data/vendor/local/bin/libgstbasecamerabinsrc-1.0-0.dll +0 -0
  33. data/vendor/local/bin/libgstcheck-1.0-0.dll +0 -0
  34. data/vendor/local/bin/libgstcodecparsers-1.0-0.dll +0 -0
  35. data/vendor/local/bin/libgstcontroller-1.0-0.dll +0 -0
  36. data/vendor/local/bin/libgstfft-1.0-0.dll +0 -0
  37. data/vendor/local/bin/libgstinsertbin-1.0-0.dll +0 -0
  38. data/vendor/local/bin/libgstmpegts-1.0-0.dll +0 -0
  39. data/vendor/local/bin/libgstnet-1.0-0.dll +0 -0
  40. data/vendor/local/bin/libgstpbutils-1.0-0.dll +0 -0
  41. data/vendor/local/bin/libgstphotography-1.0-0.dll +0 -0
  42. data/vendor/local/bin/libgstreamer-1.0-0.dll +0 -0
  43. data/vendor/local/bin/libgstriff-1.0-0.dll +0 -0
  44. data/vendor/local/bin/libgstrtp-1.0-0.dll +0 -0
  45. data/vendor/local/bin/libgstrtsp-1.0-0.dll +0 -0
  46. data/vendor/local/bin/libgstsdp-1.0-0.dll +0 -0
  47. data/vendor/local/bin/libgsttag-1.0-0.dll +0 -0
  48. data/vendor/local/bin/libgsturidownloader-1.0-0.dll +0 -0
  49. data/vendor/local/bin/libgstvideo-1.0-0.dll +0 -0
  50. data/vendor/local/bin/libjpeg-9.dll +0 -0
  51. data/vendor/local/bin/libogg-0.dll +0 -0
  52. data/vendor/local/bin/libsoup-2.4-1.dll +0 -0
  53. data/vendor/local/bin/libspeex-1.dll +0 -0
  54. data/vendor/local/bin/libspeexdsp-1.dll +0 -0
  55. data/vendor/local/bin/libsqlite3-0.dll +0 -0
  56. data/vendor/local/bin/libtheora-0.dll +0 -0
  57. data/vendor/local/bin/libtheoradec-1.dll +0 -0
  58. data/vendor/local/bin/libtheoraenc-1.dll +0 -0
  59. data/vendor/local/bin/libvorbis-0.dll +0 -0
  60. data/vendor/local/bin/libvorbisenc-2.dll +0 -0
  61. data/vendor/local/bin/libvorbisfile-3.dll +0 -0
  62. data/vendor/local/bin/metaflac.exe +0 -0
  63. data/vendor/local/bin/rdjpgcom.exe +0 -0
  64. data/vendor/local/bin/speexdec.exe +0 -0
  65. data/vendor/local/bin/speexenc.exe +0 -0
  66. data/vendor/local/bin/sqlite3.exe +0 -0
  67. data/vendor/local/bin/wrjpgcom.exe +0 -0
  68. data/vendor/local/include/FLAC/all.h +3 -2
  69. data/vendor/local/include/FLAC/assert.h +2 -1
  70. data/vendor/local/include/FLAC/callback.h +2 -1
  71. data/vendor/local/include/FLAC/export.h +14 -8
  72. data/vendor/local/include/FLAC/format.h +14 -1
  73. data/vendor/local/include/FLAC/metadata.h +3 -2
  74. data/vendor/local/include/FLAC/ordinals.h +20 -14
  75. data/vendor/local/include/FLAC/stream_decoder.h +2 -1
  76. data/vendor/local/include/FLAC/stream_encoder.h +3 -2
  77. data/vendor/local/include/gstreamer-1.0/gst/allocators/allocators.h +28 -0
  78. data/vendor/local/include/gstreamer-1.0/gst/allocators/gstdmabuf.h +39 -0
  79. data/vendor/local/include/gstreamer-1.0/gst/app/app.h +28 -0
  80. data/vendor/local/include/gstreamer-1.0/gst/app/gstappsink.h +2 -2
  81. data/vendor/local/include/gstreamer-1.0/gst/app/gstappsrc.h +22 -20
  82. data/vendor/local/include/gstreamer-1.0/gst/audio/audio-channels.h +6 -6
  83. data/vendor/local/include/gstreamer-1.0/gst/audio/audio-format.h +32 -5
  84. data/vendor/local/include/gstreamer-1.0/gst/audio/audio-info.h +10 -8
  85. data/vendor/local/include/gstreamer-1.0/gst/audio/audio.h +35 -2
  86. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudiobasesink.h +6 -5
  87. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudiobasesrc.h +6 -4
  88. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudiocdsrc.h +6 -2
  89. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudioclock.h +6 -2
  90. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudiodecoder.h +9 -5
  91. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudioencoder.h +6 -3
  92. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudiofilter.h +5 -3
  93. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudioiec61937.h +2 -2
  94. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudiometa.h +2 -4
  95. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudioringbuffer.h +11 -6
  96. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudiosink.h +6 -2
  97. data/vendor/local/include/gstreamer-1.0/gst/audio/gstaudiosrc.h +6 -2
  98. data/vendor/local/include/gstreamer-1.0/gst/audio/streamvolume.h +2 -2
  99. data/vendor/local/include/gstreamer-1.0/gst/base/base.h +39 -0
  100. data/vendor/local/include/gstreamer-1.0/gst/base/gstadapter.h +7 -4
  101. data/vendor/local/include/gstreamer-1.0/gst/base/gstbaseparse.h +22 -3
  102. data/vendor/local/include/gstreamer-1.0/gst/base/gstbasesink.h +6 -2
  103. data/vendor/local/include/gstreamer-1.0/gst/base/gstbasesrc.h +2 -2
  104. data/vendor/local/include/gstreamer-1.0/gst/base/gstbasetransform.h +2 -2
  105. data/vendor/local/include/gstreamer-1.0/gst/base/gstbitreader.h +2 -2
  106. data/vendor/local/include/gstreamer-1.0/gst/base/gstbytereader.h +2 -2
  107. data/vendor/local/include/gstreamer-1.0/gst/base/gstbytewriter.h +2 -2
  108. data/vendor/local/include/gstreamer-1.0/gst/base/gstcollectpads.h +2 -2
  109. data/vendor/local/include/gstreamer-1.0/gst/base/gstdataqueue.h +163 -0
  110. data/vendor/local/include/gstreamer-1.0/gst/base/gstpushsrc.h +2 -2
  111. data/vendor/local/include/gstreamer-1.0/gst/base/gstqueuearray.h +50 -0
  112. data/vendor/local/include/gstreamer-1.0/gst/base/gsttypefindhelper.h +3 -3
  113. data/vendor/local/include/gstreamer-1.0/gst/basecamerabinsrc/gstbasecamerasrc.h +3 -2
  114. data/vendor/local/include/gstreamer-1.0/gst/basecamerabinsrc/gstcamerabin-enum.h +2 -2
  115. data/vendor/local/include/gstreamer-1.0/gst/basecamerabinsrc/gstcamerabinpreview.h +2 -2
  116. data/vendor/local/include/gstreamer-1.0/gst/check/check.h +30 -0
  117. data/vendor/local/include/gstreamer-1.0/gst/check/gstbufferstraw.h +2 -2
  118. data/vendor/local/include/gstreamer-1.0/gst/check/gstcheck.h +140 -4
  119. data/vendor/local/include/gstreamer-1.0/gst/check/gstconsistencychecker.h +2 -2
  120. data/vendor/local/include/gstreamer-1.0/gst/check/gsttestclock.h +106 -0
  121. data/vendor/local/include/gstreamer-1.0/gst/check/internal-check.h +2 -2
  122. data/vendor/local/include/gstreamer-1.0/gst/codecparsers/gsth264parser.h +43 -3
  123. data/vendor/local/include/gstreamer-1.0/gst/codecparsers/gstmpeg4parser.h +5 -3
  124. data/vendor/local/include/gstreamer-1.0/gst/codecparsers/gstmpegvideometa.h +89 -0
  125. data/vendor/local/include/gstreamer-1.0/gst/codecparsers/gstmpegvideoparser.h +127 -12
  126. data/vendor/local/include/gstreamer-1.0/gst/codecparsers/gstvc1parser.h +29 -9
  127. data/vendor/local/include/gstreamer-1.0/gst/controller/controller.h +32 -0
  128. data/vendor/local/include/gstreamer-1.0/gst/controller/gstargbcontrolbinding.h +2 -2
  129. data/vendor/local/include/gstreamer-1.0/gst/controller/gstdirectcontrolbinding.h +2 -2
  130. data/vendor/local/include/gstreamer-1.0/gst/controller/gstinterpolationcontrolsource.h +2 -2
  131. data/vendor/local/include/gstreamer-1.0/gst/controller/gstlfocontrolsource.h +2 -2
  132. data/vendor/local/include/gstreamer-1.0/gst/controller/gsttimedvaluecontrolsource.h +2 -2
  133. data/vendor/local/include/gstreamer-1.0/gst/controller/gsttriggercontrolsource.h +2 -2
  134. data/vendor/local/include/gstreamer-1.0/gst/fft/fft.h +31 -0
  135. data/vendor/local/include/gstreamer-1.0/gst/fft/gstfft.h +2 -2
  136. data/vendor/local/include/gstreamer-1.0/gst/fft/gstfftf32.h +2 -2
  137. data/vendor/local/include/gstreamer-1.0/gst/fft/gstfftf64.h +2 -2
  138. data/vendor/local/include/gstreamer-1.0/gst/fft/gstffts16.h +2 -2
  139. data/vendor/local/include/gstreamer-1.0/gst/fft/gstffts32.h +2 -2
  140. data/vendor/local/include/gstreamer-1.0/gst/glib-compat.h +2 -2
  141. data/vendor/local/include/gstreamer-1.0/gst/gst.h +3 -2
  142. data/vendor/local/include/gstreamer-1.0/gst/gstallocator.h +2 -2
  143. data/vendor/local/include/gstreamer-1.0/gst/gstatomicqueue.h +2 -2
  144. data/vendor/local/include/gstreamer-1.0/gst/gstbin.h +4 -4
  145. data/vendor/local/include/gstreamer-1.0/gst/gstbuffer.h +20 -11
  146. data/vendor/local/include/gstreamer-1.0/gst/gstbufferlist.h +2 -2
  147. data/vendor/local/include/gstreamer-1.0/gst/gstbufferpool.h +2 -2
  148. data/vendor/local/include/gstreamer-1.0/gst/gstbus.h +2 -2
  149. data/vendor/local/include/gstreamer-1.0/gst/gstcaps.h +17 -2
  150. data/vendor/local/include/gstreamer-1.0/gst/gstcapsfeatures.h +80 -0
  151. data/vendor/local/include/gstreamer-1.0/gst/gstchildproxy.h +2 -2
  152. data/vendor/local/include/gstreamer-1.0/gst/gstclock.h +2 -2
  153. data/vendor/local/include/gstreamer-1.0/gst/gstcompat.h +23 -22
  154. data/vendor/local/include/gstreamer-1.0/gst/gstconfig.h +2 -51
  155. data/vendor/local/include/gstreamer-1.0/gst/gstcontext.h +159 -0
  156. data/vendor/local/include/gstreamer-1.0/gst/gstcontrolbinding.h +2 -2
  157. data/vendor/local/include/gstreamer-1.0/gst/gstcontrolsource.h +2 -2
  158. data/vendor/local/include/gstreamer-1.0/gst/gstdatetime.h +2 -2
  159. data/vendor/local/include/gstreamer-1.0/gst/gstdebugutils.h +2 -2
  160. data/vendor/local/include/gstreamer-1.0/gst/gstelement.h +10 -4
  161. data/vendor/local/include/gstreamer-1.0/gst/gstelementfactory.h +2 -2
  162. data/vendor/local/include/gstreamer-1.0/gst/gstelementmetadata.h +2 -2
  163. data/vendor/local/include/gstreamer-1.0/gst/gstenumtypes.h +4 -0
  164. data/vendor/local/include/gstreamer-1.0/gst/gsterror.h +2 -2
  165. data/vendor/local/include/gstreamer-1.0/gst/gstevent.h +33 -2
  166. data/vendor/local/include/gstreamer-1.0/gst/gstformat.h +2 -2
  167. data/vendor/local/include/gstreamer-1.0/gst/gstghostpad.h +2 -2
  168. data/vendor/local/include/gstreamer-1.0/gst/gstinfo.h +39 -19
  169. data/vendor/local/include/gstreamer-1.0/gst/gstiterator.h +2 -2
  170. data/vendor/local/include/gstreamer-1.0/gst/gstmacros.h +2 -2
  171. data/vendor/local/include/gstreamer-1.0/gst/gstmemory.h +28 -2
  172. data/vendor/local/include/gstreamer-1.0/gst/gstmessage.h +17 -2
  173. data/vendor/local/include/gstreamer-1.0/gst/gstmeta.h +14 -2
  174. data/vendor/local/include/gstreamer-1.0/gst/gstminiobject.h +2 -2
  175. data/vendor/local/include/gstreamer-1.0/gst/gstobject.h +2 -2
  176. data/vendor/local/include/gstreamer-1.0/gst/gstpad.h +5 -4
  177. data/vendor/local/include/gstreamer-1.0/gst/gstpadtemplate.h +2 -2
  178. data/vendor/local/include/gstreamer-1.0/gst/gstparamspecs.h +2 -2
  179. data/vendor/local/include/gstreamer-1.0/gst/gstparse.h +6 -3
  180. data/vendor/local/include/gstreamer-1.0/gst/gstpipeline.h +2 -2
  181. data/vendor/local/include/gstreamer-1.0/gst/gstplugin.h +3 -3
  182. data/vendor/local/include/gstreamer-1.0/gst/gstpluginfeature.h +3 -2
  183. data/vendor/local/include/gstreamer-1.0/gst/gstpoll.h +2 -2
  184. data/vendor/local/include/gstreamer-1.0/gst/gstpreset.h +2 -2
  185. data/vendor/local/include/gstreamer-1.0/gst/gstquery.h +21 -5
  186. data/vendor/local/include/gstreamer-1.0/gst/gstregistry.h +2 -2
  187. data/vendor/local/include/gstreamer-1.0/gst/gstsample.h +24 -2
  188. data/vendor/local/include/gstreamer-1.0/gst/gstsegment.h +2 -2
  189. data/vendor/local/include/gstreamer-1.0/gst/gststructure.h +222 -174
  190. data/vendor/local/include/gstreamer-1.0/gst/gstsystemclock.h +2 -2
  191. data/vendor/local/include/gstreamer-1.0/gst/gsttaglist.h +19 -2
  192. data/vendor/local/include/gstreamer-1.0/gst/gsttagsetter.h +2 -2
  193. data/vendor/local/include/gstreamer-1.0/gst/gsttask.h +2 -2
  194. data/vendor/local/include/gstreamer-1.0/gst/gsttaskpool.h +2 -2
  195. data/vendor/local/include/gstreamer-1.0/gst/gsttoc.h +2 -2
  196. data/vendor/local/include/gstreamer-1.0/gst/gsttocsetter.h +2 -2
  197. data/vendor/local/include/gstreamer-1.0/gst/gsttypefind.h +2 -2
  198. data/vendor/local/include/gstreamer-1.0/gst/gsttypefindfactory.h +2 -2
  199. data/vendor/local/include/gstreamer-1.0/gst/gsturi.h +2 -2
  200. data/vendor/local/include/gstreamer-1.0/gst/gstutils.h +92 -44
  201. data/vendor/local/include/gstreamer-1.0/gst/gstvalue.h +36 -2
  202. data/vendor/local/include/gstreamer-1.0/gst/gstversion.h +4 -4
  203. data/vendor/local/include/gstreamer-1.0/gst/insertbin/gstinsertbin.h +106 -0
  204. data/vendor/local/include/gstreamer-1.0/gst/interfaces/photography.h +45 -5
  205. data/vendor/local/include/gstreamer-1.0/gst/math-compat.h +2 -2
  206. data/vendor/local/include/gstreamer-1.0/gst/mpegts/gst-atsc-section.h +67 -0
  207. data/vendor/local/include/gstreamer-1.0/gst/mpegts/gst-dvb-descriptor.h +353 -0
  208. data/vendor/local/include/gstreamer-1.0/gst/mpegts/gst-dvb-section.h +329 -0
  209. data/vendor/local/include/gstreamer-1.0/gst/mpegts/gstmpegtsdescriptor.h +317 -0
  210. data/vendor/local/include/gstreamer-1.0/gst/mpegts/gstmpegtssection.h +363 -0
  211. data/vendor/local/include/gstreamer-1.0/gst/mpegts/mpegts.h +41 -0
  212. data/vendor/local/include/gstreamer-1.0/gst/net/gstnet.h +3 -4
  213. data/vendor/local/include/gstreamer-1.0/gst/net/gstnetaddressmeta.h +2 -2
  214. data/vendor/local/include/gstreamer-1.0/gst/net/gstnetclientclock.h +2 -2
  215. data/vendor/local/include/gstreamer-1.0/gst/net/gstnettimepacket.h +2 -2
  216. data/vendor/local/include/gstreamer-1.0/gst/net/gstnettimeprovider.h +2 -2
  217. data/vendor/local/include/gstreamer-1.0/gst/net/net.h +31 -0
  218. data/vendor/local/include/gstreamer-1.0/gst/pbutils/codec-utils.h +3 -2
  219. data/vendor/local/include/gstreamer-1.0/gst/pbutils/descriptions.h +2 -2
  220. data/vendor/local/include/gstreamer-1.0/gst/pbutils/encoding-profile.h +7 -2
  221. data/vendor/local/include/gstreamer-1.0/gst/pbutils/encoding-target.h +2 -2
  222. data/vendor/local/include/gstreamer-1.0/gst/pbutils/gstdiscoverer.h +3 -2
  223. data/vendor/local/include/gstreamer-1.0/gst/pbutils/gstpluginsbaseversion.h +4 -4
  224. data/vendor/local/include/gstreamer-1.0/gst/pbutils/install-plugins.h +2 -2
  225. data/vendor/local/include/gstreamer-1.0/gst/pbutils/missing-plugins.h +3 -4
  226. data/vendor/local/include/gstreamer-1.0/gst/pbutils/pbutils.h +2 -2
  227. data/vendor/local/include/gstreamer-1.0/gst/riff/riff-ids.h +3 -2
  228. data/vendor/local/include/gstreamer-1.0/gst/riff/riff-media.h +2 -2
  229. data/vendor/local/include/gstreamer-1.0/gst/riff/riff-read.h +2 -2
  230. data/vendor/local/include/gstreamer-1.0/gst/riff/riff.h +29 -0
  231. data/vendor/local/include/gstreamer-1.0/gst/rtp/gstrtcpbuffer.h +18 -14
  232. data/vendor/local/include/gstreamer-1.0/gst/rtp/gstrtpbaseaudiopayload.h +2 -2
  233. data/vendor/local/include/gstreamer-1.0/gst/rtp/gstrtpbasedepayload.h +2 -2
  234. data/vendor/local/include/gstreamer-1.0/gst/rtp/gstrtpbasepayload.h +2 -2
  235. data/vendor/local/include/gstreamer-1.0/gst/rtp/gstrtpbuffer.h +4 -2
  236. data/vendor/local/include/gstreamer-1.0/gst/rtp/gstrtphdrext.h +50 -0
  237. data/vendor/local/include/gstreamer-1.0/gst/rtp/gstrtppayloads.h +2 -2
  238. data/vendor/local/include/gstreamer-1.0/gst/rtp/rtp.h +33 -0
  239. data/vendor/local/include/gstreamer-1.0/gst/rtsp/gstrtsp.h +33 -0
  240. data/vendor/local/include/gstreamer-1.0/gst/rtsp/gstrtspconnection.h +15 -2
  241. data/vendor/local/include/gstreamer-1.0/gst/rtsp/gstrtspdefs.h +3 -2
  242. data/vendor/local/include/gstreamer-1.0/gst/rtsp/gstrtspextension.h +2 -2
  243. data/vendor/local/include/gstreamer-1.0/gst/rtsp/gstrtspmessage.h +3 -4
  244. data/vendor/local/include/gstreamer-1.0/gst/rtsp/gstrtsprange.h +42 -6
  245. data/vendor/local/include/gstreamer-1.0/gst/rtsp/gstrtsptransport.h +5 -3
  246. data/vendor/local/include/gstreamer-1.0/gst/rtsp/gstrtspurl.h +2 -2
  247. data/vendor/local/include/gstreamer-1.0/gst/rtsp/rtsp.h +35 -0
  248. data/vendor/local/include/gstreamer-1.0/gst/sdp/gstsdp.h +2 -2
  249. data/vendor/local/include/gstreamer-1.0/gst/sdp/gstsdpmessage.h +98 -8
  250. data/vendor/local/include/gstreamer-1.0/gst/sdp/sdp.h +28 -0
  251. data/vendor/local/include/gstreamer-1.0/gst/tag/gsttagdemux.h +2 -2
  252. data/vendor/local/include/gstreamer-1.0/gst/tag/gsttagmux.h +2 -2
  253. data/vendor/local/include/gstreamer-1.0/gst/tag/tag.h +20 -2
  254. data/vendor/local/include/gstreamer-1.0/gst/tag/xmpwriter.h +2 -2
  255. data/vendor/local/include/gstreamer-1.0/gst/uridownloader/gstfragment.h +70 -0
  256. data/vendor/local/include/gstreamer-1.0/gst/uridownloader/gsturidownloader.h +66 -0
  257. data/vendor/local/include/gstreamer-1.0/gst/uridownloader/gsturidownloader_debug.h +12 -0
  258. data/vendor/local/include/gstreamer-1.0/gst/video/colorbalance.h +2 -2
  259. data/vendor/local/include/gstreamer-1.0/gst/video/colorbalancechannel.h +2 -2
  260. data/vendor/local/include/gstreamer-1.0/gst/video/gstvideodecoder.h +11 -6
  261. data/vendor/local/include/gstreamer-1.0/gst/video/gstvideoencoder.h +8 -3
  262. data/vendor/local/include/gstreamer-1.0/gst/video/gstvideofilter.h +2 -2
  263. data/vendor/local/include/gstreamer-1.0/gst/video/gstvideometa.h +148 -4
  264. data/vendor/local/include/gstreamer-1.0/gst/video/gstvideopool.h +2 -2
  265. data/vendor/local/include/gstreamer-1.0/gst/video/gstvideosink.h +2 -2
  266. data/vendor/local/include/gstreamer-1.0/gst/video/gstvideoutils.h +6 -3
  267. data/vendor/local/include/gstreamer-1.0/gst/video/navigation.h +2 -2
  268. data/vendor/local/include/gstreamer-1.0/gst/video/video-blend.h +2 -2
  269. data/vendor/local/include/gstreamer-1.0/gst/video/video-chroma.h +103 -0
  270. data/vendor/local/include/gstreamer-1.0/gst/video/video-color.h +2 -2
  271. data/vendor/local/include/gstreamer-1.0/gst/video/video-enumtypes.h +8 -2
  272. data/vendor/local/include/gstreamer-1.0/gst/video/video-event.h +2 -2
  273. data/vendor/local/include/gstreamer-1.0/gst/video/video-format.h +56 -38
  274. data/vendor/local/include/gstreamer-1.0/gst/video/video-frame.h +7 -6
  275. data/vendor/local/include/gstreamer-1.0/gst/video/video-info.h +2 -2
  276. data/vendor/local/include/gstreamer-1.0/gst/video/video-overlay-composition.h +15 -2
  277. data/vendor/local/include/gstreamer-1.0/gst/video/video.h +53 -3
  278. data/vendor/local/include/gstreamer-1.0/gst/video/videoorientation.h +2 -2
  279. data/vendor/local/include/gstreamer-1.0/gst/video/videooverlay.h +2 -2
  280. data/vendor/local/include/jconfig.h +8 -0
  281. data/vendor/local/include/jerror.h +2 -2
  282. data/vendor/local/include/jmorecfg.h +26 -7
  283. data/vendor/local/include/jpeglib.h +22 -7
  284. data/vendor/local/include/libsoup-2.4/libsoup/soup-address.h +12 -15
  285. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-manager.h +44 -0
  286. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth.h +36 -2
  287. data/vendor/local/include/libsoup-2.4/libsoup/soup-cache.h +102 -0
  288. data/vendor/local/include/libsoup-2.4/libsoup/soup-content-decoder.h +45 -0
  289. data/vendor/local/include/libsoup-2.4/libsoup/soup-content-sniffer.h +62 -0
  290. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar-db.h +46 -0
  291. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar-text.h +2 -0
  292. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar.h +57 -26
  293. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie.h +41 -0
  294. data/vendor/local/include/libsoup-2.4/libsoup/soup-date.h +28 -0
  295. data/vendor/local/include/libsoup-2.4/libsoup/soup-enum-types.h +24 -24
  296. data/vendor/local/include/libsoup-2.4/libsoup/soup-form.h +3 -1
  297. data/vendor/local/include/libsoup-2.4/libsoup/soup-headers.h +7 -0
  298. data/vendor/local/include/libsoup-2.4/libsoup/soup-logger.h +4 -2
  299. data/vendor/local/include/libsoup-2.4/libsoup/soup-message-body.h +17 -0
  300. data/vendor/local/include/libsoup-2.4/libsoup/soup-message-headers.h +21 -1
  301. data/vendor/local/include/libsoup-2.4/libsoup/soup-message.h +76 -15
  302. data/vendor/local/include/libsoup-2.4/libsoup/soup-method.h +33 -30
  303. data/vendor/local/include/libsoup-2.4/libsoup/soup-misc.h +27 -8
  304. data/vendor/local/include/libsoup-2.4/libsoup/soup-multipart-input-stream.h +66 -0
  305. data/vendor/local/include/libsoup-2.4/libsoup/soup-multipart.h +9 -0
  306. data/vendor/local/include/libsoup-2.4/libsoup/soup-password-manager.h +64 -0
  307. data/vendor/local/include/libsoup-2.4/libsoup/soup-portability.h +1 -3
  308. data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-resolver-default.h +30 -0
  309. data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-resolver.h +12 -7
  310. data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h +17 -7
  311. data/vendor/local/include/libsoup-2.4/libsoup/soup-request-data.h +53 -0
  312. data/vendor/local/include/libsoup-2.4/libsoup/soup-request-file.h +56 -0
  313. data/vendor/local/include/libsoup-2.4/libsoup/soup-request-http.h +56 -0
  314. data/vendor/local/include/libsoup-2.4/libsoup/soup-request.h +103 -0
  315. data/vendor/local/include/libsoup-2.4/libsoup/soup-requester.h +84 -0
  316. data/vendor/local/include/libsoup-2.4/libsoup/soup-server.h +11 -7
  317. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-async.h +2 -0
  318. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-feature.h +40 -20
  319. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-sync.h +2 -0
  320. data/vendor/local/include/libsoup-2.4/libsoup/soup-session.h +114 -13
  321. data/vendor/local/include/libsoup-2.4/libsoup/soup-socket.h +18 -13
  322. data/vendor/local/include/libsoup-2.4/libsoup/soup-status.h +83 -2
  323. data/vendor/local/include/libsoup-2.4/libsoup/soup-tld.h +34 -0
  324. data/vendor/local/include/libsoup-2.4/libsoup/soup-types.h +10 -2
  325. data/vendor/local/include/libsoup-2.4/libsoup/soup-uri.h +82 -55
  326. data/vendor/local/include/libsoup-2.4/libsoup/soup-version.h +261 -0
  327. data/vendor/local/include/libsoup-2.4/libsoup/soup-xmlrpc.h +0 -4
  328. data/vendor/local/include/libsoup-2.4/libsoup/soup.h +14 -0
  329. data/vendor/local/include/ogg/config_types.h +5 -5
  330. data/vendor/local/include/sqlite3.h +7338 -0
  331. data/vendor/local/include/sqlite3ext.h +487 -0
  332. data/vendor/local/lib/girepository-1.0/Gst-1.0.typelib +0 -0
  333. data/vendor/local/lib/girepository-1.0/GstAllocators-1.0.typelib +0 -0
  334. data/vendor/local/lib/girepository-1.0/GstApp-1.0.typelib +0 -0
  335. data/vendor/local/lib/girepository-1.0/GstAudio-1.0.typelib +0 -0
  336. data/vendor/local/lib/girepository-1.0/GstBase-1.0.typelib +0 -0
  337. data/vendor/local/lib/girepository-1.0/GstCheck-1.0.typelib +0 -0
  338. data/vendor/local/lib/girepository-1.0/GstController-1.0.typelib +0 -0
  339. data/vendor/local/lib/girepository-1.0/GstFft-1.0.typelib +0 -0
  340. data/vendor/local/lib/girepository-1.0/GstInsertBin-1.0.typelib +0 -0
  341. data/vendor/local/lib/girepository-1.0/GstMpegts-1.0.typelib +0 -0
  342. data/vendor/local/lib/girepository-1.0/GstNet-1.0.typelib +0 -0
  343. data/vendor/local/lib/girepository-1.0/GstPbutils-1.0.typelib +0 -0
  344. data/vendor/local/lib/girepository-1.0/GstRiff-1.0.typelib +0 -0
  345. data/vendor/local/lib/girepository-1.0/GstRtp-1.0.typelib +0 -0
  346. data/vendor/local/lib/girepository-1.0/GstRtsp-1.0.typelib +0 -0
  347. data/vendor/local/lib/girepository-1.0/GstSdp-1.0.typelib +0 -0
  348. data/vendor/local/lib/girepository-1.0/GstTag-1.0.typelib +0 -0
  349. data/vendor/local/lib/girepository-1.0/GstVideo-1.0.typelib +0 -0
  350. data/vendor/local/lib/girepository-1.0/Soup-2.4.typelib +0 -0
  351. data/vendor/local/lib/gstreamer-1.0/libgstaccurip.dll +0 -0
  352. data/vendor/local/lib/gstreamer-1.0/libgstaccurip.dll.a +0 -0
  353. data/vendor/local/lib/gstreamer-1.0/libgstaccurip.la +41 -0
  354. data/vendor/local/lib/gstreamer-1.0/libgstadder.dll +0 -0
  355. data/vendor/local/lib/gstreamer-1.0/libgstadder.dll.a +0 -0
  356. data/vendor/local/lib/gstreamer-1.0/libgstadder.la +2 -2
  357. data/vendor/local/lib/gstreamer-1.0/libgstadpcmdec.dll +0 -0
  358. data/vendor/local/lib/gstreamer-1.0/libgstadpcmdec.dll.a +0 -0
  359. data/vendor/local/lib/gstreamer-1.0/libgstadpcmdec.la +2 -2
  360. data/vendor/local/lib/gstreamer-1.0/libgstadpcmenc.dll +0 -0
  361. data/vendor/local/lib/gstreamer-1.0/libgstadpcmenc.dll.a +0 -0
  362. data/vendor/local/lib/gstreamer-1.0/libgstadpcmenc.la +2 -2
  363. data/vendor/local/lib/gstreamer-1.0/libgstaiff.dll +0 -0
  364. data/vendor/local/lib/gstreamer-1.0/libgstaiff.dll.a +0 -0
  365. data/vendor/local/lib/gstreamer-1.0/libgstaiff.la +41 -0
  366. data/vendor/local/lib/gstreamer-1.0/libgstalaw.dll +0 -0
  367. data/vendor/local/lib/gstreamer-1.0/libgstalaw.dll.a +0 -0
  368. data/vendor/local/lib/gstreamer-1.0/libgstalaw.la +2 -2
  369. data/vendor/local/lib/gstreamer-1.0/libgstalpha.dll +0 -0
  370. data/vendor/local/lib/gstreamer-1.0/libgstalpha.dll.a +0 -0
  371. data/vendor/local/lib/gstreamer-1.0/libgstalpha.la +2 -2
  372. data/vendor/local/lib/gstreamer-1.0/libgstalphacolor.dll +0 -0
  373. data/vendor/local/lib/gstreamer-1.0/libgstalphacolor.dll.a +0 -0
  374. data/vendor/local/lib/gstreamer-1.0/libgstalphacolor.la +2 -2
  375. data/vendor/local/lib/gstreamer-1.0/libgstapetag.dll +0 -0
  376. data/vendor/local/lib/gstreamer-1.0/libgstapetag.dll.a +0 -0
  377. data/vendor/local/lib/gstreamer-1.0/libgstapetag.la +2 -2
  378. data/vendor/local/lib/gstreamer-1.0/libgstapp.dll +0 -0
  379. data/vendor/local/lib/gstreamer-1.0/libgstapp.dll.a +0 -0
  380. data/vendor/local/lib/gstreamer-1.0/libgstapp.la +2 -2
  381. data/vendor/local/lib/gstreamer-1.0/libgstasfmux.dll +0 -0
  382. data/vendor/local/lib/gstreamer-1.0/libgstasfmux.dll.a +0 -0
  383. data/vendor/local/lib/gstreamer-1.0/libgstasfmux.la +2 -2
  384. data/vendor/local/lib/gstreamer-1.0/libgstaudioconvert.dll +0 -0
  385. data/vendor/local/lib/gstreamer-1.0/libgstaudioconvert.dll.a +0 -0
  386. data/vendor/local/lib/gstreamer-1.0/libgstaudioconvert.la +2 -2
  387. data/vendor/local/lib/gstreamer-1.0/libgstaudiofx.dll +0 -0
  388. data/vendor/local/lib/gstreamer-1.0/libgstaudiofx.dll.a +0 -0
  389. data/vendor/local/lib/gstreamer-1.0/libgstaudiofx.la +2 -2
  390. data/vendor/local/lib/gstreamer-1.0/libgstaudiofxbad.dll +0 -0
  391. data/vendor/local/lib/gstreamer-1.0/libgstaudiofxbad.dll.a +0 -0
  392. data/vendor/local/lib/gstreamer-1.0/libgstaudiofxbad.la +41 -0
  393. data/vendor/local/lib/gstreamer-1.0/libgstaudioparsers.dll +0 -0
  394. data/vendor/local/lib/gstreamer-1.0/libgstaudioparsers.dll.a +0 -0
  395. data/vendor/local/lib/gstreamer-1.0/libgstaudioparsers.la +2 -2
  396. data/vendor/local/lib/gstreamer-1.0/libgstaudiorate.dll +0 -0
  397. data/vendor/local/lib/gstreamer-1.0/libgstaudiorate.dll.a +0 -0
  398. data/vendor/local/lib/gstreamer-1.0/libgstaudiorate.la +2 -2
  399. data/vendor/local/lib/gstreamer-1.0/libgstaudioresample.dll +0 -0
  400. data/vendor/local/lib/gstreamer-1.0/libgstaudioresample.dll.a +0 -0
  401. data/vendor/local/lib/gstreamer-1.0/libgstaudioresample.la +2 -2
  402. data/vendor/local/lib/gstreamer-1.0/libgstaudiotestsrc.dll +0 -0
  403. data/vendor/local/lib/gstreamer-1.0/libgstaudiotestsrc.dll.a +0 -0
  404. data/vendor/local/lib/gstreamer-1.0/libgstaudiotestsrc.la +2 -2
  405. data/vendor/local/lib/gstreamer-1.0/libgstaudiovisualizers.dll +0 -0
  406. data/vendor/local/lib/gstreamer-1.0/libgstaudiovisualizers.dll.a +0 -0
  407. data/vendor/local/lib/gstreamer-1.0/libgstaudiovisualizers.la +2 -2
  408. data/vendor/local/lib/gstreamer-1.0/libgstauparse.dll +0 -0
  409. data/vendor/local/lib/gstreamer-1.0/libgstauparse.dll.a +0 -0
  410. data/vendor/local/lib/gstreamer-1.0/libgstauparse.la +2 -2
  411. data/vendor/local/lib/gstreamer-1.0/libgstautoconvert.dll +0 -0
  412. data/vendor/local/lib/gstreamer-1.0/libgstautoconvert.dll.a +0 -0
  413. data/vendor/local/lib/gstreamer-1.0/libgstautoconvert.la +2 -2
  414. data/vendor/local/lib/gstreamer-1.0/libgstautodetect.dll +0 -0
  415. data/vendor/local/lib/gstreamer-1.0/libgstautodetect.dll.a +0 -0
  416. data/vendor/local/lib/gstreamer-1.0/libgstautodetect.la +2 -2
  417. data/vendor/local/lib/gstreamer-1.0/libgstavi.dll +0 -0
  418. data/vendor/local/lib/gstreamer-1.0/libgstavi.dll.a +0 -0
  419. data/vendor/local/lib/gstreamer-1.0/libgstavi.la +2 -2
  420. data/vendor/local/lib/gstreamer-1.0/libgstbayer.dll +0 -0
  421. data/vendor/local/lib/gstreamer-1.0/libgstbayer.dll.a +0 -0
  422. data/vendor/local/lib/gstreamer-1.0/libgstbayer.la +2 -2
  423. data/vendor/local/lib/gstreamer-1.0/libgstcairo.dll +0 -0
  424. data/vendor/local/lib/gstreamer-1.0/libgstcairo.dll.a +0 -0
  425. data/vendor/local/lib/gstreamer-1.0/libgstcairo.la +3 -3
  426. data/vendor/local/lib/gstreamer-1.0/libgstcamerabin2.dll +0 -0
  427. data/vendor/local/lib/gstreamer-1.0/libgstcamerabin2.dll.a +0 -0
  428. data/vendor/local/lib/gstreamer-1.0/libgstcamerabin2.la +2 -2
  429. data/vendor/local/lib/gstreamer-1.0/libgstcoloreffects.dll +0 -0
  430. data/vendor/local/lib/gstreamer-1.0/libgstcoloreffects.dll.a +0 -0
  431. data/vendor/local/lib/gstreamer-1.0/libgstcoloreffects.la +2 -2
  432. data/vendor/local/lib/gstreamer-1.0/libgstcoreelements.dll +0 -0
  433. data/vendor/local/lib/gstreamer-1.0/libgstcoreelements.dll.a +0 -0
  434. data/vendor/local/lib/gstreamer-1.0/libgstcoreelements.la +2 -2
  435. data/vendor/local/lib/gstreamer-1.0/libgstcutter.dll +0 -0
  436. data/vendor/local/lib/gstreamer-1.0/libgstcutter.dll.a +0 -0
  437. data/vendor/local/lib/gstreamer-1.0/libgstcutter.la +2 -2
  438. data/vendor/local/lib/gstreamer-1.0/libgstd3dvideosink.dll +0 -0
  439. data/vendor/local/lib/gstreamer-1.0/libgstd3dvideosink.dll.a +0 -0
  440. data/vendor/local/lib/gstreamer-1.0/libgstd3dvideosink.la +2 -2
  441. data/vendor/local/lib/gstreamer-1.0/libgstdashdemux.dll +0 -0
  442. data/vendor/local/lib/gstreamer-1.0/libgstdashdemux.dll.a +0 -0
  443. data/vendor/local/lib/gstreamer-1.0/libgstdashdemux.la +41 -0
  444. data/vendor/local/lib/gstreamer-1.0/libgstdataurisrc.dll +0 -0
  445. data/vendor/local/lib/gstreamer-1.0/libgstdataurisrc.dll.a +0 -0
  446. data/vendor/local/lib/gstreamer-1.0/libgstdataurisrc.la +2 -2
  447. data/vendor/local/lib/gstreamer-1.0/libgstdebug.dll +0 -0
  448. data/vendor/local/lib/gstreamer-1.0/libgstdebug.dll.a +0 -0
  449. data/vendor/local/lib/gstreamer-1.0/libgstdebug.la +2 -2
  450. data/vendor/local/lib/gstreamer-1.0/libgstdebugutilsbad.dll +0 -0
  451. data/vendor/local/lib/gstreamer-1.0/libgstdebugutilsbad.dll.a +0 -0
  452. data/vendor/local/lib/gstreamer-1.0/libgstdebugutilsbad.la +2 -2
  453. data/vendor/local/lib/gstreamer-1.0/libgstdeinterlace.dll +0 -0
  454. data/vendor/local/lib/gstreamer-1.0/libgstdeinterlace.dll.a +0 -0
  455. data/vendor/local/lib/gstreamer-1.0/libgstdeinterlace.la +2 -2
  456. data/vendor/local/lib/gstreamer-1.0/libgstdirectsoundsink.dll +0 -0
  457. data/vendor/local/lib/gstreamer-1.0/libgstdirectsoundsink.dll.a +0 -0
  458. data/vendor/local/lib/gstreamer-1.0/libgstdirectsoundsink.la +2 -2
  459. data/vendor/local/lib/gstreamer-1.0/libgstdirectsoundsrc.dll +0 -0
  460. data/vendor/local/lib/gstreamer-1.0/libgstdirectsoundsrc.dll.a +0 -0
  461. data/vendor/local/lib/gstreamer-1.0/libgstdirectsoundsrc.la +2 -2
  462. data/vendor/local/lib/gstreamer-1.0/libgstdtmf.dll +0 -0
  463. data/vendor/local/lib/gstreamer-1.0/libgstdtmf.dll.a +0 -0
  464. data/vendor/local/lib/gstreamer-1.0/libgstdtmf.la +2 -2
  465. data/vendor/local/lib/gstreamer-1.0/libgstdvbsuboverlay.dll +0 -0
  466. data/vendor/local/lib/gstreamer-1.0/libgstdvbsuboverlay.dll.a +0 -0
  467. data/vendor/local/lib/gstreamer-1.0/libgstdvbsuboverlay.la +2 -2
  468. data/vendor/local/lib/gstreamer-1.0/libgstdvdspu.dll +0 -0
  469. data/vendor/local/lib/gstreamer-1.0/libgstdvdspu.dll.a +0 -0
  470. data/vendor/local/lib/gstreamer-1.0/libgstdvdspu.la +2 -2
  471. data/vendor/local/lib/gstreamer-1.0/libgsteffectv.dll +0 -0
  472. data/vendor/local/lib/gstreamer-1.0/libgsteffectv.dll.a +0 -0
  473. data/vendor/local/lib/gstreamer-1.0/libgsteffectv.la +2 -2
  474. data/vendor/local/lib/gstreamer-1.0/libgstencodebin.dll +0 -0
  475. data/vendor/local/lib/gstreamer-1.0/libgstencodebin.dll.a +0 -0
  476. data/vendor/local/lib/gstreamer-1.0/libgstencodebin.la +2 -2
  477. data/vendor/local/lib/gstreamer-1.0/libgstequalizer.dll +0 -0
  478. data/vendor/local/lib/gstreamer-1.0/libgstequalizer.dll.a +0 -0
  479. data/vendor/local/lib/gstreamer-1.0/libgstequalizer.la +2 -2
  480. data/vendor/local/lib/gstreamer-1.0/libgstfestival.dll +0 -0
  481. data/vendor/local/lib/gstreamer-1.0/libgstfestival.dll.a +0 -0
  482. data/vendor/local/lib/gstreamer-1.0/libgstfestival.la +2 -2
  483. data/vendor/local/lib/gstreamer-1.0/libgstfieldanalysis.dll +0 -0
  484. data/vendor/local/lib/gstreamer-1.0/libgstfieldanalysis.dll.a +0 -0
  485. data/vendor/local/lib/gstreamer-1.0/libgstfieldanalysis.la +2 -2
  486. data/vendor/local/lib/gstreamer-1.0/libgstflac.dll +0 -0
  487. data/vendor/local/lib/gstreamer-1.0/libgstflac.dll.a +0 -0
  488. data/vendor/local/lib/gstreamer-1.0/libgstflac.la +2 -2
  489. data/vendor/local/lib/gstreamer-1.0/libgstflv.dll +0 -0
  490. data/vendor/local/lib/gstreamer-1.0/libgstflv.dll.a +0 -0
  491. data/vendor/local/lib/gstreamer-1.0/libgstflv.la +2 -2
  492. data/vendor/local/lib/gstreamer-1.0/libgstflxdec.dll +0 -0
  493. data/vendor/local/lib/gstreamer-1.0/libgstflxdec.dll.a +0 -0
  494. data/vendor/local/lib/gstreamer-1.0/libgstflxdec.la +2 -2
  495. data/vendor/local/lib/gstreamer-1.0/libgstfragmented.dll +0 -0
  496. data/vendor/local/lib/gstreamer-1.0/libgstfragmented.dll.a +0 -0
  497. data/vendor/local/lib/gstreamer-1.0/libgstfragmented.la +2 -2
  498. data/vendor/local/lib/gstreamer-1.0/libgstfreeverb.dll +0 -0
  499. data/vendor/local/lib/gstreamer-1.0/libgstfreeverb.dll.a +0 -0
  500. data/vendor/local/lib/gstreamer-1.0/libgstfreeverb.la +41 -0
  501. data/vendor/local/lib/gstreamer-1.0/libgstfrei0r.dll +0 -0
  502. data/vendor/local/lib/gstreamer-1.0/libgstfrei0r.dll.a +0 -0
  503. data/vendor/local/lib/gstreamer-1.0/libgstfrei0r.la +2 -2
  504. data/vendor/local/lib/gstreamer-1.0/libgstgaudieffects.dll +0 -0
  505. data/vendor/local/lib/gstreamer-1.0/libgstgaudieffects.dll.a +0 -0
  506. data/vendor/local/lib/gstreamer-1.0/libgstgaudieffects.la +2 -2
  507. data/vendor/local/lib/gstreamer-1.0/libgstgdkpixbuf.dll +0 -0
  508. data/vendor/local/lib/gstreamer-1.0/libgstgdkpixbuf.dll.a +0 -0
  509. data/vendor/local/lib/gstreamer-1.0/libgstgdkpixbuf.la +2 -2
  510. data/vendor/local/lib/gstreamer-1.0/libgstgdp.dll +0 -0
  511. data/vendor/local/lib/gstreamer-1.0/libgstgdp.dll.a +0 -0
  512. data/vendor/local/lib/gstreamer-1.0/libgstgdp.la +2 -2
  513. data/vendor/local/lib/gstreamer-1.0/libgstgeometrictransform.dll +0 -0
  514. data/vendor/local/lib/gstreamer-1.0/libgstgeometrictransform.dll.a +0 -0
  515. data/vendor/local/lib/gstreamer-1.0/libgstgeometrictransform.la +2 -2
  516. data/vendor/local/lib/gstreamer-1.0/libgstgio.dll +0 -0
  517. data/vendor/local/lib/gstreamer-1.0/libgstgio.dll.a +0 -0
  518. data/vendor/local/lib/gstreamer-1.0/libgstgio.la +2 -2
  519. data/vendor/local/lib/gstreamer-1.0/libgstgoom.dll +0 -0
  520. data/vendor/local/lib/gstreamer-1.0/libgstgoom.dll.a +0 -0
  521. data/vendor/local/lib/gstreamer-1.0/libgstgoom.la +2 -2
  522. data/vendor/local/lib/gstreamer-1.0/libgstgoom2k1.dll +0 -0
  523. data/vendor/local/lib/gstreamer-1.0/libgstgoom2k1.dll.a +0 -0
  524. data/vendor/local/lib/gstreamer-1.0/libgstgoom2k1.la +2 -2
  525. data/vendor/local/lib/gstreamer-1.0/libgsticydemux.dll +0 -0
  526. data/vendor/local/lib/gstreamer-1.0/libgsticydemux.dll.a +0 -0
  527. data/vendor/local/lib/gstreamer-1.0/libgsticydemux.la +2 -2
  528. data/vendor/local/lib/gstreamer-1.0/libgstid3demux.dll +0 -0
  529. data/vendor/local/lib/gstreamer-1.0/libgstid3demux.dll.a +0 -0
  530. data/vendor/local/lib/gstreamer-1.0/libgstid3demux.la +2 -2
  531. data/vendor/local/lib/gstreamer-1.0/libgstid3tag.dll +0 -0
  532. data/vendor/local/lib/gstreamer-1.0/libgstid3tag.dll.a +0 -0
  533. data/vendor/local/lib/gstreamer-1.0/libgstid3tag.la +2 -2
  534. data/vendor/local/lib/gstreamer-1.0/libgstimagefreeze.dll +0 -0
  535. data/vendor/local/lib/gstreamer-1.0/libgstimagefreeze.dll.a +0 -0
  536. data/vendor/local/lib/gstreamer-1.0/libgstimagefreeze.la +2 -2
  537. data/vendor/local/lib/gstreamer-1.0/libgstinter.dll +0 -0
  538. data/vendor/local/lib/gstreamer-1.0/libgstinter.dll.a +0 -0
  539. data/vendor/local/lib/gstreamer-1.0/libgstinter.la +2 -2
  540. data/vendor/local/lib/gstreamer-1.0/libgstinterlace.dll +0 -0
  541. data/vendor/local/lib/gstreamer-1.0/libgstinterlace.dll.a +0 -0
  542. data/vendor/local/lib/gstreamer-1.0/libgstinterlace.la +2 -2
  543. data/vendor/local/lib/gstreamer-1.0/libgstinterleave.dll +0 -0
  544. data/vendor/local/lib/gstreamer-1.0/libgstinterleave.dll.a +0 -0
  545. data/vendor/local/lib/gstreamer-1.0/libgstinterleave.la +2 -2
  546. data/vendor/local/lib/gstreamer-1.0/libgstisomp4.dll +0 -0
  547. data/vendor/local/lib/gstreamer-1.0/libgstisomp4.dll.a +0 -0
  548. data/vendor/local/lib/gstreamer-1.0/libgstisomp4.la +2 -2
  549. data/vendor/local/lib/gstreamer-1.0/libgstivtc.dll +0 -0
  550. data/vendor/local/lib/gstreamer-1.0/libgstivtc.dll.a +0 -0
  551. data/vendor/local/lib/gstreamer-1.0/libgstivtc.la +41 -0
  552. data/vendor/local/lib/gstreamer-1.0/libgstjpeg.dll +0 -0
  553. data/vendor/local/lib/gstreamer-1.0/libgstjpeg.dll.a +0 -0
  554. data/vendor/local/lib/gstreamer-1.0/libgstjpeg.la +2 -2
  555. data/vendor/local/lib/gstreamer-1.0/libgstjpegformat.dll +0 -0
  556. data/vendor/local/lib/gstreamer-1.0/libgstjpegformat.dll.a +0 -0
  557. data/vendor/local/lib/gstreamer-1.0/libgstjpegformat.la +2 -2
  558. data/vendor/local/lib/gstreamer-1.0/libgstlevel.dll +0 -0
  559. data/vendor/local/lib/gstreamer-1.0/libgstlevel.dll.a +0 -0
  560. data/vendor/local/lib/gstreamer-1.0/libgstlevel.la +2 -2
  561. data/vendor/local/lib/gstreamer-1.0/libgstlibav.dll +0 -0
  562. data/vendor/local/lib/gstreamer-1.0/libgstlibav.dll.a +0 -0
  563. data/vendor/local/lib/gstreamer-1.0/libgstlibav.la +2 -2
  564. data/vendor/local/lib/gstreamer-1.0/libgstliveadder.dll +0 -0
  565. data/vendor/local/lib/gstreamer-1.0/libgstliveadder.dll.a +0 -0
  566. data/vendor/local/lib/gstreamer-1.0/libgstliveadder.la +2 -2
  567. data/vendor/local/lib/gstreamer-1.0/libgstmatroska.dll +0 -0
  568. data/vendor/local/lib/gstreamer-1.0/libgstmatroska.dll.a +0 -0
  569. data/vendor/local/lib/gstreamer-1.0/libgstmatroska.la +2 -2
  570. data/vendor/local/lib/gstreamer-1.0/libgstmidi.dll +0 -0
  571. data/vendor/local/lib/gstreamer-1.0/libgstmidi.dll.a +0 -0
  572. data/vendor/local/lib/gstreamer-1.0/libgstmidi.la +41 -0
  573. data/vendor/local/lib/gstreamer-1.0/libgstmpegpsdemux.dll +0 -0
  574. data/vendor/local/lib/gstreamer-1.0/libgstmpegpsdemux.dll.a +0 -0
  575. data/vendor/local/lib/gstreamer-1.0/libgstmpegpsdemux.la +2 -2
  576. data/vendor/local/lib/gstreamer-1.0/libgstmpegpsmux.dll +0 -0
  577. data/vendor/local/lib/gstreamer-1.0/libgstmpegpsmux.dll.a +0 -0
  578. data/vendor/local/lib/gstreamer-1.0/libgstmpegpsmux.la +2 -2
  579. data/vendor/local/lib/gstreamer-1.0/libgstmpegtsdemux.dll +0 -0
  580. data/vendor/local/lib/gstreamer-1.0/libgstmpegtsdemux.dll.a +0 -0
  581. data/vendor/local/lib/gstreamer-1.0/libgstmpegtsdemux.la +2 -2
  582. data/vendor/local/lib/gstreamer-1.0/libgstmpegtsmux.dll +0 -0
  583. data/vendor/local/lib/gstreamer-1.0/libgstmpegtsmux.dll.a +0 -0
  584. data/vendor/local/lib/gstreamer-1.0/libgstmpegtsmux.la +2 -2
  585. data/vendor/local/lib/gstreamer-1.0/libgstmulaw.dll +0 -0
  586. data/vendor/local/lib/gstreamer-1.0/libgstmulaw.dll.a +0 -0
  587. data/vendor/local/lib/gstreamer-1.0/libgstmulaw.la +2 -2
  588. data/vendor/local/lib/gstreamer-1.0/libgstmultifile.dll +0 -0
  589. data/vendor/local/lib/gstreamer-1.0/libgstmultifile.dll.a +0 -0
  590. data/vendor/local/lib/gstreamer-1.0/libgstmultifile.la +2 -2
  591. data/vendor/local/lib/gstreamer-1.0/libgstmultipart.dll +0 -0
  592. data/vendor/local/lib/gstreamer-1.0/libgstmultipart.dll.a +0 -0
  593. data/vendor/local/lib/gstreamer-1.0/libgstmultipart.la +2 -2
  594. data/vendor/local/lib/gstreamer-1.0/libgstmxf.dll +0 -0
  595. data/vendor/local/lib/gstreamer-1.0/libgstmxf.dll.a +0 -0
  596. data/vendor/local/lib/gstreamer-1.0/libgstmxf.la +41 -0
  597. data/vendor/local/lib/gstreamer-1.0/libgstnavigationtest.dll +0 -0
  598. data/vendor/local/lib/gstreamer-1.0/libgstnavigationtest.dll.a +0 -0
  599. data/vendor/local/lib/gstreamer-1.0/libgstnavigationtest.la +2 -2
  600. data/vendor/local/lib/gstreamer-1.0/libgstogg.dll +0 -0
  601. data/vendor/local/lib/gstreamer-1.0/libgstogg.dll.a +0 -0
  602. data/vendor/local/lib/gstreamer-1.0/libgstogg.la +2 -2
  603. data/vendor/local/lib/gstreamer-1.0/libgstpango.dll +0 -0
  604. data/vendor/local/lib/gstreamer-1.0/libgstpango.dll.a +0 -0
  605. data/vendor/local/lib/gstreamer-1.0/libgstpango.la +3 -3
  606. data/vendor/local/lib/gstreamer-1.0/libgstpcapparse.dll +0 -0
  607. data/vendor/local/lib/gstreamer-1.0/libgstpcapparse.dll.a +0 -0
  608. data/vendor/local/lib/gstreamer-1.0/libgstpcapparse.la +2 -2
  609. data/vendor/local/lib/gstreamer-1.0/libgstplayback.dll +0 -0
  610. data/vendor/local/lib/gstreamer-1.0/libgstplayback.dll.a +0 -0
  611. data/vendor/local/lib/gstreamer-1.0/libgstplayback.la +2 -2
  612. data/vendor/local/lib/gstreamer-1.0/libgstpng.dll +0 -0
  613. data/vendor/local/lib/gstreamer-1.0/libgstpng.dll.a +0 -0
  614. data/vendor/local/lib/gstreamer-1.0/libgstpng.la +2 -2
  615. data/vendor/local/lib/gstreamer-1.0/libgstpnm.dll +0 -0
  616. data/vendor/local/lib/gstreamer-1.0/libgstpnm.dll.a +0 -0
  617. data/vendor/local/lib/gstreamer-1.0/libgstpnm.la +2 -2
  618. data/vendor/local/lib/gstreamer-1.0/libgstrawparse.dll +0 -0
  619. data/vendor/local/lib/gstreamer-1.0/libgstrawparse.dll.a +0 -0
  620. data/vendor/local/lib/gstreamer-1.0/libgstrawparse.la +2 -2
  621. data/vendor/local/lib/gstreamer-1.0/libgstremovesilence.dll +0 -0
  622. data/vendor/local/lib/gstreamer-1.0/libgstremovesilence.dll.a +0 -0
  623. data/vendor/local/lib/gstreamer-1.0/libgstremovesilence.la +2 -2
  624. data/vendor/local/lib/gstreamer-1.0/libgstreplaygain.dll +0 -0
  625. data/vendor/local/lib/gstreamer-1.0/libgstreplaygain.dll.a +0 -0
  626. data/vendor/local/lib/gstreamer-1.0/libgstreplaygain.la +2 -2
  627. data/vendor/local/lib/gstreamer-1.0/libgstrtp.dll +0 -0
  628. data/vendor/local/lib/gstreamer-1.0/libgstrtp.dll.a +0 -0
  629. data/vendor/local/lib/gstreamer-1.0/libgstrtp.la +2 -2
  630. data/vendor/local/lib/gstreamer-1.0/libgstrtpmanager.dll +0 -0
  631. data/vendor/local/lib/gstreamer-1.0/libgstrtpmanager.dll.a +0 -0
  632. data/vendor/local/lib/gstreamer-1.0/libgstrtpmanager.la +2 -2
  633. data/vendor/local/lib/gstreamer-1.0/libgstrtsp.dll +0 -0
  634. data/vendor/local/lib/gstreamer-1.0/libgstrtsp.dll.a +0 -0
  635. data/vendor/local/lib/gstreamer-1.0/libgstrtsp.la +2 -2
  636. data/vendor/local/lib/gstreamer-1.0/libgstsdpelem.dll +0 -0
  637. data/vendor/local/lib/gstreamer-1.0/libgstsdpelem.dll.a +0 -0
  638. data/vendor/local/lib/gstreamer-1.0/libgstsdpelem.la +2 -2
  639. data/vendor/local/lib/gstreamer-1.0/libgstsegmentclip.dll +0 -0
  640. data/vendor/local/lib/gstreamer-1.0/libgstsegmentclip.dll.a +0 -0
  641. data/vendor/local/lib/gstreamer-1.0/libgstsegmentclip.la +2 -2
  642. data/vendor/local/lib/gstreamer-1.0/libgstshapewipe.dll +0 -0
  643. data/vendor/local/lib/gstreamer-1.0/libgstshapewipe.dll.a +0 -0
  644. data/vendor/local/lib/gstreamer-1.0/libgstshapewipe.la +2 -2
  645. data/vendor/local/lib/gstreamer-1.0/libgstsiren.dll +0 -0
  646. data/vendor/local/lib/gstreamer-1.0/libgstsiren.dll.a +0 -0
  647. data/vendor/local/lib/gstreamer-1.0/libgstsiren.la +2 -2
  648. data/vendor/local/lib/gstreamer-1.0/libgstsmooth.dll +0 -0
  649. data/vendor/local/lib/gstreamer-1.0/libgstsmooth.dll.a +0 -0
  650. data/vendor/local/lib/gstreamer-1.0/libgstsmooth.la +2 -2
  651. data/vendor/local/lib/gstreamer-1.0/libgstsmoothstreaming.dll +0 -0
  652. data/vendor/local/lib/gstreamer-1.0/libgstsmoothstreaming.dll.a +0 -0
  653. data/vendor/local/lib/gstreamer-1.0/libgstsmoothstreaming.la +41 -0
  654. data/vendor/local/lib/gstreamer-1.0/libgstsmpte.dll +0 -0
  655. data/vendor/local/lib/gstreamer-1.0/libgstsmpte.dll.a +0 -0
  656. data/vendor/local/lib/gstreamer-1.0/libgstsmpte.la +2 -2
  657. data/vendor/local/lib/gstreamer-1.0/libgstsouphttpsrc.dll +0 -0
  658. data/vendor/local/lib/gstreamer-1.0/libgstsouphttpsrc.dll.a +0 -0
  659. data/vendor/local/lib/gstreamer-1.0/libgstsouphttpsrc.la +2 -2
  660. data/vendor/local/lib/gstreamer-1.0/libgstspectrum.dll +0 -0
  661. data/vendor/local/lib/gstreamer-1.0/libgstspectrum.dll.a +0 -0
  662. data/vendor/local/lib/gstreamer-1.0/libgstspectrum.la +2 -2
  663. data/vendor/local/lib/gstreamer-1.0/libgstspeed.dll +0 -0
  664. data/vendor/local/lib/gstreamer-1.0/libgstspeed.dll.a +0 -0
  665. data/vendor/local/lib/gstreamer-1.0/libgstspeed.la +2 -2
  666. data/vendor/local/lib/gstreamer-1.0/libgstspeex.dll +0 -0
  667. data/vendor/local/lib/gstreamer-1.0/libgstspeex.dll.a +0 -0
  668. data/vendor/local/lib/gstreamer-1.0/libgstspeex.la +2 -2
  669. data/vendor/local/lib/gstreamer-1.0/libgstsubenc.dll +0 -0
  670. data/vendor/local/lib/gstreamer-1.0/libgstsubenc.dll.a +0 -0
  671. data/vendor/local/lib/gstreamer-1.0/libgstsubenc.la +2 -2
  672. data/vendor/local/lib/gstreamer-1.0/libgstsubparse.dll +0 -0
  673. data/vendor/local/lib/gstreamer-1.0/libgstsubparse.dll.a +0 -0
  674. data/vendor/local/lib/gstreamer-1.0/libgstsubparse.la +2 -2
  675. data/vendor/local/lib/gstreamer-1.0/libgsttcp.dll +0 -0
  676. data/vendor/local/lib/gstreamer-1.0/libgsttcp.dll.a +0 -0
  677. data/vendor/local/lib/gstreamer-1.0/libgsttcp.la +2 -2
  678. data/vendor/local/lib/gstreamer-1.0/libgsttheora.dll +0 -0
  679. data/vendor/local/lib/gstreamer-1.0/libgsttheora.dll.a +0 -0
  680. data/vendor/local/lib/gstreamer-1.0/libgsttheora.la +2 -2
  681. data/vendor/local/lib/gstreamer-1.0/libgsttypefindfunctions.dll +0 -0
  682. data/vendor/local/lib/gstreamer-1.0/libgsttypefindfunctions.dll.a +0 -0
  683. data/vendor/local/lib/gstreamer-1.0/libgsttypefindfunctions.la +2 -2
  684. data/vendor/local/lib/gstreamer-1.0/libgstudp.dll +0 -0
  685. data/vendor/local/lib/gstreamer-1.0/libgstudp.dll.a +0 -0
  686. data/vendor/local/lib/gstreamer-1.0/libgstudp.la +2 -2
  687. data/vendor/local/lib/gstreamer-1.0/libgstvideobox.dll +0 -0
  688. data/vendor/local/lib/gstreamer-1.0/libgstvideobox.dll.a +0 -0
  689. data/vendor/local/lib/gstreamer-1.0/libgstvideobox.la +2 -2
  690. data/vendor/local/lib/gstreamer-1.0/libgstvideoconvert.dll +0 -0
  691. data/vendor/local/lib/gstreamer-1.0/libgstvideoconvert.dll.a +0 -0
  692. data/vendor/local/lib/gstreamer-1.0/libgstvideoconvert.la +2 -2
  693. data/vendor/local/lib/gstreamer-1.0/libgstvideocrop.dll +0 -0
  694. data/vendor/local/lib/gstreamer-1.0/libgstvideocrop.dll.a +0 -0
  695. data/vendor/local/lib/gstreamer-1.0/libgstvideocrop.la +2 -2
  696. data/vendor/local/lib/gstreamer-1.0/libgstvideofilter.dll +0 -0
  697. data/vendor/local/lib/gstreamer-1.0/libgstvideofilter.dll.a +0 -0
  698. data/vendor/local/lib/gstreamer-1.0/libgstvideofilter.la +2 -2
  699. data/vendor/local/lib/gstreamer-1.0/libgstvideofiltersbad.dll +0 -0
  700. data/vendor/local/lib/gstreamer-1.0/libgstvideofiltersbad.dll.a +0 -0
  701. data/vendor/local/lib/gstreamer-1.0/libgstvideofiltersbad.la +41 -0
  702. data/vendor/local/lib/gstreamer-1.0/libgstvideomixer.dll +0 -0
  703. data/vendor/local/lib/gstreamer-1.0/libgstvideomixer.dll.a +0 -0
  704. data/vendor/local/lib/gstreamer-1.0/libgstvideomixer.la +2 -2
  705. data/vendor/local/lib/gstreamer-1.0/libgstvideoparsersbad.dll +0 -0
  706. data/vendor/local/lib/gstreamer-1.0/libgstvideoparsersbad.dll.a +0 -0
  707. data/vendor/local/lib/gstreamer-1.0/libgstvideoparsersbad.la +2 -2
  708. data/vendor/local/lib/gstreamer-1.0/libgstvideorate.dll +0 -0
  709. data/vendor/local/lib/gstreamer-1.0/libgstvideorate.dll.a +0 -0
  710. data/vendor/local/lib/gstreamer-1.0/libgstvideorate.la +2 -2
  711. data/vendor/local/lib/gstreamer-1.0/libgstvideoscale.dll +0 -0
  712. data/vendor/local/lib/gstreamer-1.0/libgstvideoscale.dll.a +0 -0
  713. data/vendor/local/lib/gstreamer-1.0/libgstvideoscale.la +2 -2
  714. data/vendor/local/lib/gstreamer-1.0/libgstvideotestsrc.dll +0 -0
  715. data/vendor/local/lib/gstreamer-1.0/libgstvideotestsrc.dll.a +0 -0
  716. data/vendor/local/lib/gstreamer-1.0/libgstvideotestsrc.la +2 -2
  717. data/vendor/local/lib/gstreamer-1.0/libgstvolume.dll +0 -0
  718. data/vendor/local/lib/gstreamer-1.0/libgstvolume.dll.a +0 -0
  719. data/vendor/local/lib/gstreamer-1.0/libgstvolume.la +2 -2
  720. data/vendor/local/lib/gstreamer-1.0/libgstvorbis.dll +0 -0
  721. data/vendor/local/lib/gstreamer-1.0/libgstvorbis.dll.a +0 -0
  722. data/vendor/local/lib/gstreamer-1.0/libgstvorbis.la +2 -2
  723. data/vendor/local/lib/gstreamer-1.0/libgstwasapi.dll +0 -0
  724. data/vendor/local/lib/gstreamer-1.0/libgstwasapi.dll.a +0 -0
  725. data/vendor/local/lib/gstreamer-1.0/libgstwasapi.la +41 -0
  726. data/vendor/local/lib/gstreamer-1.0/libgstwaveformsink.dll +0 -0
  727. data/vendor/local/lib/gstreamer-1.0/libgstwaveformsink.dll.a +0 -0
  728. data/vendor/local/lib/gstreamer-1.0/libgstwaveformsink.la +2 -2
  729. data/vendor/local/lib/gstreamer-1.0/libgstwavenc.dll +0 -0
  730. data/vendor/local/lib/gstreamer-1.0/libgstwavenc.dll.a +0 -0
  731. data/vendor/local/lib/gstreamer-1.0/libgstwavenc.la +2 -2
  732. data/vendor/local/lib/gstreamer-1.0/libgstwavparse.dll +0 -0
  733. data/vendor/local/lib/gstreamer-1.0/libgstwavparse.dll.a +0 -0
  734. data/vendor/local/lib/gstreamer-1.0/libgstwavparse.la +2 -2
  735. data/vendor/local/lib/gstreamer-1.0/libgstwinscreencap.dll +0 -0
  736. data/vendor/local/lib/gstreamer-1.0/libgstwinscreencap.dll.a +0 -0
  737. data/vendor/local/lib/gstreamer-1.0/libgstwinscreencap.la +41 -0
  738. data/vendor/local/lib/gstreamer-1.0/libgsty4mdec.dll +0 -0
  739. data/vendor/local/lib/gstreamer-1.0/libgsty4mdec.dll.a +0 -0
  740. data/vendor/local/lib/gstreamer-1.0/libgsty4mdec.la +2 -2
  741. data/vendor/local/lib/gstreamer-1.0/libgsty4menc.dll +0 -0
  742. data/vendor/local/lib/gstreamer-1.0/libgsty4menc.dll.a +0 -0
  743. data/vendor/local/lib/gstreamer-1.0/libgsty4menc.la +2 -2
  744. data/vendor/local/lib/gstreamer-1.0/libgstyadif.dll +0 -0
  745. data/vendor/local/lib/gstreamer-1.0/libgstyadif.dll.a +0 -0
  746. data/vendor/local/lib/gstreamer-1.0/libgstyadif.la +41 -0
  747. data/vendor/local/lib/libFLAC.dll.a +0 -0
  748. data/vendor/local/lib/libFLAC.la +4 -4
  749. data/vendor/local/lib/libgstallocators-1.0.dll.a +0 -0
  750. data/vendor/local/lib/libgstallocators-1.0.la +41 -0
  751. data/vendor/local/lib/libgstapp-1.0.dll.a +0 -0
  752. data/vendor/local/lib/libgstapp-1.0.la +4 -4
  753. data/vendor/local/lib/libgstaudio-1.0.dll.a +0 -0
  754. data/vendor/local/lib/libgstaudio-1.0.la +4 -4
  755. data/vendor/local/lib/libgstbase-1.0.dll.a +0 -0
  756. data/vendor/local/lib/libgstbase-1.0.la +4 -4
  757. data/vendor/local/lib/libgstbasecamerabinsrc-1.0.dll.a +0 -0
  758. data/vendor/local/lib/libgstbasecamerabinsrc-1.0.la +4 -4
  759. data/vendor/local/lib/libgstcheck-1.0.dll.a +0 -0
  760. data/vendor/local/lib/libgstcheck-1.0.la +4 -4
  761. data/vendor/local/lib/libgstcodecparsers-1.0.dll.a +0 -0
  762. data/vendor/local/lib/libgstcodecparsers-1.0.la +4 -4
  763. data/vendor/local/lib/libgstcontroller-1.0.dll.a +0 -0
  764. data/vendor/local/lib/libgstcontroller-1.0.la +4 -4
  765. data/vendor/local/lib/libgstfft-1.0.dll.a +0 -0
  766. data/vendor/local/lib/libgstfft-1.0.la +4 -4
  767. data/vendor/local/lib/libgstinsertbin-1.0.dll.a +0 -0
  768. data/vendor/local/lib/libgstinsertbin-1.0.la +41 -0
  769. data/vendor/local/lib/libgstmpegts-1.0.dll.a +0 -0
  770. data/vendor/local/lib/libgstmpegts-1.0.la +41 -0
  771. data/vendor/local/lib/libgstnet-1.0.dll.a +0 -0
  772. data/vendor/local/lib/libgstnet-1.0.la +4 -4
  773. data/vendor/local/lib/libgstpbutils-1.0.dll.a +0 -0
  774. data/vendor/local/lib/libgstpbutils-1.0.la +4 -4
  775. data/vendor/local/lib/libgstphotography-1.0.dll.a +0 -0
  776. data/vendor/local/lib/libgstphotography-1.0.la +4 -4
  777. data/vendor/local/lib/libgstreamer-1.0.dll.a +0 -0
  778. data/vendor/local/lib/libgstreamer-1.0.la +4 -4
  779. data/vendor/local/lib/libgstriff-1.0.dll.a +0 -0
  780. data/vendor/local/lib/libgstriff-1.0.la +4 -4
  781. data/vendor/local/lib/libgstrtp-1.0.dll.a +0 -0
  782. data/vendor/local/lib/libgstrtp-1.0.la +4 -4
  783. data/vendor/local/lib/libgstrtsp-1.0.dll.a +0 -0
  784. data/vendor/local/lib/libgstrtsp-1.0.la +4 -4
  785. data/vendor/local/lib/libgstsdp-1.0.dll.a +0 -0
  786. data/vendor/local/lib/libgstsdp-1.0.la +4 -4
  787. data/vendor/local/lib/libgsttag-1.0.dll.a +0 -0
  788. data/vendor/local/lib/libgsttag-1.0.la +4 -4
  789. data/vendor/local/lib/libgsturidownloader-1.0.dll.a +0 -0
  790. data/vendor/local/lib/libgsturidownloader-1.0.la +41 -0
  791. data/vendor/local/lib/libgstvideo-1.0.dll.a +0 -0
  792. data/vendor/local/lib/libgstvideo-1.0.la +4 -4
  793. data/vendor/local/lib/libjpeg.a +0 -0
  794. data/vendor/local/lib/libjpeg.dll.a +0 -0
  795. data/vendor/local/lib/libjpeg.la +41 -0
  796. data/vendor/local/lib/libogg.a +0 -0
  797. data/vendor/local/lib/libogg.dll.a +0 -0
  798. data/vendor/local/lib/libogg.la +2 -2
  799. data/vendor/local/lib/libsoup-2.4.a +0 -0
  800. data/vendor/local/lib/libsoup-2.4.dll.a +0 -0
  801. data/vendor/local/lib/libsoup-2.4.la +41 -0
  802. data/vendor/local/lib/libspeex.a +0 -0
  803. data/vendor/local/lib/libspeex.dll.a +0 -0
  804. data/vendor/local/lib/libspeexdsp.a +0 -0
  805. data/vendor/local/lib/libspeexdsp.dll.a +0 -0
  806. data/vendor/local/lib/libsqlite3.a +0 -0
  807. data/vendor/local/lib/libsqlite3.dll.a +0 -0
  808. data/vendor/local/lib/libsqlite3.la +41 -0
  809. data/vendor/local/lib/libtheora.a +0 -0
  810. data/vendor/local/lib/libtheora.dll.a +0 -0
  811. data/vendor/local/lib/libtheoradec.a +0 -0
  812. data/vendor/local/lib/libtheoradec.dll.a +0 -0
  813. data/vendor/local/lib/libtheoraenc.a +0 -0
  814. data/vendor/local/lib/libtheoraenc.dll.a +0 -0
  815. data/vendor/local/lib/libvorbis.a +0 -0
  816. data/vendor/local/lib/libvorbis.dll.a +0 -0
  817. data/vendor/local/lib/libvorbis.la +2 -2
  818. data/vendor/local/lib/libvorbisenc.a +0 -0
  819. data/vendor/local/lib/libvorbisenc.dll.a +0 -0
  820. data/vendor/local/lib/libvorbisenc.la +2 -2
  821. data/vendor/local/lib/libvorbisfile.a +0 -0
  822. data/vendor/local/lib/libvorbisfile.dll.a +0 -0
  823. data/vendor/local/lib/libvorbisfile.la +2 -2
  824. data/vendor/local/lib/pkgconfig/flac.pc +5 -3
  825. data/vendor/local/lib/pkgconfig/gstreamer-1.0.pc +3 -2
  826. data/vendor/local/lib/pkgconfig/gstreamer-allocators-1.0.pc +16 -0
  827. data/vendor/local/lib/pkgconfig/gstreamer-app-1.0.pc +1 -1
  828. data/vendor/local/lib/pkgconfig/gstreamer-audio-1.0.pc +1 -1
  829. data/vendor/local/lib/pkgconfig/gstreamer-base-1.0.pc +1 -1
  830. data/vendor/local/lib/pkgconfig/gstreamer-check-1.0.pc +1 -1
  831. data/vendor/local/lib/pkgconfig/gstreamer-codecparsers-1.0.pc +1 -1
  832. data/vendor/local/lib/pkgconfig/gstreamer-controller-1.0.pc +1 -1
  833. data/vendor/local/lib/pkgconfig/gstreamer-fft-1.0.pc +1 -1
  834. data/vendor/local/lib/pkgconfig/gstreamer-insertbin-1.0.pc +12 -0
  835. data/vendor/local/lib/pkgconfig/gstreamer-mpegts-1.0.pc +12 -0
  836. data/vendor/local/lib/pkgconfig/gstreamer-net-1.0.pc +1 -1
  837. data/vendor/local/lib/pkgconfig/gstreamer-pbutils-1.0.pc +1 -1
  838. data/vendor/local/lib/pkgconfig/gstreamer-plugins-bad-1.0.pc +6 -4
  839. data/vendor/local/lib/pkgconfig/gstreamer-plugins-base-1.0.pc +2 -2
  840. data/vendor/local/lib/pkgconfig/gstreamer-riff-1.0.pc +1 -1
  841. data/vendor/local/lib/pkgconfig/gstreamer-rtp-1.0.pc +1 -1
  842. data/vendor/local/lib/pkgconfig/gstreamer-rtsp-1.0.pc +1 -1
  843. data/vendor/local/lib/pkgconfig/gstreamer-sdp-1.0.pc +1 -1
  844. data/vendor/local/lib/pkgconfig/gstreamer-tag-1.0.pc +1 -1
  845. data/vendor/local/lib/pkgconfig/gstreamer-video-1.0.pc +1 -1
  846. data/vendor/local/lib/pkgconfig/libsoup-2.4.pc +2 -2
  847. data/vendor/local/lib/pkgconfig/ogg.pc +1 -1
  848. data/vendor/local/lib/pkgconfig/sqlite3.pc +13 -0
  849. data/vendor/local/lib/pkgconfig/vorbis.pc +1 -1
  850. data/vendor/local/lib/pkgconfig/vorbisenc.pc +1 -1
  851. data/vendor/local/lib/pkgconfig/vorbisfile.pc +1 -1
  852. data/vendor/local/libexec/gstreamer-1.0/gst-plugin-scanner.exe +0 -0
  853. data/vendor/local/share/aclocal/libFLAC.m4 +9 -5
  854. data/vendor/local/share/aclocal/ogg.m4 +1 -1
  855. data/vendor/local/share/doc/flac-1.3.0/FLAC.tag +10355 -0
  856. data/vendor/local/share/doc/flac-1.3.0/html/api/_09_2all_8h_source.html +125 -0
  857. data/vendor/local/share/doc/flac-1.3.0/html/api/_09_2export_8h.html +102 -0
  858. data/vendor/local/share/doc/flac-1.3.0/html/api/_09_2export_8h_source.html +142 -0
  859. data/vendor/local/share/doc/flac-1.3.0/html/api/_09_2metadata_8h.html +144 -0
  860. data/vendor/local/share/doc/flac-1.3.0/html/api/_09_2metadata_8h_source.html +992 -0
  861. data/vendor/local/share/doc/flac-1.3.0/html/api/all_8h_source.html +131 -0
  862. data/vendor/local/share/doc/flac-1.3.0/html/api/annotated.html +134 -0
  863. data/vendor/local/share/doc/flac-1.3.0/html/api/assert_8h_source.html +125 -0
  864. data/vendor/local/share/doc/flac-1.3.0/html/api/bc_s.png +0 -0
  865. data/vendor/local/share/doc/flac-1.3.0/html/api/bdwn.png +0 -0
  866. data/vendor/local/share/doc/flac-1.3.0/html/api/callback_8h.html +112 -0
  867. data/vendor/local/share/doc/flac-1.3.0/html/api/callback_8h_source.html +159 -0
  868. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Decoder_1_1File-members.html +140 -0
  869. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Decoder_1_1File.html +1315 -0
  870. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Decoder_1_1File.png +0 -0
  871. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Decoder_1_1Stream-members.html +132 -0
  872. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Decoder_1_1Stream.html +1163 -0
  873. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Decoder_1_1Stream.png +0 -0
  874. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State-members.html +89 -0
  875. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State.html +114 -0
  876. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Encoder_1_1File-members.html +155 -0
  877. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Encoder_1_1File.html +1915 -0
  878. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Encoder_1_1File.png +0 -0
  879. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Encoder_1_1Stream-members.html +146 -0
  880. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Encoder_1_1Stream.html +1721 -0
  881. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Encoder_1_1Stream.png +0 -0
  882. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State-members.html +89 -0
  883. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State.html +114 -0
  884. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Application-members.html +122 -0
  885. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Application.html +770 -0
  886. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Application.png +0 -0
  887. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Chain-members.html +99 -0
  888. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Chain.html +399 -0
  889. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status-members.html +88 -0
  890. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status.html +111 -0
  891. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1CueSheet-members.html +137 -0
  892. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1CueSheet.html +1056 -0
  893. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1CueSheet.png +0 -0
  894. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html +105 -0
  895. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html +183 -0
  896. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Iterator-members.html +98 -0
  897. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Iterator.html +305 -0
  898. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Padding-members.html +119 -0
  899. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Padding.html +766 -0
  900. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Padding.png +0 -0
  901. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Picture-members.html +134 -0
  902. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Picture.html +865 -0
  903. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Picture.png +0 -0
  904. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Prototype-members.html +109 -0
  905. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Prototype.html +456 -0
  906. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Prototype.png +0 -0
  907. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1SeekTable-members.html +130 -0
  908. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1SeekTable.html +1003 -0
  909. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1SeekTable.png +0 -0
  910. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1SimpleIterator-members.html +103 -0
  911. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1SimpleIterator.html +442 -0
  912. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status-members.html +88 -0
  913. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html +111 -0
  914. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1StreamInfo-members.html +135 -0
  915. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1StreamInfo.html +1062 -0
  916. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1StreamInfo.png +0 -0
  917. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Unknown-members.html +120 -0
  918. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Unknown.html +764 -0
  919. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1Unknown.png +0 -0
  920. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1VorbisComment-members.html +130 -0
  921. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1VorbisComment.html +983 -0
  922. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1VorbisComment.png +0 -0
  923. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html +111 -0
  924. data/vendor/local/share/doc/flac-1.3.0/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html +203 -0
  925. data/vendor/local/share/doc/flac-1.3.0/html/api/classes.html +108 -0
  926. data/vendor/local/share/doc/flac-1.3.0/html/api/closed.png +0 -0
  927. data/vendor/local/share/doc/flac-1.3.0/html/api/decoder_8h.html +99 -0
  928. data/vendor/local/share/doc/flac-1.3.0/html/api/decoder_8h_source.html +256 -0
  929. data/vendor/local/share/doc/flac-1.3.0/html/api/dir_1982b5890de532b4beef7221dae776e2.html +95 -0
  930. data/vendor/local/share/doc/flac-1.3.0/html/api/dir_527642952c2881b3e5b36abb4a29ebef.html +87 -0
  931. data/vendor/local/share/doc/flac-1.3.0/html/api/dir_d44c64559bbebec7f509842c48db8b23.html +81 -0
  932. data/vendor/local/share/doc/flac-1.3.0/html/api/doxygen.css +1357 -0
  933. data/vendor/local/share/doc/flac-1.3.0/html/api/doxygen.png +0 -0
  934. data/vendor/local/share/doc/flac-1.3.0/html/api/dynsections.js +97 -0
  935. data/vendor/local/share/doc/flac-1.3.0/html/api/encoder_8h.html +100 -0
  936. data/vendor/local/share/doc/flac-1.3.0/html/api/encoder_8h_source.html +270 -0
  937. data/vendor/local/share/doc/flac-1.3.0/html/api/export_8h.html +105 -0
  938. data/vendor/local/share/doc/flac-1.3.0/html/api/export_8h_source.html +149 -0
  939. data/vendor/local/share/doc/flac-1.3.0/html/api/files.html +96 -0
  940. data/vendor/local/share/doc/flac-1.3.0/html/api/format_8h.html +440 -0
  941. data/vendor/local/share/doc/flac-1.3.0/html/api/format_8h_source.html +785 -0
  942. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2blank.png +0 -0
  943. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2cl.png +0 -0
  944. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2doc.png +0 -0
  945. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2folderclosed.png +0 -0
  946. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2folderopen.png +0 -0
  947. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2lastnode.png +0 -0
  948. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2link.png +0 -0
  949. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2mlastnode.png +0 -0
  950. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2mnode.png +0 -0
  951. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2mo.png +0 -0
  952. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2node.png +0 -0
  953. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2ns.png +0 -0
  954. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2plastnode.png +0 -0
  955. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2pnode.png +0 -0
  956. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2splitbar.png +0 -0
  957. data/vendor/local/share/doc/flac-1.3.0/html/api/ftv2vertline.png +0 -0
  958. data/vendor/local/share/doc/flac-1.3.0/html/api/functions.html +129 -0
  959. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x62.html +116 -0
  960. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x63.html +141 -0
  961. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x64.html +143 -0
  962. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x65.html +120 -0
  963. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x66.html +123 -0
  964. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x67.html +235 -0
  965. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x68.html +113 -0
  966. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x69.html +183 -0
  967. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x6c.html +119 -0
  968. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x6d.html +123 -0
  969. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x6e.html +128 -0
  970. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x6f.html +193 -0
  971. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x70.html +147 -0
  972. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x71.html +119 -0
  973. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x72.html +149 -0
  974. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x73.html +284 -0
  975. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x74.html +140 -0
  976. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x75.html +113 -0
  977. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x76.html +116 -0
  978. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x77.html +125 -0
  979. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_0x7e.html +113 -0
  980. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func.html +126 -0
  981. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x63.html +119 -0
  982. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x64.html +123 -0
  983. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x65.html +113 -0
  984. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x66.html +117 -0
  985. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x67.html +232 -0
  986. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x69.html +169 -0
  987. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x6c.html +110 -0
  988. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x6d.html +114 -0
  989. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x6e.html +111 -0
  990. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x6f.html +175 -0
  991. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x70.html +138 -0
  992. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x72.html +139 -0
  993. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x73.html +272 -0
  994. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x74.html +129 -0
  995. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x75.html +110 -0
  996. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x76.html +110 -0
  997. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x77.html +115 -0
  998. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_func_0x7e.html +110 -0
  999. data/vendor/local/share/doc/flac-1.3.0/html/api/functions_vars.html +322 -0
  1000. data/vendor/local/share/doc/flac-1.3.0/html/api/globals.html +1570 -0
  1001. data/vendor/local/share/doc/flac-1.3.0/html/api/globals_defs.html +153 -0
  1002. data/vendor/local/share/doc/flac-1.3.0/html/api/globals_enum.html +150 -0
  1003. data/vendor/local/share/doc/flac-1.3.0/html/api/globals_eval.html +508 -0
  1004. data/vendor/local/share/doc/flac-1.3.0/html/api/globals_func.html +655 -0
  1005. data/vendor/local/share/doc/flac-1.3.0/html/api/globals_type.html +156 -0
  1006. data/vendor/local/share/doc/flac-1.3.0/html/api/globals_vars.html +382 -0
  1007. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac.html +90 -0
  1008. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__callbacks.html +274 -0
  1009. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__decoder.html +80 -0
  1010. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__encoder.html +80 -0
  1011. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__export.html +147 -0
  1012. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__format.html +2323 -0
  1013. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__metadata.html +96 -0
  1014. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__metadata__level0.html +309 -0
  1015. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__metadata__level1.html +828 -0
  1016. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__metadata__level2.html +1222 -0
  1017. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__metadata__object.html +2407 -0
  1018. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__stream__decoder.html +2378 -0
  1019. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flac__stream__encoder.html +3088 -0
  1020. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flacpp.html +85 -0
  1021. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flacpp__decoder.html +84 -0
  1022. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flacpp__encoder.html +84 -0
  1023. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flacpp__export.html +90 -0
  1024. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flacpp__metadata.html +86 -0
  1025. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flacpp__metadata__level0.html +373 -0
  1026. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flacpp__metadata__level1.html +92 -0
  1027. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flacpp__metadata__level2.html +134 -0
  1028. data/vendor/local/share/doc/flac-1.3.0/html/api/group__flacpp__metadata__object.html +354 -0
  1029. data/vendor/local/share/doc/flac-1.3.0/html/api/group__porting.html +92 -0
  1030. data/vendor/local/share/doc/flac-1.3.0/html/api/group__porting__1__1__2__to__1__1__3.html +134 -0
  1031. data/vendor/local/share/doc/flac-1.3.0/html/api/group__porting__1__1__3__to__1__1__4.html +71 -0
  1032. data/vendor/local/share/doc/flac-1.3.0/html/api/group__porting__1__1__4__to__1__2__0.html +72 -0
  1033. data/vendor/local/share/doc/flac-1.3.0/html/api/hierarchy.html +130 -0
  1034. data/vendor/local/share/doc/flac-1.3.0/html/api/index.html +104 -0
  1035. data/vendor/local/share/doc/flac-1.3.0/html/api/metadata_8h.html +343 -0
  1036. data/vendor/local/share/doc/flac-1.3.0/html/api/metadata_8h_source.html +522 -0
  1037. data/vendor/local/share/doc/flac-1.3.0/html/api/modules.html +99 -0
  1038. data/vendor/local/share/doc/flac-1.3.0/html/api/nav_f.png +0 -0
  1039. data/vendor/local/share/doc/flac-1.3.0/html/api/nav_g.png +0 -0
  1040. data/vendor/local/share/doc/flac-1.3.0/html/api/nav_h.png +0 -0
  1041. data/vendor/local/share/doc/flac-1.3.0/html/api/open.png +0 -0
  1042. data/vendor/local/share/doc/flac-1.3.0/html/api/ordinals_8h_source.html +165 -0
  1043. data/vendor/local/share/doc/flac-1.3.0/html/api/stream__decoder_8h.html +273 -0
  1044. data/vendor/local/share/doc/flac-1.3.0/html/api/stream__decoder_8h_source.html +480 -0
  1045. data/vendor/local/share/doc/flac-1.3.0/html/api/stream__encoder_8h.html +302 -0
  1046. data/vendor/local/share/doc/flac-1.3.0/html/api/stream__encoder_8h_source.html +465 -0
  1047. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____EntropyCodingMethod-members.html +83 -0
  1048. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____EntropyCodingMethod.html +100 -0
  1049. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____EntropyCodingMethod__PartitionedRice-members.html +82 -0
  1050. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____EntropyCodingMethod__PartitionedRice.html +123 -0
  1051. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____EntropyCodingMethod__PartitionedRiceContents-members.html +83 -0
  1052. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____EntropyCodingMethod__PartitionedRiceContents.html +137 -0
  1053. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Frame-members.html +83 -0
  1054. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Frame.html +100 -0
  1055. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____FrameFooter-members.html +81 -0
  1056. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____FrameFooter.html +107 -0
  1057. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____FrameHeader-members.html +90 -0
  1058. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____FrameHeader.html +217 -0
  1059. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____IOCallbacks-members.html +86 -0
  1060. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____IOCallbacks.html +110 -0
  1061. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamDecoder-members.html +82 -0
  1062. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamDecoder.html +98 -0
  1063. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamEncoder-members.html +82 -0
  1064. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamEncoder.html +98 -0
  1065. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata-members.html +92 -0
  1066. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata.html +169 -0
  1067. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__Application-members.html +82 -0
  1068. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__Application.html +97 -0
  1069. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__CueSheet-members.html +85 -0
  1070. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__CueSheet.html +167 -0
  1071. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__CueSheet__Index-members.html +82 -0
  1072. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__CueSheet__Index.html +122 -0
  1073. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__CueSheet__Track-members.html +87 -0
  1074. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__CueSheet__Track.html +197 -0
  1075. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__Padding-members.html +81 -0
  1076. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__Padding.html +107 -0
  1077. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__Picture-members.html +89 -0
  1078. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__Picture.html +227 -0
  1079. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__SeekPoint-members.html +83 -0
  1080. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__SeekPoint.html +137 -0
  1081. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__SeekTable-members.html +82 -0
  1082. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__SeekTable.html +105 -0
  1083. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__StreamInfo-members.html +89 -0
  1084. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__StreamInfo.html +118 -0
  1085. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__Unknown-members.html +81 -0
  1086. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__Unknown.html +94 -0
  1087. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__VorbisComment-members.html +83 -0
  1088. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__VorbisComment.html +100 -0
  1089. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__VorbisComment__Entry-members.html +82 -0
  1090. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____StreamMetadata__VorbisComment__Entry.html +99 -0
  1091. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe-members.html +87 -0
  1092. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe.html +109 -0
  1093. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe__Constant-members.html +81 -0
  1094. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe__Constant.html +107 -0
  1095. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe__Fixed-members.html +84 -0
  1096. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe__Fixed.html +152 -0
  1097. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe__LPC-members.html +87 -0
  1098. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe__LPC.html +197 -0
  1099. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe__Verbatim-members.html +81 -0
  1100. data/vendor/local/share/doc/flac-1.3.0/html/api/structFLAC____Subframe__Verbatim.html +107 -0
  1101. data/vendor/local/share/doc/flac-1.3.0/html/api/sync_off.png +0 -0
  1102. data/vendor/local/share/doc/flac-1.3.0/html/api/sync_on.png +0 -0
  1103. data/vendor/local/share/doc/flac-1.3.0/html/api/tab_a.png +0 -0
  1104. data/vendor/local/share/doc/flac-1.3.0/html/api/tab_b.png +0 -0
  1105. data/vendor/local/share/doc/flac-1.3.0/html/api/tab_h.png +0 -0
  1106. data/vendor/local/share/doc/flac-1.3.0/html/api/tab_s.png +0 -0
  1107. data/vendor/local/share/doc/flac-1.3.0/html/api/tabs.css +60 -0
  1108. data/vendor/local/share/doc/flac-1.3.0/html/changelog.html +946 -0
  1109. data/vendor/local/share/doc/flac-1.3.0/html/comparison.html +433 -0
  1110. data/vendor/local/share/doc/flac-1.3.0/html/comparison__chopin_prelude_24.html +171 -0
  1111. data/vendor/local/share/doc/flac-1.3.0/html/comparison__dream_theater_600.html +171 -0
  1112. data/vendor/local/share/doc/flac-1.3.0/html/comparison__eddie_warner_titus.html +171 -0
  1113. data/vendor/local/share/doc/flac-1.3.0/html/comparison__fanfare_de_l_eventail_de_jeanne.html +171 -0
  1114. data/vendor/local/share/doc/flac-1.3.0/html/comparison__gloria_estefan_conga.html +171 -0
  1115. data/vendor/local/share/doc/flac-1.3.0/html/comparison__hand_in_my_pocket.html +171 -0
  1116. data/vendor/local/share/doc/flac-1.3.0/html/comparison__l_sub_raga_sivapriya.html +171 -0
  1117. data/vendor/local/share/doc/flac-1.3.0/html/comparison__laetatus_sum.html +171 -0
  1118. data/vendor/local/share/doc/flac-1.3.0/html/comparison__mummified_in_barbed_wire.html +171 -0
  1119. data/vendor/local/share/doc/flac-1.3.0/html/comparison__prokofiev_pcon3_3.html +171 -0
  1120. data/vendor/local/share/doc/flac-1.3.0/html/comparison__ravel_sq4_4.html +171 -0
  1121. data/vendor/local/share/doc/flac-1.3.0/html/comparison__scarlatti_k42.html +171 -0
  1122. data/vendor/local/share/doc/flac-1.3.0/html/comparison__tool_forty_six_and_2.html +171 -0
  1123. data/vendor/local/share/doc/flac-1.3.0/html/comparison__white_room.html +171 -0
  1124. data/vendor/local/share/doc/flac-1.3.0/html/comparison_all_cpudectime.html +168 -0
  1125. data/vendor/local/share/doc/flac-1.3.0/html/comparison_all_cpuenctime.html +168 -0
  1126. data/vendor/local/share/doc/flac-1.3.0/html/comparison_all_procdectime.html +168 -0
  1127. data/vendor/local/share/doc/flac-1.3.0/html/comparison_all_procenctime.html +168 -0
  1128. data/vendor/local/share/doc/flac-1.3.0/html/comparison_all_ratio.html +168 -0
  1129. data/vendor/local/share/doc/flac-1.3.0/html/developers.html +144 -0
  1130. data/vendor/local/share/doc/flac-1.3.0/html/documentation.html +108 -0
  1131. data/vendor/local/share/doc/flac-1.3.0/html/documentation_bugs.html +104 -0
  1132. data/vendor/local/share/doc/flac-1.3.0/html/documentation_example_code.html +84 -0
  1133. data/vendor/local/share/doc/flac-1.3.0/html/documentation_format_overview.html +133 -0
  1134. data/vendor/local/share/doc/flac-1.3.0/html/documentation_tasks.html +229 -0
  1135. data/vendor/local/share/doc/flac-1.3.0/html/documentation_tools.html +95 -0
  1136. data/vendor/local/share/doc/flac-1.3.0/html/documentation_tools_flac.html +1197 -0
  1137. data/vendor/local/share/doc/flac-1.3.0/html/documentation_tools_metaflac.html +573 -0
  1138. data/vendor/local/share/doc/flac-1.3.0/html/documentation_tools_plugins.html +97 -0
  1139. data/vendor/local/share/doc/flac-1.3.0/html/download.html +287 -0
  1140. data/vendor/local/share/doc/flac-1.3.0/html/faq.html +405 -0
  1141. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/favicon.ico +0 -0
  1142. data/vendor/local/share/doc/flac-1.3.0/html/features.html +130 -0
  1143. data/vendor/local/share/doc/flac-1.3.0/html/flac.css +192 -0
  1144. data/vendor/local/share/doc/flac-1.3.0/html/format.html +1858 -0
  1145. data/vendor/local/share/doc/flac-1.3.0/html/id.html +300 -0
  1146. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/1x1.gif +0 -0
  1147. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/cafebug.gif +0 -0
  1148. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/Blackbird_Front_low3_325x87.jpg +0 -0
  1149. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/MS300frontsmall_270x108.jpg +0 -0
  1150. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/MediaBox_Frt_170x325.jpg +0 -0
  1151. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/SB_Hero_Black_325x182.jpg +0 -0
  1152. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/Sooloos-ControlOne_325x328.jpg +0 -0
  1153. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/Z500_front_325x94.jpg +0 -0
  1154. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/a2_01_325x252.jpg +0 -0
  1155. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/arcus_325x135.jpg +0 -0
  1156. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/bmp-1430_325x241.jpg +0 -0
  1157. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/cs505_front_lrg_325x113.jpg +0 -0
  1158. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/enus_3-4lft-hires_product_eva8000_325x127.jpg +0 -0
  1159. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/escient_ProductLine_325x163.jpg +0 -0
  1160. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/hifidelio_bl_front_Z_RGB_325x163.jpg +0 -0
  1161. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/i-station-mini-dx_325x237.jpg +0 -0
  1162. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/iwod-g10_325x257.jpg +0 -0
  1163. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/knc_hr-2800_325x209.jpg +0 -0
  1164. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/mediaready_prodmain_MRMCa_325x232.jpg +0 -0
  1165. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/meizu_m6_325x206.jpg +0 -0
  1166. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/musica_artwork_325x90.jpg +0 -0
  1167. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/neodigits_x5000_325x124.jpg +0 -0
  1168. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/onda-vx737_325x240.jpg +0 -0
  1169. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/request_n_front_325x103.jpg +0 -0
  1170. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/rio_karma_279x254.jpg +0 -0
  1171. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/sonos_family_RGB_325x200.jpg +0 -0
  1172. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/teclast-tl29_325x244.jpg +0 -0
  1173. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/transporter_hero_grey_325x208.jpg +0 -0
  1174. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/tvix-4000_325x204.jpg +0 -0
  1175. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/hw/vibez_nofm_combi_black_b_325x220.jpg +0 -0
  1176. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/logo100.gif +0 -0
  1177. data/vendor/local/share/doc/{flac-1.2.1 → flac-1.3.0}/html/images/logo130.gif +0 -0
  1178. data/vendor/local/share/doc/flac-1.3.0/html/index.html +140 -0
  1179. data/vendor/local/share/doc/flac-1.3.0/html/itunes.html +94 -0
  1180. data/vendor/local/share/doc/flac-1.3.0/html/license.html +96 -0
  1181. data/vendor/local/share/doc/flac-1.3.0/html/links.html +490 -0
  1182. data/vendor/local/share/doc/flac-1.3.0/html/news.html +700 -0
  1183. data/vendor/local/share/doc/flac-1.3.0/html/ogg_mapping.html +141 -0
  1184. data/vendor/local/share/doc/flac-1.3.0/html/ru/authors.html +114 -0
  1185. data/vendor/local/share/doc/flac-1.3.0/html/ru/comparison.html +866 -0
  1186. data/vendor/local/share/doc/flac-1.3.0/html/ru/developers.html +111 -0
  1187. data/vendor/local/share/doc/flac-1.3.0/html/ru/documentation.html +518 -0
  1188. data/vendor/local/share/doc/flac-1.3.0/html/ru/download.html +111 -0
  1189. data/vendor/local/share/doc/flac-1.3.0/html/ru/features.html +126 -0
  1190. data/vendor/local/share/doc/flac-1.3.0/html/ru/format.html +1008 -0
  1191. data/vendor/local/share/doc/flac-1.3.0/html/ru/goals.html +106 -0
  1192. data/vendor/local/share/doc/flac-1.3.0/html/ru/id.html +130 -0
  1193. data/vendor/local/share/doc/flac-1.3.0/html/ru/index.html +123 -0
  1194. data/vendor/local/share/doc/flac-1.3.0/html/ru/links.html +126 -0
  1195. data/vendor/local/share/doc/flac-1.3.0/html/ru/news.html +306 -0
  1196. data/vendor/local/share/doc/libogg/fish_xiph_org.png +0 -0
  1197. data/vendor/local/share/doc/libogg/framing.html +429 -0
  1198. data/vendor/local/share/doc/libogg/index.html +105 -0
  1199. data/vendor/local/share/doc/libogg/libogg/bitpacking.html +103 -0
  1200. data/vendor/local/share/doc/libogg/libogg/datastructures.html +59 -0
  1201. data/vendor/local/share/doc/libogg/libogg/decoding.html +104 -0
  1202. data/vendor/local/share/doc/libogg/libogg/encoding.html +76 -0
  1203. data/vendor/local/share/doc/libogg/libogg/general.html +109 -0
  1204. data/vendor/local/share/doc/libogg/libogg/index.html +39 -0
  1205. data/vendor/local/share/doc/libogg/libogg/ogg_iovec_t.html +62 -0
  1206. data/vendor/local/share/doc/libogg/libogg/ogg_packet.html +75 -0
  1207. data/vendor/local/share/doc/libogg/libogg/ogg_packet_clear.html +64 -0
  1208. data/vendor/local/share/doc/libogg/libogg/ogg_page.html +75 -0
  1209. data/vendor/local/share/doc/libogg/libogg/ogg_page_bos.html +65 -0
  1210. data/vendor/local/share/doc/libogg/libogg/ogg_page_checksum_set.html +62 -0
  1211. data/vendor/local/share/doc/libogg/libogg/ogg_page_continued.html +64 -0
  1212. data/vendor/local/share/doc/libogg/libogg/ogg_page_eos.html +65 -0
  1213. data/vendor/local/share/doc/libogg/libogg/ogg_page_granulepos.html +65 -0
  1214. data/vendor/local/share/doc/libogg/libogg/ogg_page_packets.html +75 -0
  1215. data/vendor/local/share/doc/libogg/libogg/ogg_page_pageno.html +63 -0
  1216. data/vendor/local/share/doc/libogg/libogg/ogg_page_serialno.html +63 -0
  1217. data/vendor/local/share/doc/libogg/libogg/ogg_page_version.html +63 -0
  1218. data/vendor/local/share/doc/libogg/libogg/ogg_stream_check.html +71 -0
  1219. data/vendor/local/share/doc/libogg/libogg/ogg_stream_clear.html +61 -0
  1220. data/vendor/local/share/doc/libogg/libogg/ogg_stream_destroy.html +71 -0
  1221. data/vendor/local/share/doc/libogg/libogg/ogg_stream_eos.html +62 -0
  1222. data/vendor/local/share/doc/libogg/libogg/ogg_stream_flush.html +67 -0
  1223. data/vendor/local/share/doc/libogg/libogg/ogg_stream_flush_fill.html +74 -0
  1224. data/vendor/local/share/doc/libogg/libogg/ogg_stream_init.html +66 -0
  1225. data/vendor/local/share/doc/libogg/libogg/ogg_stream_iovecin.html +80 -0
  1226. data/vendor/local/share/doc/libogg/libogg/ogg_stream_packetin.html +72 -0
  1227. data/vendor/local/share/doc/libogg/libogg/ogg_stream_packetout.html +85 -0
  1228. data/vendor/local/share/doc/libogg/libogg/ogg_stream_packetpeek.html +85 -0
  1229. data/vendor/local/share/doc/libogg/libogg/ogg_stream_pagein.html +67 -0
  1230. data/vendor/local/share/doc/libogg/libogg/ogg_stream_pageout.html +84 -0
  1231. data/vendor/local/share/doc/libogg/libogg/ogg_stream_pageout_fill.html +89 -0
  1232. data/vendor/local/share/doc/libogg/libogg/ogg_stream_reset.html +61 -0
  1233. data/vendor/local/share/doc/libogg/libogg/ogg_stream_reset_serialno.html +67 -0
  1234. data/vendor/local/share/doc/libogg/libogg/ogg_stream_state.html +121 -0
  1235. data/vendor/local/share/doc/libogg/libogg/ogg_sync_buffer.html +67 -0
  1236. data/vendor/local/share/doc/libogg/libogg/ogg_sync_check.html +71 -0
  1237. data/vendor/local/share/doc/libogg/libogg/ogg_sync_clear.html +62 -0
  1238. data/vendor/local/share/doc/libogg/libogg/ogg_sync_destroy.html +68 -0
  1239. data/vendor/local/share/doc/libogg/libogg/ogg_sync_init.html +63 -0
  1240. data/vendor/local/share/doc/libogg/libogg/ogg_sync_pageout.html +77 -0
  1241. data/vendor/local/share/doc/libogg/libogg/ogg_sync_pageseek.html +68 -0
  1242. data/vendor/local/share/doc/libogg/libogg/ogg_sync_reset.html +63 -0
  1243. data/vendor/local/share/doc/libogg/libogg/ogg_sync_state.html +77 -0
  1244. data/vendor/local/share/doc/libogg/libogg/ogg_sync_wrote.html +73 -0
  1245. data/vendor/local/share/doc/libogg/libogg/oggpack_adv.html +64 -0
  1246. data/vendor/local/share/doc/libogg/libogg/oggpack_adv1.html +62 -0
  1247. data/vendor/local/share/doc/libogg/libogg/oggpack_bits.html +62 -0
  1248. data/vendor/local/share/doc/libogg/libogg/oggpack_buffer.html +66 -0
  1249. data/vendor/local/share/doc/libogg/libogg/oggpack_bytes.html +67 -0
  1250. data/vendor/local/share/doc/libogg/libogg/oggpack_get_buffer.html +62 -0
  1251. data/vendor/local/share/doc/libogg/libogg/oggpack_look.html +66 -0
  1252. data/vendor/local/share/doc/libogg/libogg/oggpack_look1.html +63 -0
  1253. data/vendor/local/share/doc/libogg/libogg/oggpack_read.html +65 -0
  1254. data/vendor/local/share/doc/libogg/libogg/oggpack_read1.html +63 -0
  1255. data/vendor/local/share/doc/libogg/libogg/oggpack_readinit.html +64 -0
  1256. data/vendor/local/share/doc/libogg/libogg/oggpack_reset.html +62 -0
  1257. data/vendor/local/share/doc/libogg/libogg/oggpack_write.html +68 -0
  1258. data/vendor/local/share/doc/libogg/libogg/oggpack_writealign.html +65 -0
  1259. data/vendor/local/share/doc/libogg/libogg/oggpack_writecheck.html +81 -0
  1260. data/vendor/local/share/doc/libogg/libogg/oggpack_writeclear.html +62 -0
  1261. data/vendor/local/share/doc/libogg/libogg/oggpack_writecopy.html +69 -0
  1262. data/vendor/local/share/doc/libogg/libogg/oggpack_writeinit.html +62 -0
  1263. data/vendor/local/share/doc/libogg/libogg/oggpack_writetrunc.html +65 -0
  1264. data/vendor/local/share/doc/libogg/libogg/overview.html +44 -0
  1265. data/vendor/local/share/doc/libogg/libogg/reference.html +98 -0
  1266. data/vendor/local/share/doc/{libogg-1.3.0/ogg → libogg/libogg}/style.css +0 -0
  1267. data/vendor/local/share/doc/libogg/multiplex1.png +0 -0
  1268. data/vendor/local/share/doc/{libogg-1.3.0 → libogg}/ogg-multiplex.html +0 -0
  1269. data/vendor/local/share/doc/{libogg-1.3.0 → libogg}/oggstream.html +0 -0
  1270. data/vendor/local/share/doc/libogg/packets.png +0 -0
  1271. data/vendor/local/share/doc/libogg/pages.png +0 -0
  1272. data/vendor/local/share/doc/{libogg-1.3.0 → libogg}/rfc3533.txt +0 -0
  1273. data/vendor/local/share/doc/{libogg-1.3.0 → libogg}/rfc5334.txt +0 -0
  1274. data/vendor/local/share/doc/{libogg-1.3.0 → libogg}/skeleton.html +0 -0
  1275. data/vendor/local/share/doc/{libogg-1.3.0 → libogg}/stream.png +0 -0
  1276. data/vendor/local/share/doc/{libogg-1.3.0 → libogg}/vorbisword2.png +0 -0
  1277. data/vendor/local/share/doc/{libogg-1.3.0 → libogg}/white-ogg.png +0 -0
  1278. data/vendor/local/share/doc/{libogg-1.3.0 → libogg}/white-xifish.png +0 -0
  1279. data/vendor/local/share/doc/libtheora-1.1.1/Theora.pdf +0 -0
  1280. data/vendor/local/share/doc/libtheora-1.1.1/html/annotated.html +15 -14
  1281. data/vendor/local/share/doc/libtheora-1.1.1/html/bc_s.png +0 -0
  1282. data/vendor/local/share/doc/libtheora-1.1.1/html/classes.html +4 -3
  1283. data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h.html +89 -56
  1284. data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h_source.html +156 -90
  1285. data/vendor/local/share/doc/libtheora-1.1.1/html/dir_0f91760d62c578de767c41a0aaae5482.html +10 -5
  1286. data/vendor/local/share/doc/libtheora-1.1.1/html/dir_d44c64559bbebec7f509842c48db8b23.html +7 -5
  1287. data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.css +212 -18
  1288. data/vendor/local/share/doc/libtheora-1.1.1/html/dynsections.js +32 -13
  1289. data/vendor/local/share/doc/libtheora-1.1.1/html/files.html +8 -7
  1290. data/vendor/local/share/doc/libtheora-1.1.1/html/functions.html +4 -3
  1291. data/vendor/local/share/doc/libtheora-1.1.1/html/functions_vars.html +4 -3
  1292. data/vendor/local/share/doc/libtheora-1.1.1/html/globals.html +4 -3
  1293. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_defs.html +4 -3
  1294. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_enum.html +4 -3
  1295. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_eval.html +4 -3
  1296. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_func.html +4 -3
  1297. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_type.html +4 -3
  1298. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_vars.html +4 -3
  1299. data/vendor/local/share/doc/libtheora-1.1.1/html/group__basefuncs.html +67 -51
  1300. data/vendor/local/share/doc/libtheora-1.1.1/html/group__decfuncs.html +43 -35
  1301. data/vendor/local/share/doc/libtheora-1.1.1/html/group__encfuncs.html +33 -26
  1302. data/vendor/local/share/doc/libtheora-1.1.1/html/group__oldfuncs.html +179 -129
  1303. data/vendor/local/share/doc/libtheora-1.1.1/html/index.html +4 -3
  1304. data/vendor/local/share/doc/libtheora-1.1.1/html/modules.html +4 -3
  1305. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__comment.html +16 -11
  1306. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__huff__code.html +11 -8
  1307. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__img__plane.html +15 -10
  1308. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__info.html +44 -24
  1309. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__info.html +16 -13
  1310. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__ranges.html +15 -11
  1311. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__stripe__callback.html +13 -10
  1312. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__comment.html +16 -11
  1313. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__info.html +50 -21
  1314. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__state.html +11 -6
  1315. data/vendor/local/share/doc/libtheora-1.1.1/html/structyuv__buffer.html +27 -17
  1316. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.png +0 -0
  1317. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_h.png +0 -0
  1318. data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h.html +114 -61
  1319. data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h_source.html +199 -112
  1320. data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h.html +63 -42
  1321. data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h_source.html +48 -30
  1322. data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h.html +92 -64
  1323. data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h_source.html +51 -33
  1324. data/vendor/local/share/doc/libtheora-1.1.1/latex/Makefile +2 -0
  1325. data/vendor/local/share/doc/libtheora-1.1.1/latex/codec_8h.tex +2 -4
  1326. data/vendor/local/share/doc/libtheora-1.1.1/latex/dir_0f91760d62c578de767c41a0aaae5482.tex +2 -2
  1327. data/vendor/local/share/doc/libtheora-1.1.1/latex/dir_d44c64559bbebec7f509842c48db8b23.tex +2 -2
  1328. data/vendor/local/share/doc/libtheora-1.1.1/latex/doxygen.sty +194 -214
  1329. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__basefuncs.tex +2 -1
  1330. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__oldfuncs.tex +2 -4
  1331. data/vendor/local/share/doc/libtheora-1.1.1/latex/refman.tex +101 -24
  1332. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__info.tex +2 -1
  1333. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__info.tex +0 -4
  1334. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/doxygen-build.stamp +0 -0
  1335. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/eightphase.png +0 -0
  1336. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/evenlsp.png +0 -0
  1337. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/fish_xiph_org.png +0 -0
  1338. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/floor1_inverse_dB_table.html +0 -0
  1339. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/floorval.png +0 -0
  1340. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/fourphase.png +0 -0
  1341. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/framing.html +0 -0
  1342. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/helper.html +0 -0
  1343. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/index.html +0 -0
  1344. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/index.html +0 -0
  1345. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/overview.html +0 -0
  1346. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/reference.html +0 -0
  1347. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/return.html +0 -0
  1348. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/style.css +0 -0
  1349. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_analysis.html +0 -0
  1350. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_analysis_blockout.html +0 -0
  1351. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_analysis_buffer.html +0 -0
  1352. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_analysis_headerout.html +0 -0
  1353. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_analysis_init.html +0 -0
  1354. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_analysis_wrote.html +0 -0
  1355. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_bitrate_addblock.html +0 -0
  1356. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_bitrate_flushpacket.html +0 -0
  1357. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_block.html +0 -0
  1358. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_block_clear.html +0 -0
  1359. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_block_init.html +0 -0
  1360. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_comment.html +0 -0
  1361. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_comment_add.html +0 -0
  1362. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_comment_add_tag.html +0 -0
  1363. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_comment_clear.html +0 -0
  1364. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_comment_init.html +0 -0
  1365. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_comment_query.html +0 -0
  1366. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_comment_query_count.html +0 -0
  1367. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_commentheader_out.html +0 -0
  1368. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_dsp_clear.html +0 -0
  1369. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_dsp_state.html +0 -0
  1370. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_granule_time.html +0 -0
  1371. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_info.html +0 -0
  1372. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_info_blocksize.html +0 -0
  1373. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_info_clear.html +0 -0
  1374. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_info_init.html +0 -0
  1375. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_packet_blocksize.html +0 -0
  1376. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis.html +0 -0
  1377. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_blockin.html +0 -0
  1378. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_halfrate.html +0 -0
  1379. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_halfrate_p.html +0 -0
  1380. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_headerin.html +0 -0
  1381. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_idheader.html +0 -0
  1382. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_init.html +0 -0
  1383. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_lapout.html +0 -0
  1384. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_pcmout.html +0 -0
  1385. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_read.html +0 -0
  1386. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_restart.html +0 -0
  1387. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_synthesis_trackonly.html +0 -0
  1388. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/libvorbis/vorbis_version_string.html +0 -0
  1389. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/lspmap.png +0 -0
  1390. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/oddlsp.png +0 -0
  1391. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/oggstream.html +0 -0
  1392. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/programming.html +0 -0
  1393. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/rfc5215.txt +0 -0
  1394. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/rfc5215.xml +0 -0
  1395. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/squarepolar.png +0 -0
  1396. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/stereo.html +0 -0
  1397. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/stream.png +0 -0
  1398. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/v-comment.html +0 -0
  1399. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbis-clip.txt +0 -0
  1400. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbis-errors.txt +0 -0
  1401. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbis-fidelity.html +0 -0
  1402. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbis.html +0 -0
  1403. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/changes.html +0 -0
  1404. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/examples.html +0 -0
  1405. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/index.html +0 -0
  1406. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/ovectl_ratemanage2_arg.html +0 -0
  1407. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/ovectl_ratemanage_arg.html +0 -0
  1408. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/overview.html +0 -0
  1409. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/reference.html +0 -0
  1410. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/style.css +0 -0
  1411. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/vorbis_encode_ctl.html +0 -0
  1412. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/vorbis_encode_init.html +0 -0
  1413. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/vorbis_encode_init_vbr.html +0 -0
  1414. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/vorbis_encode_setup_init.html +0 -0
  1415. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/vorbis_encode_setup_managed.html +0 -0
  1416. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisenc/vorbis_encode_setup_vbr.html +0 -0
  1417. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/OggVorbis_File.html +0 -0
  1418. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/callbacks.html +0 -0
  1419. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/chaining_example_c.html +0 -0
  1420. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/chainingexample.html +0 -0
  1421. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/crosslap.html +0 -0
  1422. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/datastructures.html +0 -0
  1423. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/decoding.html +0 -0
  1424. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/example.html +0 -0
  1425. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/exampleindex.html +0 -0
  1426. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/fileinfo.html +0 -0
  1427. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/index.html +0 -0
  1428. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/initialization.html +0 -0
  1429. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_bitrate.html +0 -0
  1430. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_bitrate_instant.html +0 -0
  1431. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_callbacks.html +0 -0
  1432. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_clear.html +0 -0
  1433. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_comment.html +0 -0
  1434. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_crosslap.html +0 -0
  1435. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_fopen.html +0 -0
  1436. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_info.html +0 -0
  1437. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_open.html +0 -0
  1438. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_open_callbacks.html +0 -0
  1439. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_pcm_seek.html +0 -0
  1440. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_pcm_seek_lap.html +0 -0
  1441. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_pcm_seek_page.html +0 -0
  1442. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_pcm_seek_page_lap.html +0 -0
  1443. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_pcm_tell.html +0 -0
  1444. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_pcm_total.html +0 -0
  1445. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_raw_seek.html +0 -0
  1446. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_raw_seek_lap.html +0 -0
  1447. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_raw_tell.html +0 -0
  1448. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_raw_total.html +0 -0
  1449. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_read.html +0 -0
  1450. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_read_filter.html +0 -0
  1451. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_read_float.html +0 -0
  1452. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_seekable.html +0 -0
  1453. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_serialnumber.html +0 -0
  1454. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_streams.html +0 -0
  1455. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_test.html +0 -0
  1456. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_test_callbacks.html +0 -0
  1457. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_test_open.html +0 -0
  1458. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_time_seek.html +0 -0
  1459. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_time_seek_lap.html +0 -0
  1460. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_time_seek_page.html +0 -0
  1461. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_time_seek_page_lap.html +0 -0
  1462. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_time_tell.html +0 -0
  1463. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/ov_time_total.html +0 -0
  1464. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/overview.html +0 -0
  1465. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/reference.html +0 -0
  1466. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/seekexample.html +0 -0
  1467. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/seeking.html +0 -0
  1468. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/seeking_example_c.html +0 -0
  1469. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/seeking_test_c.html +0 -0
  1470. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/seekingexample.html +0 -0
  1471. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/style.css +0 -0
  1472. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/threads.html +0 -0
  1473. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisfile/vorbisfile_example_c.html +0 -0
  1474. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/vorbisword2.png +0 -0
  1475. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/wait.png +0 -0
  1476. data/vendor/local/share/doc/{libvorbis-1.3.2 → libvorbis-1.3.3}/white-xifish.png +0 -0
  1477. data/vendor/local/share/gir-1.0/Gst-1.0.gir +7379 -5728
  1478. data/vendor/local/share/gir-1.0/GstAllocators-1.0.gir +85 -0
  1479. data/vendor/local/share/gir-1.0/GstApp-1.0.gir +145 -128
  1480. data/vendor/local/share/gir-1.0/GstAudio-1.0.gir +786 -759
  1481. data/vendor/local/share/gir-1.0/GstBase-1.0.gir +1899 -1033
  1482. data/vendor/local/share/gir-1.0/GstCheck-1.0.gir +516 -61
  1483. data/vendor/local/share/gir-1.0/GstController-1.0.gir +91 -95
  1484. data/vendor/local/share/gir-1.0/GstFft-1.0.gir +90 -94
  1485. data/vendor/local/share/gir-1.0/GstInsertBin-1.0.gir +358 -0
  1486. data/vendor/local/share/gir-1.0/GstMpegts-1.0.gir +2469 -0
  1487. data/vendor/local/share/gir-1.0/GstNet-1.0.gir +43 -43
  1488. data/vendor/local/share/gir-1.0/GstPbutils-1.0.gir +510 -443
  1489. data/vendor/local/share/gir-1.0/GstRiff-1.0.gir +54 -56
  1490. data/vendor/local/share/gir-1.0/GstRtp-1.0.gir +793 -624
  1491. data/vendor/local/share/gir-1.0/GstRtsp-1.0.gir +810 -512
  1492. data/vendor/local/share/gir-1.0/GstSdp-1.0.gir +1247 -345
  1493. data/vendor/local/share/gir-1.0/GstTag-1.0.gir +249 -239
  1494. data/vendor/local/share/gir-1.0/GstVideo-1.0.gir +1677 -1049
  1495. data/vendor/local/share/gir-1.0/Soup-2.4.gir +16867 -0
  1496. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/annotation-glossary.html +29 -12
  1497. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/api-index-deprecated.html +39 -8
  1498. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/api-index-full.html +370 -130
  1499. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/codecparsers.html +8 -5
  1500. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/compiling.html +4 -4
  1501. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-1.0.devhelp2 +608 -42
  1502. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-ATSC-variants-of-MPEG-TS-descriptors.html +188 -0
  1503. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-ATSC-variants-of-MPEG-TS-sections.html +170 -0
  1504. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-Base-MPEG-TS-descriptors.html +692 -0
  1505. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-Base-MPEG-TS-sections.html +985 -0
  1506. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-DVB-variants-of-MPEG-TS-descriptors.html +1263 -0
  1507. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-DVB-variants-of-MPEG-TS-sections.html +696 -0
  1508. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-GstInsertbin.html +634 -0
  1509. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-ISDB-variants-of-MPEG-TS-descriptors.html +240 -0
  1510. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-Mpeg-ts-helper-library.html +65 -0
  1511. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-gstmpegvideometa.html +202 -0
  1512. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-h264parser.html +149 -26
  1513. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-mpeg4parser.html +369 -15
  1514. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-mpegvideoparser.html +223 -31
  1515. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-vc1parser.html +335 -34
  1516. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gstreamer-libs-hierarchy.html +27 -5
  1517. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gstreamer-plugins-bad.html +22 -12
  1518. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/index.html +23 -13
  1519. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/index.sgml +655 -50
  1520. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/mpegts.html +61 -0
  1521. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/tools.html +33 -0
  1522. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/annotation-glossary.html +34 -43
  1523. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/api-index-deprecated.html +5 -5
  1524. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/api-index-full.html +422 -6
  1525. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/compiling.html +6 -6
  1526. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-1.0.devhelp2 +318 -71
  1527. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-GstVideoDecoder.html +152 -44
  1528. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-GstVideoEncoder.html +104 -30
  1529. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-appsink.html +55 -16
  1530. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-appsrc.html +98 -20
  1531. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-dmabuf.html +155 -0
  1532. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-encoding-profile.html +271 -55
  1533. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudio.html +271 -33
  1534. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiobasesink.html +63 -18
  1535. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiobasesrc.html +41 -14
  1536. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiocdsrc.html +24 -12
  1537. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiochannels.html +652 -0
  1538. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudioclock.html +27 -9
  1539. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiodecoder.html +131 -38
  1540. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudioencoder.html +136 -42
  1541. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiofilter.html +11 -5
  1542. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudioiec61937.html +11 -5
  1543. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiometa.html +229 -0
  1544. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiomixerutils.html +3 -3
  1545. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudioringbuffer.html +149 -42
  1546. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiosink.html +11 -5
  1547. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstaudiosrc.html +11 -5
  1548. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstcolorbalance.html +36 -12
  1549. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstcolorbalancechannel.html +16 -7
  1550. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstdiscoverer.html +254 -62
  1551. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstfft.html +11 -5
  1552. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstfftf32.html +27 -9
  1553. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstfftf64.html +27 -9
  1554. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstffts16.html +27 -9
  1555. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstffts32.html +27 -9
  1556. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstpbutils.html +5 -5
  1557. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstpbutilscodecutils.html +78 -17
  1558. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstpbutilsdescriptions.html +34 -12
  1559. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstpbutilsinstallplugins.html +52 -22
  1560. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstpbutilsmissingplugins.html +57 -18
  1561. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstpluginsbaseversion.html +13 -7
  1562. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstriff.html +39 -12
  1563. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtcpbuffer.html +254 -74
  1564. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtpbaseaudiopayload.html +40 -13
  1565. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtpbasedepayload.html +15 -6
  1566. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtpbasepayload.html +44 -14
  1567. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtpbuffer.html +192 -51
  1568. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtphdrext.html +162 -3
  1569. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtppayloads.html +24 -9
  1570. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtspconnection.html +341 -40
  1571. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtspdefs.html +628 -21
  1572. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtspextension.html +4 -4
  1573. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtspmessage.html +109 -30
  1574. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtsprange.html +185 -15
  1575. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtsptransport.html +58 -16
  1576. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstrtspurl.html +35 -11
  1577. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstsdpmessage.html +1928 -162
  1578. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gststreamvolume.html +28 -10
  1579. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttag.html +16 -7
  1580. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttagdemux.html +17 -8
  1581. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttagexif.html +19 -7
  1582. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttagid3.html +40 -13
  1583. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttaglanguagecodes.html +32 -11
  1584. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttaglicenses.html +35 -11
  1585. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttagmux.html +13 -7
  1586. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttagvorbis.html +32 -11
  1587. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttagxmp.html +15 -6
  1588. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gsttagxmpwriter.html +24 -9
  1589. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstvideo.html +336 -70
  1590. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstvideofilter.html +8 -5
  1591. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstvideometa.html +445 -11
  1592. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstvideoorientation.html +39 -12
  1593. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstvideooverlay.html +51 -27
  1594. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstvideooverlaycomposition.html +162 -35
  1595. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstvideosink.html +24 -9
  1596. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstvideoutils.html +79 -22
  1597. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-allocators.html +38 -0
  1598. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-app.html +6 -6
  1599. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-audio.html +8 -5
  1600. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-base-utils.html +4 -4
  1601. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-ffft.html +4 -4
  1602. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-libs-hierarchy.html +3 -3
  1603. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-plugins-base.html +13 -6
  1604. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-riff.html +4 -4
  1605. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-rtp.html +4 -4
  1606. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-rtsp.html +4 -4
  1607. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-sdp.html +4 -4
  1608. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-tag.html +4 -4
  1609. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gstreamer-video.html +5 -5
  1610. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/index.html +14 -7
  1611. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/index.sgml +294 -42
  1612. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/ch01.html +6 -6
  1613. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/ch02.html +32 -32
  1614. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-1.0.devhelp2 +147 -119
  1615. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-adder.html +26 -9
  1616. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-alsasink.html +13 -15
  1617. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-alsasrc.html +13 -15
  1618. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-appsink.html +50 -17
  1619. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-appsrc.html +41 -12
  1620. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-audioconvert.html +26 -11
  1621. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-audiorate.html +18 -9
  1622. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-audioresample.html +43 -9
  1623. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-audiotestsrc.html +19 -14
  1624. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-cdparanoiasrc.html +21 -9
  1625. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-clockoverlay.html +17 -8
  1626. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-decodebin.html +124 -43
  1627. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-encodebin.html +70 -13
  1628. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-giosink.html +14 -8
  1629. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-giosrc.html +14 -8
  1630. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-giostreamsink.html +14 -8
  1631. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-giostreamsrc.html +14 -8
  1632. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-multifdsink.html +69 -20
  1633. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-multisocketsink.html +162 -17
  1634. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-oggdemux.html +17 -8
  1635. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-oggmux.html +29 -10
  1636. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-playbin.html +117 -77
  1637. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-adder.html +14 -8
  1638. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-alsa.html +14 -8
  1639. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-app.html +14 -8
  1640. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-audioconvert.html +14 -8
  1641. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-audiorate.html +14 -8
  1642. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-audioresample.html +14 -8
  1643. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-audiotestsrc.html +14 -8
  1644. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-cdparanoia.html +14 -8
  1645. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-encoding.html +14 -8
  1646. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-gio.html +14 -8
  1647. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-libvisual.html +14 -8
  1648. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-ogg.html +14 -8
  1649. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-pango.html +14 -8
  1650. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-playback.html +18 -8
  1651. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-subparse.html +14 -8
  1652. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-tcp.html +14 -8
  1653. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-theora.html +14 -8
  1654. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-typefindfunctions.html +14 -8
  1655. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-videoconvert.html +14 -8
  1656. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-videorate.html +14 -8
  1657. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-videoscale.html +14 -8
  1658. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-videotestsrc.html +14 -8
  1659. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-volume.html +14 -8
  1660. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-vorbis.html +14 -8
  1661. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-ximagesink.html +14 -8
  1662. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-plugin-xvimagesink.html +14 -8
  1663. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-subtitleoverlay.html +22 -10
  1664. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-tcpclientsink.html +14 -8
  1665. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-tcpclientsrc.html +14 -8
  1666. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-tcpserversink.html +14 -8
  1667. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-tcpserversrc.html +14 -8
  1668. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-textoverlay.html +21 -9
  1669. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-textrender.html +17 -8
  1670. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-theoradec.html +17 -8
  1671. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-theoraenc.html +17 -8
  1672. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-theoraparse.html +17 -8
  1673. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-timeoverlay.html +17 -8
  1674. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-uridecodebin.html +73 -15
  1675. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-videoconvert.html +28 -11
  1676. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-videorate.html +18 -9
  1677. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-videoscale.html +33 -13
  1678. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-videotestsrc.html +32 -13
  1679. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-volume.html +18 -9
  1680. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-vorbisdec.html +17 -8
  1681. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-vorbisenc.html +18 -9
  1682. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-vorbisparse.html +17 -8
  1683. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-vorbistag.html +17 -8
  1684. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-ximagesink.html +13 -7
  1685. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/gst-plugins-base-plugins-xvimagesink.html +13 -7
  1686. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/index.html +31 -31
  1687. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-1.0/index.sgml +29 -2
  1688. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstAllocator.html +62 -20
  1689. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstBin.html +138 -34
  1690. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstBus.html +113 -38
  1691. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstChildProxy.html +65 -20
  1692. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstClock.html +191 -50
  1693. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstControlBinding.html +37 -13
  1694. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstControlSource.html +31 -10
  1695. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstElement.html +447 -114
  1696. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstElementFactory.html +82 -25
  1697. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstGhostPad.html +74 -25
  1698. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstObject.html +186 -55
  1699. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstPad.html +568 -167
  1700. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstPadTemplate.html +61 -19
  1701. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstPipeline.html +53 -17
  1702. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstPlugin.html +131 -38
  1703. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstPluginFeature.html +83 -17
  1704. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstPreset.html +48 -15
  1705. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstRegistry.html +81 -24
  1706. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstSystemClock.html +11 -5
  1707. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstTagSetter.html +47 -14
  1708. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstTask.html +93 -27
  1709. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstTaskPool.html +31 -10
  1710. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/GstTypeFindFactory.html +24 -9
  1711. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/annotation-glossary.html +52 -57
  1712. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/api-index-deprecated.html +24 -8
  1713. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/api-index-full.html +315 -11
  1714. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gst-building.html +6 -6
  1715. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gst-running.html +128 -16
  1716. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-1.0.devhelp2 +92 -6
  1717. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-Gst.html +50 -17
  1718. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstAtomicQueue.html +31 -10
  1719. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstBuffer.html +373 -87
  1720. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstBufferList.html +59 -17
  1721. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstBufferPool.html +91 -25
  1722. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstCaps.html +447 -74
  1723. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstCapsFeatures.html +783 -0
  1724. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstContext.html +432 -0
  1725. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstDateTime.html +119 -32
  1726. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstEvent.html +392 -73
  1727. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstFormat.html +39 -12
  1728. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstGError.html +26 -11
  1729. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstInfo.html +417 -82
  1730. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstIterator.html +109 -31
  1731. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstMemory.html +207 -31
  1732. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstMessage.html +565 -95
  1733. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstMeta.html +80 -19
  1734. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstMiniObject.html +137 -38
  1735. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstParamSpec.html +11 -5
  1736. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstParse.html +67 -23
  1737. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstPoll.html +87 -24
  1738. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstQuery.html +581 -108
  1739. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstSample.html +39 -14
  1740. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstSegment.html +56 -17
  1741. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstStructure.html +301 -72
  1742. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstTagList.html +295 -85
  1743. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstToc.html +121 -30
  1744. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstTocSetter.html +19 -7
  1745. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstTypeFind.html +39 -17
  1746. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstUriHandler.html +72 -21
  1747. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstUtils.html +324 -79
  1748. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstValue.html +436 -100
  1749. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-GstVersion.html +9 -6
  1750. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-gstconfig.html +5 -5
  1751. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-hierarchy.html +5 -5
  1752. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer-support.html +6 -6
  1753. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/gstreamer.html +6 -6
  1754. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/index.html +12 -6
  1755. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/index.sgml +107 -9
  1756. data/vendor/local/share/gtk-doc/html/gstreamer-1.0/libgstreamer.html +13 -7
  1757. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstAdapter.html +81 -30
  1758. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstBaseSink.html +112 -27
  1759. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstBaseSrc.html +76 -25
  1760. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstBaseTransform.html +78 -37
  1761. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstCollectPads.html +141 -39
  1762. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstInterpolationControlSource.html +11 -5
  1763. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstLFOControlSource.html +17 -11
  1764. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstNetClientClock.html +7 -4
  1765. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstNetTimeProvider.html +10 -6
  1766. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstPushSrc.html +3 -3
  1767. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstTestClock.html +754 -0
  1768. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstTimedValueControlSource.html +35 -11
  1769. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/GstTriggerControlSource.html +7 -4
  1770. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/annotation-glossary.html +47 -48
  1771. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/api-index-deprecated.html +5 -5
  1772. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/api-index-full.html +220 -9
  1773. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-base.html +10 -4
  1774. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-check.html +7 -4
  1775. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-control.html +6 -6
  1776. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-hierarchy.html +8 -7
  1777. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-1.0.devhelp2 +59 -4
  1778. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstARGBControlBinding.html +8 -5
  1779. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstBaseParse.html +115 -30
  1780. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstBitReader.html +140 -32
  1781. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstBufferStraw.html +15 -6
  1782. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstByteReader.html +467 -119
  1783. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstByteWriter.html +280 -73
  1784. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstCheck.html +414 -23
  1785. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstDataQueue.html +598 -0
  1786. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstDirectControlBinding.html +10 -6
  1787. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstNetTimePacket.html +23 -8
  1788. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstQueueArray.html +306 -0
  1789. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstStreamConsistency.html +17 -8
  1790. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs-GstTypeFindHelper.html +37 -15
  1791. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-libs.html +13 -4
  1792. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/gstreamer-net.html +4 -4
  1793. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/index.html +14 -5
  1794. data/vendor/local/share/gtk-doc/html/gstreamer-libs-1.0/index.sgml +78 -8
  1795. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/ch01.html +6 -6
  1796. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/ch02.html +7 -7
  1797. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-1.0.devhelp2 +63 -72
  1798. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-capsfilter.html +18 -9
  1799. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-fakesink.html +35 -20
  1800. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-fakesrc.html +44 -23
  1801. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-fdsink.html +13 -7
  1802. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-fdsrc.html +15 -9
  1803. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-filesink.html +26 -20
  1804. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-filesrc.html +14 -48
  1805. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-funnel.html +17 -8
  1806. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-identity.html +44 -40
  1807. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-input-selector.html +46 -67
  1808. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-multiqueue.html +60 -45
  1809. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-output-selector.html +25 -16
  1810. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-plugin-coreelements.html +15 -9
  1811. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-queue.html +70 -26
  1812. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-queue2.html +38 -29
  1813. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-tee.html +34 -30
  1814. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-typefind.html +25 -22
  1815. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/gstreamer-plugins-valve.html +17 -8
  1816. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/index.html +6 -6
  1817. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-1.0/index.sgml +20 -29
  1818. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupAddress.html +875 -0
  1819. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupAuth.html +662 -0
  1820. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupAuthDomain.html +758 -0
  1821. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupAuthDomainBasic.html +277 -0
  1822. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupAuthDomainDigest.html +313 -0
  1823. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupAuthManager.html +216 -0
  1824. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupCache.html +326 -0
  1825. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupContentDecoder.html +114 -0
  1826. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupContentSniffer.html +189 -0
  1827. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupCookie.html +1135 -0
  1828. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupCookieJar.html +695 -0
  1829. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupCookieJarDB.html +162 -0
  1830. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupCookieJarText.html +156 -0
  1831. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupLogger.html +564 -0
  1832. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupMessage.html +2205 -0
  1833. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupMessageBody.html +1015 -0
  1834. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupMessageHeaders.html +1473 -0
  1835. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupMultipart.html +413 -0
  1836. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupMultipartInputStream.html +339 -0
  1837. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupProxyResolverDefault.html +108 -0
  1838. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupRequest.html +404 -0
  1839. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupRequestData.html +84 -0
  1840. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupRequestFile.html +113 -0
  1841. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupRequestHTTP.html +117 -0
  1842. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupServer.html +1346 -0
  1843. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupSession.html +2416 -0
  1844. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupSessionAsync.html +144 -0
  1845. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupSessionFeature.html +182 -0
  1846. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupSessionSync.html +144 -0
  1847. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupSocket.html +1239 -0
  1848. data/vendor/local/share/gtk-doc/html/libsoup-2.4/SoupURI.html +1279 -0
  1849. data/vendor/local/share/gtk-doc/html/libsoup-2.4/annotation-glossary.html +72 -0
  1850. data/vendor/local/share/gtk-doc/html/libsoup-2.4/ch01.html +49 -0
  1851. data/vendor/local/share/gtk-doc/html/libsoup-2.4/ch02.html +109 -0
  1852. data/vendor/local/share/gtk-doc/html/libsoup-2.4/ch03.html +59 -0
  1853. data/vendor/local/share/gtk-doc/html/libsoup-2.4/ch04.html +41 -0
  1854. data/vendor/local/share/gtk-doc/html/libsoup-2.4/ch05.html +38 -0
  1855. data/vendor/local/share/{doc/libxml2-2.9.0/html/html → gtk-doc/html/libsoup-2.4}/home.png +0 -0
  1856. data/vendor/local/share/gtk-doc/html/libsoup-2.4/index.html +178 -0
  1857. data/vendor/local/share/gtk-doc/html/libsoup-2.4/index.sgml +1144 -0
  1858. data/vendor/local/share/gtk-doc/html/libsoup-2.4/ix01.html +1489 -0
  1859. data/vendor/local/share/{doc/libxml2-2.9.0/html/html → gtk-doc/html/libsoup-2.4}/left.png +0 -0
  1860. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-2.4-GValue-Support.html +710 -0
  1861. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-2.4-HTML-Form-Support.html +510 -0
  1862. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-2.4-Soup-Miscellaneous-Utilities.html +1527 -0
  1863. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-2.4-Top-Level-Domain-utils.html +202 -0
  1864. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-2.4-Version-Information.html +464 -0
  1865. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-2.4-XMLRPC-Support.html +633 -0
  1866. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-2.4-soup-method.html +240 -0
  1867. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-2.4-soup-status.html +734 -0
  1868. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-2.4.devhelp2 +948 -0
  1869. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-build-howto.html +136 -0
  1870. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-client-howto.html +604 -0
  1871. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-request-howto.html +172 -0
  1872. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-server-howto.html +444 -0
  1873. data/vendor/local/share/gtk-doc/html/libsoup-2.4/libsoup-session-porting.html +218 -0
  1874. data/vendor/local/share/{doc/libxml2-2.9.0/html/html → gtk-doc/html/libsoup-2.4}/right.png +0 -0
  1875. data/vendor/local/share/gtk-doc/html/libsoup-2.4/style.css +266 -0
  1876. data/vendor/local/share/{doc/libxml2-2.9.0/html/html → gtk-doc/html/libsoup-2.4}/up.png +0 -0
  1877. data/vendor/local/share/license/flac/AUTHORS +3 -2
  1878. data/vendor/local/share/license/gst-libav/COPYING.LIB +2 -2
  1879. data/vendor/local/share/license/gst-plugins-base/COPYING +2 -2
  1880. data/vendor/local/share/license/gst-plugins-base/COPYING.LIB +2 -2
  1881. data/vendor/local/share/license/gstreamer/COPYING +2 -2
  1882. data/vendor/local/share/license/libav/COPYING.LGPLv2.1 +0 -2
  1883. data/vendor/local/share/license/libav/LICENSE +38 -18
  1884. data/vendor/local/share/license/libsoup/AUTHORS +13 -0
  1885. data/vendor/local/share/license/libsoup/COPYING +481 -0
  1886. data/vendor/local/share/locale/af/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1887. data/vendor/local/share/locale/af/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1888. data/vendor/local/share/locale/af/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1889. data/vendor/local/share/locale/af/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1890. data/vendor/local/share/locale/an/LC_MESSAGES/libsoup.mo +0 -0
  1891. data/vendor/local/share/locale/as/LC_MESSAGES/libsoup.mo +0 -0
  1892. data/vendor/local/share/locale/az/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1893. data/vendor/local/share/locale/az/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1894. data/vendor/local/share/locale/az/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1895. data/vendor/local/share/locale/az/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1896. data/vendor/local/share/locale/be/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1897. data/vendor/local/share/locale/be/LC_MESSAGES/libsoup.mo +0 -0
  1898. data/vendor/local/share/locale/bg/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1899. data/vendor/local/share/locale/bg/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1900. data/vendor/local/share/locale/bg/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1901. data/vendor/local/share/locale/bg/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1902. data/vendor/local/share/locale/bg/LC_MESSAGES/libsoup.mo +0 -0
  1903. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/libsoup.mo +0 -0
  1904. data/vendor/local/share/locale/ca/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1905. data/vendor/local/share/locale/ca/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1906. data/vendor/local/share/locale/ca/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1907. data/vendor/local/share/locale/ca/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1908. data/vendor/local/share/locale/ca/LC_MESSAGES/libsoup.mo +0 -0
  1909. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/libsoup.mo +0 -0
  1910. data/vendor/local/share/locale/cs/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1911. data/vendor/local/share/locale/cs/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1912. data/vendor/local/share/locale/cs/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1913. data/vendor/local/share/locale/cs/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1914. data/vendor/local/share/locale/cs/LC_MESSAGES/libsoup.mo +0 -0
  1915. data/vendor/local/share/locale/da/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1916. data/vendor/local/share/locale/da/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1917. data/vendor/local/share/locale/da/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1918. data/vendor/local/share/locale/da/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1919. data/vendor/local/share/locale/da/LC_MESSAGES/libsoup.mo +0 -0
  1920. data/vendor/local/share/locale/de/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1921. data/vendor/local/share/locale/de/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1922. data/vendor/local/share/locale/de/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1923. data/vendor/local/share/locale/de/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1924. data/vendor/local/share/locale/de/LC_MESSAGES/libsoup.mo +0 -0
  1925. data/vendor/local/share/locale/el/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1926. data/vendor/local/share/locale/el/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1927. data/vendor/local/share/locale/el/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1928. data/vendor/local/share/locale/el/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1929. data/vendor/local/share/locale/el/LC_MESSAGES/libsoup.mo +0 -0
  1930. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1931. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1932. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1933. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1934. data/vendor/local/share/locale/en_GB/LC_MESSAGES/libsoup.mo +0 -0
  1935. data/vendor/local/share/locale/eo/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1936. data/vendor/local/share/locale/eo/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1937. data/vendor/local/share/locale/eo/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1938. data/vendor/local/share/locale/eo/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1939. data/vendor/local/share/locale/eo/LC_MESSAGES/libsoup.mo +0 -0
  1940. data/vendor/local/share/locale/es/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1941. data/vendor/local/share/locale/es/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1942. data/vendor/local/share/locale/es/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1943. data/vendor/local/share/locale/es/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1944. data/vendor/local/share/locale/es/LC_MESSAGES/libsoup.mo +0 -0
  1945. data/vendor/local/share/locale/et/LC_MESSAGES/libsoup.mo +0 -0
  1946. data/vendor/local/share/locale/eu/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1947. data/vendor/local/share/locale/eu/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1948. data/vendor/local/share/locale/eu/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1949. data/vendor/local/share/locale/eu/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1950. data/vendor/local/share/locale/eu/LC_MESSAGES/libsoup.mo +0 -0
  1951. data/vendor/local/share/locale/fa/LC_MESSAGES/libsoup.mo +0 -0
  1952. data/vendor/local/share/locale/fi/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1953. data/vendor/local/share/locale/fi/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1954. data/vendor/local/share/locale/fi/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1955. data/vendor/local/share/locale/fi/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1956. data/vendor/local/share/locale/fr/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1957. data/vendor/local/share/locale/fr/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1958. data/vendor/local/share/locale/fr/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1959. data/vendor/local/share/locale/fr/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1960. data/vendor/local/share/locale/fr/LC_MESSAGES/libsoup.mo +0 -0
  1961. data/vendor/local/share/locale/fur/LC_MESSAGES/libsoup.mo +0 -0
  1962. data/vendor/local/share/locale/gl/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1963. data/vendor/local/share/locale/gl/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1964. data/vendor/local/share/locale/gl/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1965. data/vendor/local/share/locale/gl/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1966. data/vendor/local/share/locale/gl/LC_MESSAGES/libsoup.mo +0 -0
  1967. data/vendor/local/share/locale/gu/LC_MESSAGES/libsoup.mo +0 -0
  1968. data/vendor/local/share/locale/he/LC_MESSAGES/libsoup.mo +0 -0
  1969. data/vendor/local/share/locale/hi/LC_MESSAGES/libsoup.mo +0 -0
  1970. data/vendor/local/share/locale/hr/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1971. data/vendor/local/share/locale/hr/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1972. data/vendor/local/share/locale/hr/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1973. data/vendor/local/share/locale/hr/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1974. data/vendor/local/share/locale/hu/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1975. data/vendor/local/share/locale/hu/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1976. data/vendor/local/share/locale/hu/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1977. data/vendor/local/share/locale/hu/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1978. data/vendor/local/share/locale/hu/LC_MESSAGES/libsoup.mo +0 -0
  1979. data/vendor/local/share/locale/id/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1980. data/vendor/local/share/locale/id/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1981. data/vendor/local/share/locale/id/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1982. data/vendor/local/share/locale/id/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1983. data/vendor/local/share/locale/id/LC_MESSAGES/libsoup.mo +0 -0
  1984. data/vendor/local/share/locale/it/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1985. data/vendor/local/share/locale/it/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1986. data/vendor/local/share/locale/it/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1987. data/vendor/local/share/locale/it/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1988. data/vendor/local/share/locale/it/LC_MESSAGES/libsoup.mo +0 -0
  1989. data/vendor/local/share/locale/ja/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1990. data/vendor/local/share/locale/ja/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1991. data/vendor/local/share/locale/ja/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  1992. data/vendor/local/share/locale/ja/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  1993. data/vendor/local/share/locale/ja/LC_MESSAGES/libsoup.mo +0 -0
  1994. data/vendor/local/share/locale/kn/LC_MESSAGES/libsoup.mo +0 -0
  1995. data/vendor/local/share/locale/ko/LC_MESSAGES/libsoup.mo +0 -0
  1996. data/vendor/local/share/locale/ky/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1997. data/vendor/local/share/locale/lt/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  1998. data/vendor/local/share/locale/lt/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  1999. data/vendor/local/share/locale/lt/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2000. data/vendor/local/share/locale/lt/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2001. data/vendor/local/share/locale/lt/LC_MESSAGES/libsoup.mo +0 -0
  2002. data/vendor/local/share/locale/lv/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2003. data/vendor/local/share/locale/lv/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2004. data/vendor/local/share/locale/lv/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2005. data/vendor/local/share/locale/lv/LC_MESSAGES/libsoup.mo +0 -0
  2006. data/vendor/local/share/locale/ml/LC_MESSAGES/libsoup.mo +0 -0
  2007. data/vendor/local/share/locale/mr/LC_MESSAGES/libsoup.mo +0 -0
  2008. data/vendor/local/share/locale/mt/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2009. data/vendor/local/share/locale/mt/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2010. data/vendor/local/share/locale/nb/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2011. data/vendor/local/share/locale/nb/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2012. data/vendor/local/share/locale/nb/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2013. data/vendor/local/share/locale/nb/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2014. data/vendor/local/share/locale/nb/LC_MESSAGES/libsoup.mo +0 -0
  2015. data/vendor/local/share/locale/nl/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2016. data/vendor/local/share/locale/nl/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2017. data/vendor/local/share/locale/nl/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2018. data/vendor/local/share/locale/nl/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2019. data/vendor/local/share/locale/nl/LC_MESSAGES/libsoup.mo +0 -0
  2020. data/vendor/local/share/locale/or/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2021. data/vendor/local/share/locale/or/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2022. data/vendor/local/share/locale/or/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2023. data/vendor/local/share/locale/or/LC_MESSAGES/libsoup.mo +0 -0
  2024. data/vendor/local/share/locale/pa/LC_MESSAGES/libsoup.mo +0 -0
  2025. data/vendor/local/share/locale/pl/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2026. data/vendor/local/share/locale/pl/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2027. data/vendor/local/share/locale/pl/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2028. data/vendor/local/share/locale/pl/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2029. data/vendor/local/share/locale/pl/LC_MESSAGES/libsoup.mo +0 -0
  2030. data/vendor/local/share/locale/pt/LC_MESSAGES/libsoup.mo +0 -0
  2031. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2032. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2033. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2034. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2035. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/libsoup.mo +0 -0
  2036. data/vendor/local/share/locale/ro/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2037. data/vendor/local/share/locale/ro/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2038. data/vendor/local/share/locale/ro/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2039. data/vendor/local/share/locale/ro/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2040. data/vendor/local/share/locale/ro/LC_MESSAGES/libsoup.mo +0 -0
  2041. data/vendor/local/share/locale/ru/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2042. data/vendor/local/share/locale/ru/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2043. data/vendor/local/share/locale/ru/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2044. data/vendor/local/share/locale/ru/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2045. data/vendor/local/share/locale/ru/LC_MESSAGES/libsoup.mo +0 -0
  2046. data/vendor/local/share/locale/rw/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2047. data/vendor/local/share/locale/sk/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2048. data/vendor/local/share/locale/sk/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2049. data/vendor/local/share/locale/sk/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2050. data/vendor/local/share/locale/sk/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2051. data/vendor/local/share/locale/sk/LC_MESSAGES/libsoup.mo +0 -0
  2052. data/vendor/local/share/locale/sl/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2053. data/vendor/local/share/locale/sl/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2054. data/vendor/local/share/locale/sl/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2055. data/vendor/local/share/locale/sl/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2056. data/vendor/local/share/locale/sl/LC_MESSAGES/libsoup.mo +0 -0
  2057. data/vendor/local/share/locale/sq/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2058. data/vendor/local/share/locale/sq/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2059. data/vendor/local/share/locale/sq/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2060. data/vendor/local/share/locale/sq/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2061. data/vendor/local/share/locale/sr/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2062. data/vendor/local/share/locale/sr/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2063. data/vendor/local/share/locale/sr/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2064. data/vendor/local/share/locale/sr/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2065. data/vendor/local/share/locale/sr/LC_MESSAGES/libsoup.mo +0 -0
  2066. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/libsoup.mo +0 -0
  2067. data/vendor/local/share/locale/sv/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2068. data/vendor/local/share/locale/sv/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2069. data/vendor/local/share/locale/sv/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2070. data/vendor/local/share/locale/sv/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2071. data/vendor/local/share/locale/sv/LC_MESSAGES/libsoup.mo +0 -0
  2072. data/vendor/local/share/locale/ta/LC_MESSAGES/libsoup.mo +0 -0
  2073. data/vendor/local/share/locale/te/LC_MESSAGES/libsoup.mo +0 -0
  2074. data/vendor/local/share/locale/tg/LC_MESSAGES/libsoup.mo +0 -0
  2075. data/vendor/local/share/locale/th/LC_MESSAGES/libsoup.mo +0 -0
  2076. data/vendor/local/share/locale/tr/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2077. data/vendor/local/share/locale/tr/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2078. data/vendor/local/share/locale/tr/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2079. data/vendor/local/share/locale/tr/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2080. data/vendor/local/share/locale/tr/LC_MESSAGES/libsoup.mo +0 -0
  2081. data/vendor/local/share/locale/ug/LC_MESSAGES/libsoup.mo +0 -0
  2082. data/vendor/local/share/locale/uk/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2083. data/vendor/local/share/locale/uk/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2084. data/vendor/local/share/locale/uk/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2085. data/vendor/local/share/locale/uk/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2086. data/vendor/local/share/locale/uk/LC_MESSAGES/libsoup.mo +0 -0
  2087. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/libsoup.mo +0 -0
  2088. data/vendor/local/share/locale/vi/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2089. data/vendor/local/share/locale/vi/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2090. data/vendor/local/share/locale/vi/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2091. data/vendor/local/share/locale/vi/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2092. data/vendor/local/share/locale/vi/LC_MESSAGES/libsoup.mo +0 -0
  2093. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gst-plugins-bad-1.0.mo +0 -0
  2094. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gst-plugins-base-1.0.mo +0 -0
  2095. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2096. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2097. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/libsoup.mo +0 -0
  2098. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2099. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/libsoup.mo +0 -0
  2100. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gst-plugins-good-1.0.mo +0 -0
  2101. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gstreamer-1.0.mo +0 -0
  2102. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/libsoup.mo +0 -0
  2103. data/vendor/local/share/man/man1/cjpeg.1 +49 -8
  2104. data/vendor/local/share/man/man1/flac.1 +65 -10
  2105. data/vendor/local/share/man/man1/gst-launch-1.0.1 +27 -6
  2106. data/vendor/local/share/man/man1/gst-play-1.0.1 +34 -0
  2107. data/vendor/local/share/man/man1/metaflac.1 +5 -4
  2108. data/vendor/local/share/man/man1/sqlite3.1 +229 -0
  2109. metadata +865 -838
  2110. data/vendor/local/bin/libgstbasevideo-1.0-0.dll +0 -0
  2111. data/vendor/local/bin/libgstsignalprocessor-1.0-0.dll +0 -0
  2112. data/vendor/local/bin/libjpeg-8.dll +0 -0
  2113. data/vendor/local/bin/libxml2-2.dll +0 -0
  2114. data/vendor/local/bin/xmlcatalog.exe +0 -0
  2115. data/vendor/local/bin/xmllint.exe +0 -0
  2116. data/vendor/local/include/gstreamer-1.0/gst/signalprocessor/gstsignalprocessor.h +0 -136
  2117. data/vendor/local/include/gstreamer-1.0/gst/video/gstsurfaceconverter.h +0 -65
  2118. data/vendor/local/include/gstreamer-1.0/gst/video/gstsurfacemeta.h +0 -68
  2119. data/vendor/local/include/gstreamer-1.0/gst/video/videocontext.h +0 -117
  2120. data/vendor/local/include/libxml2/libxml/DOCBparser.h +0 -96
  2121. data/vendor/local/include/libxml2/libxml/HTMLparser.h +0 -306
  2122. data/vendor/local/include/libxml2/libxml/HTMLtree.h +0 -147
  2123. data/vendor/local/include/libxml2/libxml/SAX.h +0 -173
  2124. data/vendor/local/include/libxml2/libxml/SAX2.h +0 -176
  2125. data/vendor/local/include/libxml2/libxml/c14n.h +0 -126
  2126. data/vendor/local/include/libxml2/libxml/catalog.h +0 -182
  2127. data/vendor/local/include/libxml2/libxml/chvalid.h +0 -230
  2128. data/vendor/local/include/libxml2/libxml/debugXML.h +0 -217
  2129. data/vendor/local/include/libxml2/libxml/dict.h +0 -80
  2130. data/vendor/local/include/libxml2/libxml/encoding.h +0 -240
  2131. data/vendor/local/include/libxml2/libxml/entities.h +0 -150
  2132. data/vendor/local/include/libxml2/libxml/globals.h +0 -502
  2133. data/vendor/local/include/libxml2/libxml/hash.h +0 -233
  2134. data/vendor/local/include/libxml2/libxml/list.h +0 -137
  2135. data/vendor/local/include/libxml2/libxml/nanoftp.h +0 -163
  2136. data/vendor/local/include/libxml2/libxml/nanohttp.h +0 -81
  2137. data/vendor/local/include/libxml2/libxml/parser.h +0 -1240
  2138. data/vendor/local/include/libxml2/libxml/parserInternals.h +0 -644
  2139. data/vendor/local/include/libxml2/libxml/pattern.h +0 -100
  2140. data/vendor/local/include/libxml2/libxml/relaxng.h +0 -213
  2141. data/vendor/local/include/libxml2/libxml/schemasInternals.h +0 -958
  2142. data/vendor/local/include/libxml2/libxml/schematron.h +0 -142
  2143. data/vendor/local/include/libxml2/libxml/threads.h +0 -84
  2144. data/vendor/local/include/libxml2/libxml/tree.h +0 -1303
  2145. data/vendor/local/include/libxml2/libxml/uri.h +0 -94
  2146. data/vendor/local/include/libxml2/libxml/valid.h +0 -458
  2147. data/vendor/local/include/libxml2/libxml/xinclude.h +0 -129
  2148. data/vendor/local/include/libxml2/libxml/xlink.h +0 -189
  2149. data/vendor/local/include/libxml2/libxml/xmlIO.h +0 -366
  2150. data/vendor/local/include/libxml2/libxml/xmlautomata.h +0 -146
  2151. data/vendor/local/include/libxml2/libxml/xmlerror.h +0 -944
  2152. data/vendor/local/include/libxml2/libxml/xmlexports.h +0 -162
  2153. data/vendor/local/include/libxml2/libxml/xmlmemory.h +0 -224
  2154. data/vendor/local/include/libxml2/libxml/xmlmodule.h +0 -57
  2155. data/vendor/local/include/libxml2/libxml/xmlreader.h +0 -428
  2156. data/vendor/local/include/libxml2/libxml/xmlregexp.h +0 -222
  2157. data/vendor/local/include/libxml2/libxml/xmlsave.h +0 -88
  2158. data/vendor/local/include/libxml2/libxml/xmlschemas.h +0 -246
  2159. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +0 -151
  2160. data/vendor/local/include/libxml2/libxml/xmlstring.h +0 -140
  2161. data/vendor/local/include/libxml2/libxml/xmlunicode.h +0 -202
  2162. data/vendor/local/include/libxml2/libxml/xmlversion.h +0 -480
  2163. data/vendor/local/include/libxml2/libxml/xmlwriter.h +0 -488
  2164. data/vendor/local/include/libxml2/libxml/xpath.h +0 -550
  2165. data/vendor/local/include/libxml2/libxml/xpathInternals.h +0 -632
  2166. data/vendor/local/include/libxml2/libxml/xpointer.h +0 -114
  2167. data/vendor/local/lib/gstreamer-1.0/libgstavscale.dll +0 -0
  2168. data/vendor/local/lib/gstreamer-1.0/libgstavscale.dll.a +0 -0
  2169. data/vendor/local/lib/gstreamer-1.0/libgstavscale.la +0 -41
  2170. data/vendor/local/lib/gstreamer-1.0/libgstrtpmux.dll +0 -0
  2171. data/vendor/local/lib/gstreamer-1.0/libgstrtpmux.dll.a +0 -0
  2172. data/vendor/local/lib/gstreamer-1.0/libgstrtpmux.la +0 -41
  2173. data/vendor/local/lib/gstreamer-1.0/libgstrtpvp8.dll +0 -0
  2174. data/vendor/local/lib/gstreamer-1.0/libgstrtpvp8.dll.a +0 -0
  2175. data/vendor/local/lib/gstreamer-1.0/libgstrtpvp8.la +0 -41
  2176. data/vendor/local/lib/gstreamer-1.0/libgstscaletempoplugin.dll +0 -0
  2177. data/vendor/local/lib/gstreamer-1.0/libgstscaletempoplugin.dll.a +0 -0
  2178. data/vendor/local/lib/gstreamer-1.0/libgstscaletempoplugin.la +0 -41
  2179. data/vendor/local/lib/libFLAC.a +0 -0
  2180. data/vendor/local/lib/libgstbasevideo-1.0.dll.a +0 -0
  2181. data/vendor/local/lib/libgstbasevideo-1.0.la +0 -41
  2182. data/vendor/local/lib/libgstsignalprocessor-1.0.dll.a +0 -0
  2183. data/vendor/local/lib/libgstsignalprocessor-1.0.la +0 -41
  2184. data/vendor/local/lib/libxml2.def +0 -1659
  2185. data/vendor/local/lib/libxml2.dll.a +0 -0
  2186. data/vendor/local/lib/libxml2.lib +0 -0
  2187. data/vendor/local/lib/pkgconfig/gstreamer-basevideo-1.0.pc +0 -12
  2188. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +0 -13
  2189. data/vendor/local/manifest/jpeg-dev_8-1_win32.mft +0 -18
  2190. data/vendor/local/manifest/jpeg_8-1_win32.mft +0 -2
  2191. data/vendor/local/manifest/libsoup-dev_2.26.3-1_win32.mft +0 -41
  2192. data/vendor/local/manifest/libsoup_2.26.3-1_win32.mft +0 -2
  2193. data/vendor/local/manifest/libxml2-dev_2.9.0-1_win32.mft +0 -268
  2194. data/vendor/local/manifest/libxml2_2.9.0-1_win32.mft +0 -2
  2195. data/vendor/local/share/aclocal/libxml.m4 +0 -188
  2196. data/vendor/local/share/doc/flac-1.2.1/FLAC.tag +0 -12259
  2197. data/vendor/local/share/doc/flac-1.2.1/html/api/+_2all_8h-source.html +0 -73
  2198. data/vendor/local/share/doc/flac-1.2.1/html/api/+_2export_8h-source.html +0 -89
  2199. data/vendor/local/share/doc/flac-1.2.1/html/api/+_2export_8h.html +0 -55
  2200. data/vendor/local/share/doc/flac-1.2.1/html/api/+_2metadata_8h-source.html +0 -751
  2201. data/vendor/local/share/doc/flac-1.2.1/html/api/+_2metadata_8h.html +0 -66
  2202. data/vendor/local/share/doc/flac-1.2.1/html/api/all_8h-source.html +0 -77
  2203. data/vendor/local/share/doc/flac-1.2.1/html/api/annotated.html +0 -81
  2204. data/vendor/local/share/doc/flac-1.2.1/html/api/assert_8h-source.html +0 -77
  2205. data/vendor/local/share/doc/flac-1.2.1/html/api/callback_8h-source.html +0 -103
  2206. data/vendor/local/share/doc/flac-1.2.1/html/api/callback_8h.html +0 -59
  2207. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Decoder_1_1File-members.html +0 -87
  2208. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Decoder_1_1File.html +0 -1457
  2209. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Decoder_1_1File.png +0 -0
  2210. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Decoder_1_1Stream-members.html +0 -79
  2211. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Decoder_1_1Stream.html +0 -1268
  2212. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Decoder_1_1Stream.png +0 -0
  2213. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State-members.html +0 -36
  2214. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State.html +0 -59
  2215. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Encoder_1_1File-members.html +0 -102
  2216. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Encoder_1_1File.html +0 -2124
  2217. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Encoder_1_1File.png +0 -0
  2218. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Encoder_1_1Stream-members.html +0 -93
  2219. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Encoder_1_1Stream.html +0 -1882
  2220. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Encoder_1_1Stream.png +0 -0
  2221. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State-members.html +0 -36
  2222. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State.html +0 -59
  2223. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Application-members.html +0 -71
  2224. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Application.html +0 -548
  2225. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Application.png +0 -0
  2226. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Chain-members.html +0 -46
  2227. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Chain.html +0 -453
  2228. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status-members.html +0 -35
  2229. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status.html +0 -56
  2230. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1CueSheet-members.html +0 -82
  2231. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1CueSheet.html +0 -799
  2232. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1CueSheet.png +0 -0
  2233. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html +0 -52
  2234. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html +0 -131
  2235. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Iterator-members.html +0 -45
  2236. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Iterator.html +0 -370
  2237. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Padding-members.html +0 -67
  2238. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Padding.html +0 -498
  2239. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Padding.png +0 -0
  2240. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Picture-members.html +0 -82
  2241. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Picture.html +0 -696
  2242. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Picture.png +0 -0
  2243. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Prototype-members.html +0 -56
  2244. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Prototype.html +0 -435
  2245. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Prototype.png +0 -0
  2246. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1SeekTable-members.html +0 -72
  2247. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1SeekTable.html +0 -646
  2248. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1SeekTable.png +0 -0
  2249. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1SimpleIterator-members.html +0 -50
  2250. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1SimpleIterator.html +0 -561
  2251. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status-members.html +0 -35
  2252. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html +0 -56
  2253. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1StreamInfo-members.html +0 -84
  2254. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1StreamInfo.html +0 -575
  2255. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1StreamInfo.png +0 -0
  2256. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Unknown-members.html +0 -69
  2257. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Unknown.html +0 -542
  2258. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1Unknown.png +0 -0
  2259. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1VorbisComment-members.html +0 -74
  2260. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1VorbisComment.html +0 -685
  2261. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1VorbisComment.png +0 -0
  2262. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html +0 -58
  2263. data/vendor/local/share/doc/flac-1.2.1/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html +0 -152
  2264. data/vendor/local/share/doc/flac-1.2.1/html/api/classes.html +0 -41
  2265. data/vendor/local/share/doc/flac-1.2.1/html/api/decoder_8h-source.html +0 -190
  2266. data/vendor/local/share/doc/flac-1.2.1/html/api/decoder_8h.html +0 -50
  2267. data/vendor/local/share/doc/flac-1.2.1/html/api/dir_000000.html +0 -42
  2268. data/vendor/local/share/doc/flac-1.2.1/html/api/dir_000001.html +0 -48
  2269. data/vendor/local/share/doc/flac-1.2.1/html/api/dir_000002.html +0 -56
  2270. data/vendor/local/share/doc/flac-1.2.1/html/api/dirs.html +0 -37
  2271. data/vendor/local/share/doc/flac-1.2.1/html/api/doxygen.css +0 -309
  2272. data/vendor/local/share/doc/flac-1.2.1/html/api/doxygen.png +0 -0
  2273. data/vendor/local/share/doc/flac-1.2.1/html/api/encoder_8h-source.html +0 -203
  2274. data/vendor/local/share/doc/flac-1.2.1/html/api/encoder_8h.html +0 -51
  2275. data/vendor/local/share/doc/flac-1.2.1/html/api/export_8h-source.html +0 -95
  2276. data/vendor/local/share/doc/flac-1.2.1/html/api/export_8h.html +0 -55
  2277. data/vendor/local/share/doc/flac-1.2.1/html/api/files.html +0 -46
  2278. data/vendor/local/share/doc/flac-1.2.1/html/api/format_8h-source.html +0 -521
  2279. data/vendor/local/share/doc/flac-1.2.1/html/api/format_8h.html +0 -330
  2280. data/vendor/local/share/doc/flac-1.2.1/html/api/functions.html +0 -260
  2281. data/vendor/local/share/doc/flac-1.2.1/html/api/functions_func.html +0 -210
  2282. data/vendor/local/share/doc/flac-1.2.1/html/api/functions_vars.html +0 -117
  2283. data/vendor/local/share/doc/flac-1.2.1/html/api/globals.html +0 -39
  2284. data/vendor/local/share/doc/flac-1.2.1/html/api/globals_0x66.html +0 -529
  2285. data/vendor/local/share/doc/flac-1.2.1/html/api/globals_0x67.html +0 -42
  2286. data/vendor/local/share/doc/flac-1.2.1/html/api/globals_defs.html +0 -58
  2287. data/vendor/local/share/doc/flac-1.2.1/html/api/globals_enum.html +0 -57
  2288. data/vendor/local/share/doc/flac-1.2.1/html/api/globals_eval.html +0 -177
  2289. data/vendor/local/share/doc/flac-1.2.1/html/api/globals_func.html +0 -233
  2290. data/vendor/local/share/doc/flac-1.2.1/html/api/globals_type.html +0 -59
  2291. data/vendor/local/share/doc/flac-1.2.1/html/api/globals_vars.html +0 -135
  2292. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac.html +0 -50
  2293. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__callbacks.html +0 -299
  2294. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__decoder.html +0 -44
  2295. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__encoder.html +0 -44
  2296. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__export.html +0 -148
  2297. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__format.html +0 -3353
  2298. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__metadata.html +0 -60
  2299. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__metadata__level0.html +0 -308
  2300. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__metadata__level1.html +0 -950
  2301. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__metadata__level2.html +0 -1428
  2302. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__metadata__object.html +0 -2741
  2303. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__stream__decoder.html +0 -2854
  2304. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flac__stream__encoder.html +0 -3644
  2305. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flacpp.html +0 -45
  2306. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flacpp__decoder.html +0 -50
  2307. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flacpp__encoder.html +0 -50
  2308. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flacpp__export.html +0 -54
  2309. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flacpp__metadata.html +0 -50
  2310. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flacpp__metadata__level0.html +0 -414
  2311. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flacpp__metadata__level1.html +0 -50
  2312. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flacpp__metadata__level2.html +0 -52
  2313. data/vendor/local/share/doc/flac-1.2.1/html/api/group__flacpp__metadata__object.html +0 -227
  2314. data/vendor/local/share/doc/flac-1.2.1/html/api/group__porting.html +0 -52
  2315. data/vendor/local/share/doc/flac-1.2.1/html/api/group__porting__1__1__2__to__1__1__3.html +0 -101
  2316. data/vendor/local/share/doc/flac-1.2.1/html/api/group__porting__1__1__3__to__1__1__4.html +0 -38
  2317. data/vendor/local/share/doc/flac-1.2.1/html/api/group__porting__1__1__4__to__1__2__0.html +0 -39
  2318. data/vendor/local/share/doc/flac-1.2.1/html/api/hierarchy.html +0 -87
  2319. data/vendor/local/share/doc/flac-1.2.1/html/api/index.html +0 -57
  2320. data/vendor/local/share/doc/flac-1.2.1/html/api/metadata_8h-source.html +0 -335
  2321. data/vendor/local/share/doc/flac-1.2.1/html/api/metadata_8h.html +0 -283
  2322. data/vendor/local/share/doc/flac-1.2.1/html/api/modules.html +0 -72
  2323. data/vendor/local/share/doc/flac-1.2.1/html/api/ordinals_8h-source.html +0 -112
  2324. data/vendor/local/share/doc/flac-1.2.1/html/api/stream__decoder_8h-source.html +0 -333
  2325. data/vendor/local/share/doc/flac-1.2.1/html/api/stream__decoder_8h.html +0 -206
  2326. data/vendor/local/share/doc/flac-1.2.1/html/api/stream__encoder_8h-source.html +0 -305
  2327. data/vendor/local/share/doc/flac-1.2.1/html/api/stream__encoder_8h.html +0 -236
  2328. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____EntropyCodingMethod-members.html +0 -34
  2329. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____EntropyCodingMethod.html +0 -54
  2330. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____EntropyCodingMethod__PartitionedRice-members.html +0 -33
  2331. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____EntropyCodingMethod__PartitionedRice.html +0 -95
  2332. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____EntropyCodingMethod__PartitionedRiceContents-members.html +0 -34
  2333. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____EntropyCodingMethod__PartitionedRiceContents.html +0 -120
  2334. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Frame-members.html +0 -34
  2335. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Frame.html +0 -53
  2336. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____FrameFooter-members.html +0 -32
  2337. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____FrameFooter.html +0 -70
  2338. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____FrameHeader-members.html +0 -41
  2339. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____FrameHeader.html +0 -251
  2340. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____IOCallbacks-members.html +0 -37
  2341. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____IOCallbacks.html +0 -63
  2342. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamDecoder-members.html +0 -33
  2343. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamDecoder.html +0 -50
  2344. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamEncoder-members.html +0 -33
  2345. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamEncoder.html +0 -50
  2346. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata-members.html +0 -43
  2347. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata.html +0 -163
  2348. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__Application-members.html +0 -33
  2349. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__Application.html +0 -50
  2350. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__CueSheet-members.html +0 -36
  2351. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__CueSheet.html +0 -170
  2352. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__CueSheet__Index-members.html +0 -33
  2353. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__CueSheet__Index.html +0 -95
  2354. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__CueSheet__Track-members.html +0 -38
  2355. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__CueSheet__Track.html +0 -220
  2356. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__Padding-members.html +0 -32
  2357. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__Padding.html +0 -70
  2358. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__Picture-members.html +0 -40
  2359. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__Picture.html +0 -270
  2360. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__SeekPoint-members.html +0 -34
  2361. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__SeekPoint.html +0 -120
  2362. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__SeekTable-members.html +0 -33
  2363. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__SeekTable.html +0 -54
  2364. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__StreamInfo-members.html +0 -40
  2365. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__StreamInfo.html +0 -71
  2366. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__Unknown-members.html +0 -32
  2367. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__Unknown.html +0 -47
  2368. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__VorbisComment-members.html +0 -34
  2369. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__VorbisComment.html +0 -53
  2370. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__VorbisComment__Entry-members.html +0 -33
  2371. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____StreamMetadata__VorbisComment__Entry.html +0 -52
  2372. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe-members.html +0 -38
  2373. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe.html +0 -63
  2374. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe__Constant-members.html +0 -32
  2375. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe__Constant.html +0 -70
  2376. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe__Fixed-members.html +0 -35
  2377. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe__Fixed.html +0 -145
  2378. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe__LPC-members.html +0 -38
  2379. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe__LPC.html +0 -220
  2380. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe__Verbatim-members.html +0 -32
  2381. data/vendor/local/share/doc/flac-1.2.1/html/api/structFLAC____Subframe__Verbatim.html +0 -70
  2382. data/vendor/local/share/doc/flac-1.2.1/html/changelog.html +0 -832
  2383. data/vendor/local/share/doc/flac-1.2.1/html/comparison.html +0 -431
  2384. data/vendor/local/share/doc/flac-1.2.1/html/comparison__chopin_prelude_24.html +0 -168
  2385. data/vendor/local/share/doc/flac-1.2.1/html/comparison__dream_theater_600.html +0 -168
  2386. data/vendor/local/share/doc/flac-1.2.1/html/comparison__eddie_warner_titus.html +0 -168
  2387. data/vendor/local/share/doc/flac-1.2.1/html/comparison__fanfare_de_l_eventail_de_jeanne.html +0 -168
  2388. data/vendor/local/share/doc/flac-1.2.1/html/comparison__gloria_estefan_conga.html +0 -168
  2389. data/vendor/local/share/doc/flac-1.2.1/html/comparison__hand_in_my_pocket.html +0 -168
  2390. data/vendor/local/share/doc/flac-1.2.1/html/comparison__l_sub_raga_sivapriya.html +0 -168
  2391. data/vendor/local/share/doc/flac-1.2.1/html/comparison__laetatus_sum.html +0 -168
  2392. data/vendor/local/share/doc/flac-1.2.1/html/comparison__mummified_in_barbed_wire.html +0 -168
  2393. data/vendor/local/share/doc/flac-1.2.1/html/comparison__prokofiev_pcon3_3.html +0 -168
  2394. data/vendor/local/share/doc/flac-1.2.1/html/comparison__ravel_sq4_4.html +0 -168
  2395. data/vendor/local/share/doc/flac-1.2.1/html/comparison__scarlatti_k42.html +0 -168
  2396. data/vendor/local/share/doc/flac-1.2.1/html/comparison__tool_forty_six_and_2.html +0 -168
  2397. data/vendor/local/share/doc/flac-1.2.1/html/comparison__white_room.html +0 -168
  2398. data/vendor/local/share/doc/flac-1.2.1/html/comparison_all_cpudectime.html +0 -165
  2399. data/vendor/local/share/doc/flac-1.2.1/html/comparison_all_cpuenctime.html +0 -165
  2400. data/vendor/local/share/doc/flac-1.2.1/html/comparison_all_procdectime.html +0 -165
  2401. data/vendor/local/share/doc/flac-1.2.1/html/comparison_all_procenctime.html +0 -165
  2402. data/vendor/local/share/doc/flac-1.2.1/html/comparison_all_ratio.html +0 -165
  2403. data/vendor/local/share/doc/flac-1.2.1/html/developers.html +0 -141
  2404. data/vendor/local/share/doc/flac-1.2.1/html/documentation.html +0 -105
  2405. data/vendor/local/share/doc/flac-1.2.1/html/documentation_bugs.html +0 -101
  2406. data/vendor/local/share/doc/flac-1.2.1/html/documentation_example_code.html +0 -81
  2407. data/vendor/local/share/doc/flac-1.2.1/html/documentation_format_overview.html +0 -130
  2408. data/vendor/local/share/doc/flac-1.2.1/html/documentation_tasks.html +0 -226
  2409. data/vendor/local/share/doc/flac-1.2.1/html/documentation_tools.html +0 -92
  2410. data/vendor/local/share/doc/flac-1.2.1/html/documentation_tools_flac.html +0 -1135
  2411. data/vendor/local/share/doc/flac-1.2.1/html/documentation_tools_metaflac.html +0 -570
  2412. data/vendor/local/share/doc/flac-1.2.1/html/documentation_tools_plugins.html +0 -94
  2413. data/vendor/local/share/doc/flac-1.2.1/html/download.html +0 -284
  2414. data/vendor/local/share/doc/flac-1.2.1/html/faq.html +0 -402
  2415. data/vendor/local/share/doc/flac-1.2.1/html/features.html +0 -127
  2416. data/vendor/local/share/doc/flac-1.2.1/html/flac.css +0 -191
  2417. data/vendor/local/share/doc/flac-1.2.1/html/format.html +0 -1852
  2418. data/vendor/local/share/doc/flac-1.2.1/html/id.html +0 -289
  2419. data/vendor/local/share/doc/flac-1.2.1/html/index.html +0 -148
  2420. data/vendor/local/share/doc/flac-1.2.1/html/itunes.html +0 -91
  2421. data/vendor/local/share/doc/flac-1.2.1/html/license.html +0 -93
  2422. data/vendor/local/share/doc/flac-1.2.1/html/links.html +0 -485
  2423. data/vendor/local/share/doc/flac-1.2.1/html/news.html +0 -697
  2424. data/vendor/local/share/doc/flac-1.2.1/html/ogg_mapping.html +0 -138
  2425. data/vendor/local/share/doc/flac-1.2.1/html/ru/authors.html +0 -112
  2426. data/vendor/local/share/doc/flac-1.2.1/html/ru/comparison.html +0 -864
  2427. data/vendor/local/share/doc/flac-1.2.1/html/ru/developers.html +0 -109
  2428. data/vendor/local/share/doc/flac-1.2.1/html/ru/documentation.html +0 -516
  2429. data/vendor/local/share/doc/flac-1.2.1/html/ru/download.html +0 -109
  2430. data/vendor/local/share/doc/flac-1.2.1/html/ru/features.html +0 -124
  2431. data/vendor/local/share/doc/flac-1.2.1/html/ru/format.html +0 -1006
  2432. data/vendor/local/share/doc/flac-1.2.1/html/ru/goals.html +0 -104
  2433. data/vendor/local/share/doc/flac-1.2.1/html/ru/id.html +0 -128
  2434. data/vendor/local/share/doc/flac-1.2.1/html/ru/index.html +0 -121
  2435. data/vendor/local/share/doc/flac-1.2.1/html/ru/links.html +0 -124
  2436. data/vendor/local/share/doc/flac-1.2.1/html/ru/news.html +0 -304
  2437. data/vendor/local/share/doc/libogg-1.3.0/framing.html +0 -429
  2438. data/vendor/local/share/doc/libogg-1.3.0/index.html +0 -105
  2439. data/vendor/local/share/doc/libogg-1.3.0/ogg/bitpacking.html +0 -103
  2440. data/vendor/local/share/doc/libogg-1.3.0/ogg/datastructures.html +0 -59
  2441. data/vendor/local/share/doc/libogg-1.3.0/ogg/decoding.html +0 -104
  2442. data/vendor/local/share/doc/libogg-1.3.0/ogg/encoding.html +0 -76
  2443. data/vendor/local/share/doc/libogg-1.3.0/ogg/general.html +0 -109
  2444. data/vendor/local/share/doc/libogg-1.3.0/ogg/index.html +0 -39
  2445. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet.html +0 -75
  2446. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet_clear.html +0 -64
  2447. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page.html +0 -75
  2448. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_bos.html +0 -65
  2449. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_checksum_set.html +0 -62
  2450. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_continued.html +0 -64
  2451. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_eos.html +0 -65
  2452. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_granulepos.html +0 -65
  2453. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_packets.html +0 -75
  2454. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_pageno.html +0 -63
  2455. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_serialno.html +0 -63
  2456. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_version.html +0 -63
  2457. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_clear.html +0 -61
  2458. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_destroy.html +0 -71
  2459. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_eos.html +0 -62
  2460. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_flush.html +0 -67
  2461. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_init.html +0 -66
  2462. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetin.html +0 -72
  2463. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetout.html +0 -85
  2464. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetpeek.html +0 -85
  2465. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pagein.html +0 -67
  2466. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout.html +0 -84
  2467. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout_fill.html +0 -89
  2468. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset.html +0 -61
  2469. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset_serialno.html +0 -67
  2470. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_state.html +0 -121
  2471. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_buffer.html +0 -67
  2472. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_clear.html +0 -62
  2473. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_destroy.html +0 -68
  2474. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_init.html +0 -63
  2475. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageout.html +0 -77
  2476. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageseek.html +0 -68
  2477. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_reset.html +0 -63
  2478. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_state.html +0 -77
  2479. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_wrote.html +0 -73
  2480. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv.html +0 -64
  2481. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv1.html +0 -62
  2482. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bits.html +0 -62
  2483. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_buffer.html +0 -66
  2484. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bytes.html +0 -67
  2485. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_get_buffer.html +0 -62
  2486. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look.html +0 -66
  2487. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look1.html +0 -63
  2488. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read.html +0 -65
  2489. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read1.html +0 -63
  2490. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_readinit.html +0 -64
  2491. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_reset.html +0 -62
  2492. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_write.html +0 -68
  2493. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writealign.html +0 -65
  2494. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeclear.html +0 -62
  2495. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writecopy.html +0 -69
  2496. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeinit.html +0 -62
  2497. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writetrunc.html +0 -65
  2498. data/vendor/local/share/doc/libogg-1.3.0/ogg/overview.html +0 -44
  2499. data/vendor/local/share/doc/libogg-1.3.0/ogg/reference.html +0 -98
  2500. data/vendor/local/share/doc/libxml2-2.9.0/Copyright +0 -27
  2501. data/vendor/local/share/doc/libxml2-2.9.0/examples/testHTML.c +0 -880
  2502. data/vendor/local/share/doc/libxml2-2.9.0/examples/testSAX.c +0 -1198
  2503. data/vendor/local/share/doc/libxml2-2.9.0/examples/testXPath.c +0 -229
  2504. data/vendor/local/share/doc/libxml2-2.9.0/examples/xmllint.c +0 -3770
  2505. data/vendor/local/share/doc/libxml2-2.9.0/html/DOM.gif +0 -0
  2506. data/vendor/local/share/doc/libxml2-2.9.0/html/FAQ.html +0 -282
  2507. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-180x168.gif +0 -0
  2508. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-90x34.gif +0 -0
  2509. data/vendor/local/share/doc/libxml2-2.9.0/html/encoding.html +0 -207
  2510. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xml +0 -751
  2511. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xsl +0 -174
  2512. data/vendor/local/share/doc/libxml2-2.9.0/html/html/book1.html +0 -13
  2513. data/vendor/local/share/doc/libxml2-2.9.0/html/html/index.html +0 -13
  2514. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-DOCBparser.html +0 -51
  2515. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLparser.html +0 -184
  2516. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLtree.html +0 -73
  2517. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX.html +0 -125
  2518. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX2.html +0 -128
  2519. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-c14n.html +0 -38
  2520. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-catalog.html +0 -142
  2521. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-chvalid.html +0 -72
  2522. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-debugXML.html +0 -120
  2523. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-dict.html +0 -58
  2524. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-encoding.html +0 -124
  2525. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-entities.html +0 -79
  2526. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-globals.html +0 -152
  2527. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-hash.html +0 -116
  2528. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-lib.html +0 -13
  2529. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-list.html +0 -120
  2530. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanoftp.html +0 -94
  2531. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanohttp.html +0 -65
  2532. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parser.html +0 -559
  2533. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parserInternals.html +0 -322
  2534. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-pattern.html +0 -76
  2535. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-relaxng.html +0 -162
  2536. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schemasInternals.html +0 -373
  2537. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schematron.html +0 -81
  2538. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-threads.html +0 -72
  2539. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-tree.html +0 -989
  2540. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-uri.html +0 -73
  2541. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-valid.html +0 -289
  2542. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xinclude.html +0 -59
  2543. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xlink.html +0 -82
  2544. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlIO.html +0 -212
  2545. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlautomata.html +0 -85
  2546. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlerror.html +0 -864
  2547. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlexports.html +0 -20
  2548. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmemory.html +0 -107
  2549. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmodule.html +0 -38
  2550. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlreader.html +0 -330
  2551. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlregexp.html +0 -143
  2552. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlsave.html +0 -60
  2553. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemas.html +0 -185
  2554. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemastypes.html +0 -123
  2555. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlstring.html +0 -108
  2556. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlunicode.html +0 -512
  2557. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlversion.html +0 -62
  2558. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlwriter.html +0 -261
  2559. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpath.html +0 -310
  2560. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpathInternals.html +0 -394
  2561. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpointer.html +0 -83
  2562. data/vendor/local/share/doc/libxml2-2.9.0/html/index.html +0 -14
  2563. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.c +0 -166
  2564. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.res +0 -5
  2565. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.c +0 -58
  2566. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.res +0 -2
  2567. data/vendor/local/share/doc/libxml2-2.9.0/html/libxml.gif +0 -0
  2568. data/vendor/local/share/doc/libxml2-2.9.0/html/parse1.c +0 -56
  2569. data/vendor/local/share/doc/libxml2-2.9.0/html/parse2.c +0 -72
  2570. data/vendor/local/share/doc/libxml2-2.9.0/html/parse3.c +0 -60
  2571. data/vendor/local/share/doc/libxml2-2.9.0/html/parse4.c +0 -143
  2572. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.c +0 -107
  2573. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.res +0 -14
  2574. data/vendor/local/share/doc/libxml2-2.9.0/html/reader2.c +0 -122
  2575. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.c +0 -120
  2576. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.res +0 -13
  2577. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.c +0 -122
  2578. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.res +0 -3
  2579. data/vendor/local/share/doc/libxml2-2.9.0/html/redhat.gif +0 -0
  2580. data/vendor/local/share/doc/libxml2-2.9.0/html/smallfootonly.gif +0 -0
  2581. data/vendor/local/share/doc/libxml2-2.9.0/html/structure.gif +0 -0
  2582. data/vendor/local/share/doc/libxml2-2.9.0/html/test1.xml +0 -1
  2583. data/vendor/local/share/doc/libxml2-2.9.0/html/test2.xml +0 -13
  2584. data/vendor/local/share/doc/libxml2-2.9.0/html/test3.xml +0 -39
  2585. data/vendor/local/share/doc/libxml2-2.9.0/html/testWriter.c +0 -1198
  2586. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.c +0 -94
  2587. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.res +0 -4
  2588. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.c +0 -118
  2589. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.res +0 -18
  2590. data/vendor/local/share/doc/libxml2-2.9.0/html/tst.xml +0 -7
  2591. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apa.html +0 -8
  2592. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apb.html +0 -14
  2593. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apc.html +0 -82
  2594. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apd.html +0 -76
  2595. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ape.html +0 -78
  2596. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apf.html +0 -67
  2597. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apg.html +0 -75
  2598. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/aph.html +0 -76
  2599. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/api.html +0 -4
  2600. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s02.html +0 -14
  2601. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s03.html +0 -47
  2602. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s04.html +0 -54
  2603. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s05.html +0 -55
  2604. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s06.html +0 -35
  2605. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s07.html +0 -30
  2606. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s08.html +0 -38
  2607. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s09.html +0 -63
  2608. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/blank.png +0 -0
  2609. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/1.png +0 -0
  2610. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/10.png +0 -0
  2611. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/2.png +0 -0
  2612. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/3.png +0 -0
  2613. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/4.png +0 -0
  2614. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/5.png +0 -0
  2615. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/6.png +0 -0
  2616. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/7.png +0 -0
  2617. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/8.png +0 -0
  2618. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/9.png +0 -0
  2619. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/caution.png +0 -0
  2620. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/draft.png +0 -0
  2621. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/home.png +0 -0
  2622. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/important.png +0 -0
  2623. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/next.png +0 -0
  2624. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/note.png +0 -0
  2625. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/prev.png +0 -0
  2626. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/tip.png +0 -0
  2627. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-blank.png +0 -0
  2628. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-minus.png +0 -0
  2629. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-plus.png +0 -0
  2630. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/up.png +0 -0
  2631. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/warning.png +0 -0
  2632. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddattribute.c +0 -64
  2633. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddkeyword.c +0 -75
  2634. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeconvert.c +0 -73
  2635. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includegetattribute.c +0 -72
  2636. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includekeyword.c +0 -79
  2637. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includexpath.c +0 -74
  2638. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/index.html +0 -14
  2639. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ix01.html +0 -1
  2640. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/xmltutorial.pdf +0 -1336
  2641. data/vendor/local/share/doc/libxml2-2.9.0/html/w3c.png +0 -0
  2642. data/vendor/local/share/doc/libxml2-2.9.0/html/writer.xml +0 -2
  2643. data/vendor/local/share/doc/libxml2-2.9.0/html/xml.html +0 -5715
  2644. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.c +0 -250
  2645. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.res +0 -5
  2646. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.c +0 -190
  2647. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.res +0 -30
  2648. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-GstBaseVideoCodec.html +0 -53
  2649. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-GstBaseVideoDecoder.html +0 -53
  2650. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-GstBaseVideoEncoder.html +0 -53
  2651. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-GstSurfaceBuffer.html +0 -53
  2652. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-GstSurfaceConverter.html +0 -159
  2653. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-GstVideoContextInterface.html +0 -752
  2654. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/gst-plugins-bad-libs-gstbasevideoutils.html +0 -53
  2655. data/vendor/local/share/gtk-doc/html/gst-plugins-bad-libs-1.0/video.html +0 -53
  2656. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-1.0/gst-plugins-base-libs-gstmultichannel.html +0 -292
  2657. data/vendor/local/share/gtk-doc/html/libxml2/general.html +0 -38
  2658. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  2659. data/vendor/local/share/gtk-doc/html/libxml2/index.html +0 -67
  2660. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  2661. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +0 -138
  2662. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +0 -373
  2663. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +0 -172
  2664. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +0 -243
  2665. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +0 -247
  2666. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +0 -91
  2667. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +0 -278
  2668. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +0 -241
  2669. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +0 -225
  2670. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +0 -134
  2671. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +0 -218
  2672. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +0 -166
  2673. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +0 -383
  2674. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +0 -214
  2675. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +0 -226
  2676. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +0 -187
  2677. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +0 -142
  2678. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +0 -766
  2679. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +0 -688
  2680. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +0 -166
  2681. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +0 -278
  2682. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +0 -860
  2683. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +0 -166
  2684. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +0 -161
  2685. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +0 -1596
  2686. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +0 -154
  2687. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +0 -528
  2688. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +0 -169
  2689. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +0 -160
  2690. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +0 -347
  2691. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +0 -176
  2692. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +0 -952
  2693. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +0 -87
  2694. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +0 -186
  2695. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +0 -97
  2696. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +0 -565
  2697. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +0 -280
  2698. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +0 -133
  2699. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +0 -314
  2700. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +0 -237
  2701. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +0 -217
  2702. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +0 -887
  2703. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +0 -287
  2704. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +0 -479
  2705. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +0 -532
  2706. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +0 -787
  2707. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +0 -171
  2708. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +0 -3569
  2709. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  2710. data/vendor/local/share/gtk-doc/html/libxml2/style.css +0 -66
  2711. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  2712. data/vendor/local/share/man/man1/xml2-config.1 +0 -30
  2713. data/vendor/local/share/man/man1/xmlcatalog.1 +0 -340
  2714. data/vendor/local/share/man/man1/xmllint.1 +0 -427
  2715. data/vendor/local/share/man/man3/libxml.3 +0 -71
  2716. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.log +0 -867
  2717. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.sh +0 -68
  2718. data/vendor/local/src/tml/packaging/jpeg_8-1_win32.log +0 -248
  2719. data/vendor/local/src/tml/packaging/jpeg_8-1_win32.sh +0 -44
  2720. data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.log +0 -1518
  2721. data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.sh +0 -60
@@ -8,24 +8,59 @@ and/or use gtk-doc annotations. -->
8
8
  xmlns:glib="http://www.gtk.org/introspection/glib/1.0">
9
9
  <include name="Gst" version="1.0"/>
10
10
  <package name="gstreamer-sdp-1.0"/>
11
- <c:include name="gst/sdp/gstsdp.h"/>
12
- <c:include name="gst/sdp/gstsdpmessage.h"/>
11
+ <c:include name="gst/sdp/sdp.h"/>
13
12
  <namespace name="GstSdp"
14
13
  version="1.0"
15
14
  shared-library="libgstsdp-1.0-0.dll"
16
15
  c:identifier-prefixes="Gst"
17
16
  c:symbol-prefixes="gst">
18
17
  <record name="SDPAttribute" c:type="GstSDPAttribute">
19
- <doc xml:whitespace="preserve">The contents of the SDP "a=" field which contains a key/value pair.</doc>
18
+ <doc xml:space="preserve">The contents of the SDP "a=" field which contains a key/value pair.</doc>
20
19
  <field name="key" writable="1">
21
20
  <type name="utf8" c:type="gchar*"/>
22
21
  </field>
23
22
  <field name="value" writable="1">
24
23
  <type name="utf8" c:type="gchar*"/>
25
24
  </field>
25
+ <method name="clear"
26
+ c:identifier="gst_sdp_attribute_clear"
27
+ version="1.2">
28
+ <doc xml:space="preserve">Clear the attribute.</doc>
29
+ <return-value transfer-ownership="none">
30
+ <doc xml:space="preserve">@GST_SDP_OK.</doc>
31
+ <type name="SDPResult" c:type="GstSDPResult"/>
32
+ </return-value>
33
+ <parameters>
34
+ <instance-parameter name="attr" transfer-ownership="none">
35
+ <doc xml:space="preserve">a #GstSDPAttribute</doc>
36
+ <type name="SDPAttribute" c:type="GstSDPAttribute*"/>
37
+ </instance-parameter>
38
+ </parameters>
39
+ </method>
40
+ <method name="set" c:identifier="gst_sdp_attribute_set" version="1.2">
41
+ <doc xml:space="preserve">Set the attribute with @key and @value.</doc>
42
+ <return-value transfer-ownership="none">
43
+ <doc xml:space="preserve">@GST_SDP_OK.</doc>
44
+ <type name="SDPResult" c:type="GstSDPResult"/>
45
+ </return-value>
46
+ <parameters>
47
+ <instance-parameter name="attr" transfer-ownership="none">
48
+ <doc xml:space="preserve">a #GstSDPAttribute</doc>
49
+ <type name="SDPAttribute" c:type="GstSDPAttribute*"/>
50
+ </instance-parameter>
51
+ <parameter name="key" transfer-ownership="none">
52
+ <doc xml:space="preserve">the key</doc>
53
+ <type name="utf8" c:type="const gchar*"/>
54
+ </parameter>
55
+ <parameter name="value" transfer-ownership="none">
56
+ <doc xml:space="preserve">the value</doc>
57
+ <type name="utf8" c:type="const gchar*"/>
58
+ </parameter>
59
+ </parameters>
60
+ </method>
26
61
  </record>
27
62
  <record name="SDPBandwidth" c:type="GstSDPBandwidth">
28
- <doc xml:whitespace="preserve">The contents of the SDP "b=" field which specifies the proposed bandwidth to
63
+ <doc xml:space="preserve">The contents of the SDP "b=" field which specifies the proposed bandwidth to
29
64
  be used by the session or media.</doc>
30
65
  <field name="bwtype" writable="1">
31
66
  <type name="utf8" c:type="gchar*"/>
@@ -33,9 +68,45 @@ be used by the session or media.</doc>
33
68
  <field name="bandwidth" writable="1">
34
69
  <type name="guint" c:type="guint"/>
35
70
  </field>
71
+ <method name="clear"
72
+ c:identifier="gst_sdp_bandwidth_clear"
73
+ version="1.2">
74
+ <doc xml:space="preserve">Reset the bandwidth information in @bw.</doc>
75
+ <return-value transfer-ownership="none">
76
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
77
+ <type name="SDPResult" c:type="GstSDPResult"/>
78
+ </return-value>
79
+ <parameters>
80
+ <instance-parameter name="bw" transfer-ownership="none">
81
+ <doc xml:space="preserve">a #GstSDPBandwidth</doc>
82
+ <type name="SDPBandwidth" c:type="GstSDPBandwidth*"/>
83
+ </instance-parameter>
84
+ </parameters>
85
+ </method>
86
+ <method name="set" c:identifier="gst_sdp_bandwidth_set" version="1.2">
87
+ <doc xml:space="preserve">Set bandwidth information in @bw.</doc>
88
+ <return-value transfer-ownership="none">
89
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
90
+ <type name="SDPResult" c:type="GstSDPResult"/>
91
+ </return-value>
92
+ <parameters>
93
+ <instance-parameter name="bw" transfer-ownership="none">
94
+ <doc xml:space="preserve">a #GstSDPBandwidth</doc>
95
+ <type name="SDPBandwidth" c:type="GstSDPBandwidth*"/>
96
+ </instance-parameter>
97
+ <parameter name="bwtype" transfer-ownership="none">
98
+ <doc xml:space="preserve">the bandwidth modifier type</doc>
99
+ <type name="utf8" c:type="const gchar*"/>
100
+ </parameter>
101
+ <parameter name="bandwidth" transfer-ownership="none">
102
+ <doc xml:space="preserve">the bandwidth in kilobits per second</doc>
103
+ <type name="guint" c:type="guint"/>
104
+ </parameter>
105
+ </parameters>
106
+ </method>
36
107
  </record>
37
108
  <record name="SDPConnection" c:type="GstSDPConnection">
38
- <doc xml:whitespace="preserve">The contents of the SDP "c=" field which contains connection data.</doc>
109
+ <doc xml:space="preserve">The contents of the SDP "c=" field which contains connection data.</doc>
39
110
  <field name="nettype" writable="1">
40
111
  <type name="utf8" c:type="gchar*"/>
41
112
  </field>
@@ -51,9 +122,57 @@ be used by the session or media.</doc>
51
122
  <field name="addr_number" writable="1">
52
123
  <type name="guint" c:type="guint"/>
53
124
  </field>
125
+ <method name="clear"
126
+ c:identifier="gst_sdp_connection_clear"
127
+ version="1.2">
128
+ <doc xml:space="preserve">Clear the connection.</doc>
129
+ <return-value transfer-ownership="none">
130
+ <doc xml:space="preserve">@GST_SDP_OK.</doc>
131
+ <type name="SDPResult" c:type="GstSDPResult"/>
132
+ </return-value>
133
+ <parameters>
134
+ <instance-parameter name="conn" transfer-ownership="none">
135
+ <doc xml:space="preserve">a #GstSDPConnection</doc>
136
+ <type name="SDPConnection" c:type="GstSDPConnection*"/>
137
+ </instance-parameter>
138
+ </parameters>
139
+ </method>
140
+ <method name="set" c:identifier="gst_sdp_connection_set" version="1.2">
141
+ <doc xml:space="preserve">Set the connection with the given parameters.</doc>
142
+ <return-value transfer-ownership="none">
143
+ <doc xml:space="preserve">@GST_SDP_OK.</doc>
144
+ <type name="SDPResult" c:type="GstSDPResult"/>
145
+ </return-value>
146
+ <parameters>
147
+ <instance-parameter name="conn" transfer-ownership="none">
148
+ <doc xml:space="preserve">a #GstSDPConnection</doc>
149
+ <type name="SDPConnection" c:type="GstSDPConnection*"/>
150
+ </instance-parameter>
151
+ <parameter name="nettype" transfer-ownership="none">
152
+ <doc xml:space="preserve">the type of network. "IN" is defined to have the meaning "Internet".</doc>
153
+ <type name="utf8" c:type="const gchar*"/>
154
+ </parameter>
155
+ <parameter name="addrtype" transfer-ownership="none">
156
+ <doc xml:space="preserve">the type of address.</doc>
157
+ <type name="utf8" c:type="const gchar*"/>
158
+ </parameter>
159
+ <parameter name="address" transfer-ownership="none">
160
+ <doc xml:space="preserve">the address</doc>
161
+ <type name="utf8" c:type="const gchar*"/>
162
+ </parameter>
163
+ <parameter name="ttl" transfer-ownership="none">
164
+ <doc xml:space="preserve">the time to live of the address</doc>
165
+ <type name="guint" c:type="guint"/>
166
+ </parameter>
167
+ <parameter name="addr_number" transfer-ownership="none">
168
+ <doc xml:space="preserve">the number of layers</doc>
169
+ <type name="guint" c:type="guint"/>
170
+ </parameter>
171
+ </parameters>
172
+ </method>
54
173
  </record>
55
174
  <record name="SDPKey" c:type="GstSDPKey">
56
- <doc xml:whitespace="preserve">The contents of the SDP "k=" field which is used to convey encryption
175
+ <doc xml:space="preserve">The contents of the SDP "k=" field which is used to convey encryption
57
176
  keys.</doc>
58
177
  <field name="type" writable="1">
59
178
  <type name="utf8" c:type="gchar*"/>
@@ -63,7 +182,7 @@ keys.</doc>
63
182
  </field>
64
183
  </record>
65
184
  <record name="SDPMedia" c:type="GstSDPMedia">
66
- <doc xml:whitespace="preserve">The contents of the SDP "m=" field with all related fields.</doc>
185
+ <doc xml:space="preserve">The contents of the SDP "m=" field with all related fields.</doc>
67
186
  <field name="media" writable="1">
68
187
  <type name="utf8" c:type="gchar*"/>
69
188
  </field>
@@ -103,500 +222,785 @@ keys.</doc>
103
222
  </array>
104
223
  </field>
105
224
  <method name="add_attribute" c:identifier="gst_sdp_media_add_attribute">
106
- <doc xml:whitespace="preserve">Add the attribute with @key and @value to @media.</doc>
225
+ <doc xml:space="preserve">Add the attribute with @key and @value to @media.</doc>
107
226
  <return-value transfer-ownership="none">
108
- <doc xml:whitespace="preserve">#GST_SDP_OK.</doc>
227
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
109
228
  <type name="SDPResult" c:type="GstSDPResult"/>
110
229
  </return-value>
111
230
  <parameters>
112
231
  <instance-parameter name="media" transfer-ownership="none">
113
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
232
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
114
233
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
115
234
  </instance-parameter>
116
235
  <parameter name="key" transfer-ownership="none">
117
- <doc xml:whitespace="preserve">a key</doc>
236
+ <doc xml:space="preserve">a key</doc>
118
237
  <type name="utf8" c:type="const gchar*"/>
119
238
  </parameter>
120
239
  <parameter name="value" transfer-ownership="none">
121
- <doc xml:whitespace="preserve">a value</doc>
240
+ <doc xml:space="preserve">a value</doc>
122
241
  <type name="utf8" c:type="const gchar*"/>
123
242
  </parameter>
124
243
  </parameters>
125
244
  </method>
126
245
  <method name="add_bandwidth" c:identifier="gst_sdp_media_add_bandwidth">
127
- <doc xml:whitespace="preserve">Add the bandwidth information with @bwtype and @bandwidth to @media.</doc>
246
+ <doc xml:space="preserve">Add the bandwidth information with @bwtype and @bandwidth to @media.</doc>
128
247
  <return-value transfer-ownership="none">
129
- <doc xml:whitespace="preserve">#GST_SDP_OK.</doc>
248
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
130
249
  <type name="SDPResult" c:type="GstSDPResult"/>
131
250
  </return-value>
132
251
  <parameters>
133
252
  <instance-parameter name="media" transfer-ownership="none">
134
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
253
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
135
254
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
136
255
  </instance-parameter>
137
256
  <parameter name="bwtype" transfer-ownership="none">
138
- <doc xml:whitespace="preserve">the bandwidth modifier type</doc>
257
+ <doc xml:space="preserve">the bandwidth modifier type</doc>
139
258
  <type name="utf8" c:type="const gchar*"/>
140
259
  </parameter>
141
260
  <parameter name="bandwidth" transfer-ownership="none">
142
- <doc xml:whitespace="preserve">the bandwidth in kilobits per second</doc>
261
+ <doc xml:space="preserve">the bandwidth in kilobits per second</doc>
143
262
  <type name="guint" c:type="guint"/>
144
263
  </parameter>
145
264
  </parameters>
146
265
  </method>
147
266
  <method name="add_connection"
148
267
  c:identifier="gst_sdp_media_add_connection">
149
- <doc xml:whitespace="preserve">Add the given connection parameters to @media.</doc>
268
+ <doc xml:space="preserve">Add the given connection parameters to @media.</doc>
150
269
  <return-value transfer-ownership="none">
151
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
270
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
152
271
  <type name="SDPResult" c:type="GstSDPResult"/>
153
272
  </return-value>
154
273
  <parameters>
155
274
  <instance-parameter name="media" transfer-ownership="none">
156
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
275
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
157
276
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
158
277
  </instance-parameter>
159
278
  <parameter name="nettype" transfer-ownership="none">
160
- <doc xml:whitespace="preserve">the type of network. "IN" is defined to have the meaning "Internet".</doc>
279
+ <doc xml:space="preserve">the type of network. "IN" is defined to have the meaning "Internet".</doc>
161
280
  <type name="utf8" c:type="const gchar*"/>
162
281
  </parameter>
163
282
  <parameter name="addrtype" transfer-ownership="none">
164
- <doc xml:whitespace="preserve">the type of address.</doc>
283
+ <doc xml:space="preserve">the type of address.</doc>
165
284
  <type name="utf8" c:type="const gchar*"/>
166
285
  </parameter>
167
286
  <parameter name="address" transfer-ownership="none">
168
- <doc xml:whitespace="preserve">the address</doc>
287
+ <doc xml:space="preserve">the address</doc>
169
288
  <type name="utf8" c:type="const gchar*"/>
170
289
  </parameter>
171
290
  <parameter name="ttl" transfer-ownership="none">
172
- <doc xml:whitespace="preserve">the time to live of the address</doc>
291
+ <doc xml:space="preserve">the time to live of the address</doc>
173
292
  <type name="guint" c:type="guint"/>
174
293
  </parameter>
175
294
  <parameter name="addr_number" transfer-ownership="none">
176
- <doc xml:whitespace="preserve">the number of layers</doc>
295
+ <doc xml:space="preserve">the number of layers</doc>
177
296
  <type name="guint" c:type="guint"/>
178
297
  </parameter>
179
298
  </parameters>
180
299
  </method>
181
300
  <method name="add_format" c:identifier="gst_sdp_media_add_format">
182
- <doc xml:whitespace="preserve">Add the format information to @media.</doc>
301
+ <doc xml:space="preserve">Add the format information to @media.</doc>
183
302
  <return-value transfer-ownership="none">
184
- <doc xml:whitespace="preserve">#GST_SDP_OK.</doc>
303
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
185
304
  <type name="SDPResult" c:type="GstSDPResult"/>
186
305
  </return-value>
187
306
  <parameters>
188
307
  <instance-parameter name="media" transfer-ownership="none">
189
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
308
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
190
309
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
191
310
  </instance-parameter>
192
311
  <parameter name="format" transfer-ownership="none">
193
- <doc xml:whitespace="preserve">the format</doc>
312
+ <doc xml:space="preserve">the format</doc>
194
313
  <type name="utf8" c:type="const gchar*"/>
195
314
  </parameter>
196
315
  </parameters>
197
316
  </method>
198
317
  <method name="as_text" c:identifier="gst_sdp_media_as_text">
199
- <doc xml:whitespace="preserve">Convert the contents of @media to a text string.</doc>
318
+ <doc xml:space="preserve">Convert the contents of @media to a text string.</doc>
200
319
  <return-value transfer-ownership="full">
201
- <doc xml:whitespace="preserve">A dynamically allocated string representing the media.</doc>
320
+ <doc xml:space="preserve">A dynamically allocated string representing the media.</doc>
202
321
  <type name="utf8" c:type="gchar*"/>
203
322
  </return-value>
204
323
  <parameters>
205
324
  <instance-parameter name="media" transfer-ownership="none">
206
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
325
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
207
326
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
208
327
  </instance-parameter>
209
328
  </parameters>
210
329
  </method>
211
330
  <method name="attributes_len"
212
331
  c:identifier="gst_sdp_media_attributes_len">
213
- <doc xml:whitespace="preserve">Get the number of attribute fields in @media.</doc>
332
+ <doc xml:space="preserve">Get the number of attribute fields in @media.</doc>
214
333
  <return-value transfer-ownership="none">
215
- <doc xml:whitespace="preserve">the number of attributes in @media.</doc>
334
+ <doc xml:space="preserve">the number of attributes in @media.</doc>
216
335
  <type name="guint" c:type="guint"/>
217
336
  </return-value>
218
337
  <parameters>
219
338
  <instance-parameter name="media" transfer-ownership="none">
220
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
339
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
221
340
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
222
341
  </instance-parameter>
223
342
  </parameters>
224
343
  </method>
225
344
  <method name="bandwidths_len"
226
345
  c:identifier="gst_sdp_media_bandwidths_len">
227
- <doc xml:whitespace="preserve">Get the number of bandwidth fields in @media.</doc>
346
+ <doc xml:space="preserve">Get the number of bandwidth fields in @media.</doc>
228
347
  <return-value transfer-ownership="none">
229
- <doc xml:whitespace="preserve">the number of bandwidths in @media.</doc>
348
+ <doc xml:space="preserve">the number of bandwidths in @media.</doc>
230
349
  <type name="guint" c:type="guint"/>
231
350
  </return-value>
232
351
  <parameters>
233
352
  <instance-parameter name="media" transfer-ownership="none">
234
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
353
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
235
354
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
236
355
  </instance-parameter>
237
356
  </parameters>
238
357
  </method>
239
358
  <method name="connections_len"
240
359
  c:identifier="gst_sdp_media_connections_len">
241
- <doc xml:whitespace="preserve">Get the number of connection fields in @media.</doc>
360
+ <doc xml:space="preserve">Get the number of connection fields in @media.</doc>
242
361
  <return-value transfer-ownership="none">
243
- <doc xml:whitespace="preserve">the number of connections in @media.</doc>
362
+ <doc xml:space="preserve">the number of connections in @media.</doc>
244
363
  <type name="guint" c:type="guint"/>
245
364
  </return-value>
246
365
  <parameters>
247
366
  <instance-parameter name="media" transfer-ownership="none">
248
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
367
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
368
+ <type name="SDPMedia" c:type="const GstSDPMedia*"/>
369
+ </instance-parameter>
370
+ </parameters>
371
+ </method>
372
+ <method name="copy" c:identifier="gst_sdp_media_copy" version="1.2">
373
+ <doc xml:space="preserve">Allocate a new copy of @media and store the result in @copy. The value in
374
+ @copy should be release with gst_sdp_media_free function.</doc>
375
+ <return-value transfer-ownership="none">
376
+ <doc xml:space="preserve">a #GstSDPResult</doc>
377
+ <type name="SDPResult" c:type="GstSDPResult"/>
378
+ </return-value>
379
+ <parameters>
380
+ <instance-parameter name="media" transfer-ownership="none">
381
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
249
382
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
250
383
  </instance-parameter>
384
+ <parameter name="copy"
385
+ direction="out"
386
+ caller-allocates="0"
387
+ transfer-ownership="full">
388
+ <doc xml:space="preserve">pointer to new #GstSDPMedia</doc>
389
+ <type name="SDPMedia" c:type="GstSDPMedia**"/>
390
+ </parameter>
251
391
  </parameters>
252
392
  </method>
253
393
  <method name="formats_len" c:identifier="gst_sdp_media_formats_len">
254
- <doc xml:whitespace="preserve">Get the number of formats in @media.</doc>
394
+ <doc xml:space="preserve">Get the number of formats in @media.</doc>
255
395
  <return-value transfer-ownership="none">
256
- <doc xml:whitespace="preserve">the number of formats in @media.</doc>
396
+ <doc xml:space="preserve">the number of formats in @media.</doc>
257
397
  <type name="guint" c:type="guint"/>
258
398
  </return-value>
259
399
  <parameters>
260
400
  <instance-parameter name="media" transfer-ownership="none">
261
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
401
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
262
402
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
263
403
  </instance-parameter>
264
404
  </parameters>
265
405
  </method>
266
406
  <method name="free" c:identifier="gst_sdp_media_free">
267
- <doc xml:whitespace="preserve">Free all resources allocated by @media. @media should not be used anymore after
407
+ <doc xml:space="preserve">Free all resources allocated by @media. @media should not be used anymore after
268
408
  this function. This function should be used when @media was dynamically
269
409
  allocated with gst_sdp_media_new().</doc>
270
410
  <return-value transfer-ownership="none">
271
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
411
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
272
412
  <type name="SDPResult" c:type="GstSDPResult"/>
273
413
  </return-value>
274
414
  <parameters>
275
415
  <instance-parameter name="media" transfer-ownership="none">
276
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
416
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
277
417
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
278
418
  </instance-parameter>
279
419
  </parameters>
280
420
  </method>
281
421
  <method name="get_attribute" c:identifier="gst_sdp_media_get_attribute">
282
- <doc xml:whitespace="preserve">Get the attribute at position @idx in @media.</doc>
422
+ <doc xml:space="preserve">Get the attribute at position @idx in @media.</doc>
283
423
  <return-value transfer-ownership="none">
284
- <doc xml:whitespace="preserve">the #GstSDPAttribute at position @idx.</doc>
424
+ <doc xml:space="preserve">the #GstSDPAttribute at position @idx.</doc>
285
425
  <type name="SDPAttribute" c:type="const GstSDPAttribute*"/>
286
426
  </return-value>
287
427
  <parameters>
288
428
  <instance-parameter name="media" transfer-ownership="none">
289
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
429
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
290
430
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
291
431
  </instance-parameter>
292
432
  <parameter name="idx" transfer-ownership="none">
293
- <doc xml:whitespace="preserve">an index</doc>
433
+ <doc xml:space="preserve">an index</doc>
294
434
  <type name="guint" c:type="guint"/>
295
435
  </parameter>
296
436
  </parameters>
297
437
  </method>
298
438
  <method name="get_attribute_val"
299
439
  c:identifier="gst_sdp_media_get_attribute_val">
300
- <doc xml:whitespace="preserve">Get the first attribute value for @key in @media.</doc>
440
+ <doc xml:space="preserve">Get the first attribute value for @key in @media.</doc>
301
441
  <return-value transfer-ownership="none">
302
- <doc xml:whitespace="preserve">the first attribute value for @key.</doc>
442
+ <doc xml:space="preserve">the first attribute value for @key.</doc>
303
443
  <type name="utf8" c:type="const gchar*"/>
304
444
  </return-value>
305
445
  <parameters>
306
446
  <instance-parameter name="media" transfer-ownership="none">
307
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
447
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
308
448
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
309
449
  </instance-parameter>
310
450
  <parameter name="key" transfer-ownership="none">
311
- <doc xml:whitespace="preserve">a key</doc>
451
+ <doc xml:space="preserve">a key</doc>
312
452
  <type name="utf8" c:type="const gchar*"/>
313
453
  </parameter>
314
454
  </parameters>
315
455
  </method>
316
456
  <method name="get_attribute_val_n"
317
457
  c:identifier="gst_sdp_media_get_attribute_val_n">
318
- <doc xml:whitespace="preserve">Get the @nth attribute value for @key in @media.</doc>
458
+ <doc xml:space="preserve">Get the @nth attribute value for @key in @media.</doc>
319
459
  <return-value transfer-ownership="none">
320
- <doc xml:whitespace="preserve">the @nth attribute value.</doc>
460
+ <doc xml:space="preserve">the @nth attribute value.</doc>
321
461
  <type name="utf8" c:type="const gchar*"/>
322
462
  </return-value>
323
463
  <parameters>
324
464
  <instance-parameter name="media" transfer-ownership="none">
325
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
465
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
326
466
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
327
467
  </instance-parameter>
328
468
  <parameter name="key" transfer-ownership="none">
329
- <doc xml:whitespace="preserve">a key</doc>
469
+ <doc xml:space="preserve">a key</doc>
330
470
  <type name="utf8" c:type="const gchar*"/>
331
471
  </parameter>
332
472
  <parameter name="nth" transfer-ownership="none">
333
- <doc xml:whitespace="preserve">an index</doc>
473
+ <doc xml:space="preserve">an index</doc>
334
474
  <type name="guint" c:type="guint"/>
335
475
  </parameter>
336
476
  </parameters>
337
477
  </method>
338
478
  <method name="get_bandwidth" c:identifier="gst_sdp_media_get_bandwidth">
339
- <doc xml:whitespace="preserve">Get the bandwidth at position @idx in @media.</doc>
479
+ <doc xml:space="preserve">Get the bandwidth at position @idx in @media.</doc>
340
480
  <return-value transfer-ownership="none">
341
- <doc xml:whitespace="preserve">the #GstSDPBandwidth at position @idx.</doc>
481
+ <doc xml:space="preserve">the #GstSDPBandwidth at position @idx.</doc>
342
482
  <type name="SDPBandwidth" c:type="const GstSDPBandwidth*"/>
343
483
  </return-value>
344
484
  <parameters>
345
485
  <instance-parameter name="media" transfer-ownership="none">
346
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
486
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
347
487
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
348
488
  </instance-parameter>
349
489
  <parameter name="idx" transfer-ownership="none">
350
- <doc xml:whitespace="preserve">an index</doc>
490
+ <doc xml:space="preserve">an index</doc>
351
491
  <type name="guint" c:type="guint"/>
352
492
  </parameter>
353
493
  </parameters>
354
494
  </method>
355
495
  <method name="get_connection"
356
496
  c:identifier="gst_sdp_media_get_connection">
357
- <doc xml:whitespace="preserve">Get the connection at position @idx in @media.</doc>
497
+ <doc xml:space="preserve">Get the connection at position @idx in @media.</doc>
358
498
  <return-value transfer-ownership="none">
359
- <doc xml:whitespace="preserve">the #GstSDPConnection at position @idx.</doc>
499
+ <doc xml:space="preserve">the #GstSDPConnection at position @idx.</doc>
360
500
  <type name="SDPConnection" c:type="const GstSDPConnection*"/>
361
501
  </return-value>
362
502
  <parameters>
363
503
  <instance-parameter name="media" transfer-ownership="none">
364
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
504
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
365
505
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
366
506
  </instance-parameter>
367
507
  <parameter name="idx" transfer-ownership="none">
368
- <doc xml:whitespace="preserve">an index</doc>
508
+ <doc xml:space="preserve">an index</doc>
369
509
  <type name="guint" c:type="guint"/>
370
510
  </parameter>
371
511
  </parameters>
372
512
  </method>
373
513
  <method name="get_format" c:identifier="gst_sdp_media_get_format">
374
- <doc xml:whitespace="preserve">Get the format information at position @idx in @media.</doc>
514
+ <doc xml:space="preserve">Get the format information at position @idx in @media.</doc>
375
515
  <return-value transfer-ownership="none">
376
- <doc xml:whitespace="preserve">the format at position @idx.</doc>
516
+ <doc xml:space="preserve">the format at position @idx.</doc>
377
517
  <type name="utf8" c:type="const gchar*"/>
378
518
  </return-value>
379
519
  <parameters>
380
520
  <instance-parameter name="media" transfer-ownership="none">
381
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
521
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
382
522
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
383
523
  </instance-parameter>
384
524
  <parameter name="idx" transfer-ownership="none">
385
- <doc xml:whitespace="preserve">an index</doc>
525
+ <doc xml:space="preserve">an index</doc>
386
526
  <type name="guint" c:type="guint"/>
387
527
  </parameter>
388
528
  </parameters>
389
529
  </method>
390
530
  <method name="get_information"
391
531
  c:identifier="gst_sdp_media_get_information">
392
- <doc xml:whitespace="preserve">Get the information of @media</doc>
532
+ <doc xml:space="preserve">Get the information of @media</doc>
393
533
  <return-value transfer-ownership="none">
394
- <doc xml:whitespace="preserve">the information of @media.</doc>
534
+ <doc xml:space="preserve">the information of @media.</doc>
395
535
  <type name="utf8" c:type="const gchar*"/>
396
536
  </return-value>
397
537
  <parameters>
398
538
  <instance-parameter name="media" transfer-ownership="none">
399
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
539
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
400
540
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
401
541
  </instance-parameter>
402
542
  </parameters>
403
543
  </method>
404
544
  <method name="get_key" c:identifier="gst_sdp_media_get_key">
405
- <doc xml:whitespace="preserve">Get the encryption information from @media.</doc>
545
+ <doc xml:space="preserve">Get the encryption information from @media.</doc>
406
546
  <return-value transfer-ownership="none">
407
- <doc xml:whitespace="preserve">a #GstSDPKey.</doc>
547
+ <doc xml:space="preserve">a #GstSDPKey.</doc>
408
548
  <type name="SDPKey" c:type="const GstSDPKey*"/>
409
549
  </return-value>
410
550
  <parameters>
411
551
  <instance-parameter name="media" transfer-ownership="none">
412
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
552
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
413
553
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
414
554
  </instance-parameter>
415
555
  </parameters>
416
556
  </method>
417
557
  <method name="get_media" c:identifier="gst_sdp_media_get_media">
418
- <doc xml:whitespace="preserve">Get the media description of @media.</doc>
558
+ <doc xml:space="preserve">Get the media description of @media.</doc>
419
559
  <return-value transfer-ownership="none">
420
- <doc xml:whitespace="preserve">the media description.</doc>
560
+ <doc xml:space="preserve">the media description.</doc>
421
561
  <type name="utf8" c:type="const gchar*"/>
422
562
  </return-value>
423
563
  <parameters>
424
564
  <instance-parameter name="media" transfer-ownership="none">
425
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
565
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
426
566
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
427
567
  </instance-parameter>
428
568
  </parameters>
429
569
  </method>
430
570
  <method name="get_num_ports" c:identifier="gst_sdp_media_get_num_ports">
431
- <doc xml:whitespace="preserve">Get the number of ports for @media.</doc>
571
+ <doc xml:space="preserve">Get the number of ports for @media.</doc>
432
572
  <return-value transfer-ownership="none">
433
- <doc xml:whitespace="preserve">the number of ports for @media.</doc>
573
+ <doc xml:space="preserve">the number of ports for @media.</doc>
434
574
  <type name="guint" c:type="guint"/>
435
575
  </return-value>
436
576
  <parameters>
437
577
  <instance-parameter name="media" transfer-ownership="none">
438
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
578
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
439
579
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
440
580
  </instance-parameter>
441
581
  </parameters>
442
582
  </method>
443
583
  <method name="get_port" c:identifier="gst_sdp_media_get_port">
444
- <doc xml:whitespace="preserve">Get the port number for @media.</doc>
584
+ <doc xml:space="preserve">Get the port number for @media.</doc>
445
585
  <return-value transfer-ownership="none">
446
- <doc xml:whitespace="preserve">the port number of @media.</doc>
586
+ <doc xml:space="preserve">the port number of @media.</doc>
447
587
  <type name="guint" c:type="guint"/>
448
588
  </return-value>
449
589
  <parameters>
450
590
  <instance-parameter name="media" transfer-ownership="none">
451
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
591
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
452
592
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
453
593
  </instance-parameter>
454
594
  </parameters>
455
595
  </method>
456
596
  <method name="get_proto" c:identifier="gst_sdp_media_get_proto">
457
- <doc xml:whitespace="preserve">Get the transport protocol of @media</doc>
597
+ <doc xml:space="preserve">Get the transport protocol of @media</doc>
458
598
  <return-value transfer-ownership="none">
459
- <doc xml:whitespace="preserve">the transport protocol of @media.</doc>
599
+ <doc xml:space="preserve">the transport protocol of @media.</doc>
460
600
  <type name="utf8" c:type="const gchar*"/>
461
601
  </return-value>
462
602
  <parameters>
463
603
  <instance-parameter name="media" transfer-ownership="none">
464
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
604
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
465
605
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
466
606
  </instance-parameter>
467
607
  </parameters>
468
608
  </method>
469
609
  <method name="init" c:identifier="gst_sdp_media_init">
470
- <doc xml:whitespace="preserve">Initialize @media so that its contents are as if it was freshly allocated
610
+ <doc xml:space="preserve">Initialize @media so that its contents are as if it was freshly allocated
471
611
  with gst_sdp_media_new(). This function is mostly used to initialize a media
472
612
  allocated on the stack. gst_sdp_media_uninit() undoes this operation.
473
613
 
474
614
  When this function is invoked on newly allocated data (with malloc or on the
475
615
  stack), its contents should be set to 0 before calling this function.</doc>
476
616
  <return-value transfer-ownership="none">
477
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
617
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
618
+ <type name="SDPResult" c:type="GstSDPResult"/>
619
+ </return-value>
620
+ <parameters>
621
+ <instance-parameter name="media" transfer-ownership="none">
622
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
623
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
624
+ </instance-parameter>
625
+ </parameters>
626
+ </method>
627
+ <method name="insert_attribute"
628
+ c:identifier="gst_sdp_media_insert_attribute"
629
+ version="1.2">
630
+ <doc xml:space="preserve">Insert the attribute to @media at @idx. When @idx is -1,
631
+ the attribute is appended.</doc>
632
+ <return-value transfer-ownership="none">
633
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
634
+ <type name="SDPResult" c:type="GstSDPResult"/>
635
+ </return-value>
636
+ <parameters>
637
+ <instance-parameter name="media" transfer-ownership="none">
638
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
639
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
640
+ </instance-parameter>
641
+ <parameter name="idx" transfer-ownership="none">
642
+ <doc xml:space="preserve">an index</doc>
643
+ <type name="gint" c:type="gint"/>
644
+ </parameter>
645
+ <parameter name="attr" transfer-ownership="none">
646
+ <doc xml:space="preserve">a #GstSDPAttribute</doc>
647
+ <type name="SDPAttribute" c:type="GstSDPAttribute*"/>
648
+ </parameter>
649
+ </parameters>
650
+ </method>
651
+ <method name="insert_bandwidth"
652
+ c:identifier="gst_sdp_media_insert_bandwidth"
653
+ version="1.2">
654
+ <doc xml:space="preserve">Insert the bandwidth information to @media at @idx. When @idx is -1,
655
+ the bandwidth is appended.</doc>
656
+ <return-value transfer-ownership="none">
657
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
658
+ <type name="SDPResult" c:type="GstSDPResult"/>
659
+ </return-value>
660
+ <parameters>
661
+ <instance-parameter name="media" transfer-ownership="none">
662
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
663
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
664
+ </instance-parameter>
665
+ <parameter name="idx" transfer-ownership="none">
666
+ <doc xml:space="preserve">an index</doc>
667
+ <type name="gint" c:type="gint"/>
668
+ </parameter>
669
+ <parameter name="bw" transfer-ownership="none">
670
+ <doc xml:space="preserve">a #GstSDPBandwidth</doc>
671
+ <type name="SDPBandwidth" c:type="GstSDPBandwidth*"/>
672
+ </parameter>
673
+ </parameters>
674
+ </method>
675
+ <method name="insert_connection"
676
+ c:identifier="gst_sdp_media_insert_connection"
677
+ version="1.2">
678
+ <doc xml:space="preserve">Insert the connection information to @media at @idx. When @idx is -1,
679
+ the connection is appended.</doc>
680
+ <return-value transfer-ownership="none">
681
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
682
+ <type name="SDPResult" c:type="GstSDPResult"/>
683
+ </return-value>
684
+ <parameters>
685
+ <instance-parameter name="media" transfer-ownership="none">
686
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
687
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
688
+ </instance-parameter>
689
+ <parameter name="idx" transfer-ownership="none">
690
+ <doc xml:space="preserve">an index</doc>
691
+ <type name="gint" c:type="gint"/>
692
+ </parameter>
693
+ <parameter name="conn" transfer-ownership="none">
694
+ <doc xml:space="preserve">a #GstSDPConnection</doc>
695
+ <type name="SDPConnection" c:type="GstSDPConnection*"/>
696
+ </parameter>
697
+ </parameters>
698
+ </method>
699
+ <method name="insert_format"
700
+ c:identifier="gst_sdp_media_insert_format"
701
+ version="1.2">
702
+ <doc xml:space="preserve">Insert the format information to @media at @idx. When @idx is -1,
703
+ the format is appended.</doc>
704
+ <return-value transfer-ownership="none">
705
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
478
706
  <type name="SDPResult" c:type="GstSDPResult"/>
479
707
  </return-value>
480
708
  <parameters>
481
709
  <instance-parameter name="media" transfer-ownership="none">
482
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
710
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
483
711
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
484
712
  </instance-parameter>
713
+ <parameter name="idx" transfer-ownership="none">
714
+ <doc xml:space="preserve">an index</doc>
715
+ <type name="gint" c:type="gint"/>
716
+ </parameter>
717
+ <parameter name="format" transfer-ownership="none">
718
+ <doc xml:space="preserve">the format</doc>
719
+ <type name="utf8" c:type="const gchar*"/>
720
+ </parameter>
721
+ </parameters>
722
+ </method>
723
+ <method name="remove_attribute"
724
+ c:identifier="gst_sdp_media_remove_attribute"
725
+ version="1.2">
726
+ <doc xml:space="preserve">Remove the attribute in @media at @idx.</doc>
727
+ <return-value transfer-ownership="none">
728
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
729
+ <type name="SDPResult" c:type="GstSDPResult"/>
730
+ </return-value>
731
+ <parameters>
732
+ <instance-parameter name="media" transfer-ownership="none">
733
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
734
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
735
+ </instance-parameter>
736
+ <parameter name="idx" transfer-ownership="none">
737
+ <doc xml:space="preserve">an index</doc>
738
+ <type name="guint" c:type="guint"/>
739
+ </parameter>
740
+ </parameters>
741
+ </method>
742
+ <method name="remove_bandwidth"
743
+ c:identifier="gst_sdp_media_remove_bandwidth"
744
+ version="1.2">
745
+ <doc xml:space="preserve">Remove the bandwidth information in @media at @idx.</doc>
746
+ <return-value transfer-ownership="none">
747
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
748
+ <type name="SDPResult" c:type="GstSDPResult"/>
749
+ </return-value>
750
+ <parameters>
751
+ <instance-parameter name="media" transfer-ownership="none">
752
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
753
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
754
+ </instance-parameter>
755
+ <parameter name="idx" transfer-ownership="none">
756
+ <doc xml:space="preserve">an index</doc>
757
+ <type name="guint" c:type="guint"/>
758
+ </parameter>
759
+ </parameters>
760
+ </method>
761
+ <method name="remove_connection"
762
+ c:identifier="gst_sdp_media_remove_connection"
763
+ version="1.2">
764
+ <doc xml:space="preserve">Remove the connection information in @media at @idx.</doc>
765
+ <return-value transfer-ownership="none">
766
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
767
+ <type name="SDPResult" c:type="GstSDPResult"/>
768
+ </return-value>
769
+ <parameters>
770
+ <instance-parameter name="media" transfer-ownership="none">
771
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
772
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
773
+ </instance-parameter>
774
+ <parameter name="idx" transfer-ownership="none">
775
+ <doc xml:space="preserve">an index</doc>
776
+ <type name="guint" c:type="guint"/>
777
+ </parameter>
778
+ </parameters>
779
+ </method>
780
+ <method name="remove_format"
781
+ c:identifier="gst_sdp_media_remove_format"
782
+ version="1.2">
783
+ <doc xml:space="preserve">Remove the format information in @media at @idx.</doc>
784
+ <return-value transfer-ownership="none">
785
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
786
+ <type name="SDPResult" c:type="GstSDPResult"/>
787
+ </return-value>
788
+ <parameters>
789
+ <instance-parameter name="media" transfer-ownership="none">
790
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
791
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
792
+ </instance-parameter>
793
+ <parameter name="idx" transfer-ownership="none">
794
+ <doc xml:space="preserve">an index</doc>
795
+ <type name="guint" c:type="guint"/>
796
+ </parameter>
797
+ </parameters>
798
+ </method>
799
+ <method name="replace_attribute"
800
+ c:identifier="gst_sdp_media_replace_attribute"
801
+ version="1.2">
802
+ <doc xml:space="preserve">Replace the attribute in @media at @idx with @attr.</doc>
803
+ <return-value transfer-ownership="none">
804
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
805
+ <type name="SDPResult" c:type="GstSDPResult"/>
806
+ </return-value>
807
+ <parameters>
808
+ <instance-parameter name="media" transfer-ownership="none">
809
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
810
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
811
+ </instance-parameter>
812
+ <parameter name="idx" transfer-ownership="none">
813
+ <doc xml:space="preserve">an index</doc>
814
+ <type name="guint" c:type="guint"/>
815
+ </parameter>
816
+ <parameter name="attr" transfer-ownership="none">
817
+ <doc xml:space="preserve">a #GstSDPAttribute</doc>
818
+ <type name="SDPAttribute" c:type="GstSDPAttribute*"/>
819
+ </parameter>
820
+ </parameters>
821
+ </method>
822
+ <method name="replace_bandwidth"
823
+ c:identifier="gst_sdp_media_replace_bandwidth"
824
+ version="1.2">
825
+ <doc xml:space="preserve">Replace the bandwidth information in @media at @idx with @bw.</doc>
826
+ <return-value transfer-ownership="none">
827
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
828
+ <type name="SDPResult" c:type="GstSDPResult"/>
829
+ </return-value>
830
+ <parameters>
831
+ <instance-parameter name="media" transfer-ownership="none">
832
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
833
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
834
+ </instance-parameter>
835
+ <parameter name="idx" transfer-ownership="none">
836
+ <doc xml:space="preserve">an index</doc>
837
+ <type name="guint" c:type="guint"/>
838
+ </parameter>
839
+ <parameter name="bw" transfer-ownership="none">
840
+ <doc xml:space="preserve">a #GstSDPBandwidth</doc>
841
+ <type name="SDPBandwidth" c:type="GstSDPBandwidth*"/>
842
+ </parameter>
843
+ </parameters>
844
+ </method>
845
+ <method name="replace_connection"
846
+ c:identifier="gst_sdp_media_replace_connection"
847
+ version="1.2">
848
+ <doc xml:space="preserve">Replace the connection information in @media at @idx with @conn.</doc>
849
+ <return-value transfer-ownership="none">
850
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
851
+ <type name="SDPResult" c:type="GstSDPResult"/>
852
+ </return-value>
853
+ <parameters>
854
+ <instance-parameter name="media" transfer-ownership="none">
855
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
856
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
857
+ </instance-parameter>
858
+ <parameter name="idx" transfer-ownership="none">
859
+ <doc xml:space="preserve">an index</doc>
860
+ <type name="guint" c:type="guint"/>
861
+ </parameter>
862
+ <parameter name="conn" transfer-ownership="none">
863
+ <doc xml:space="preserve">a #GstSDPConnection</doc>
864
+ <type name="SDPConnection" c:type="GstSDPConnection*"/>
865
+ </parameter>
866
+ </parameters>
867
+ </method>
868
+ <method name="replace_format"
869
+ c:identifier="gst_sdp_media_replace_format"
870
+ version="1.2">
871
+ <doc xml:space="preserve">Replace the format information in @media at @idx with @format.</doc>
872
+ <return-value transfer-ownership="none">
873
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
874
+ <type name="SDPResult" c:type="GstSDPResult"/>
875
+ </return-value>
876
+ <parameters>
877
+ <instance-parameter name="media" transfer-ownership="none">
878
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
879
+ <type name="SDPMedia" c:type="GstSDPMedia*"/>
880
+ </instance-parameter>
881
+ <parameter name="idx" transfer-ownership="none">
882
+ <doc xml:space="preserve">an index</doc>
883
+ <type name="guint" c:type="guint"/>
884
+ </parameter>
885
+ <parameter name="format" transfer-ownership="none">
886
+ <doc xml:space="preserve">the format</doc>
887
+ <type name="utf8" c:type="const gchar*"/>
888
+ </parameter>
485
889
  </parameters>
486
890
  </method>
487
891
  <method name="set_information"
488
892
  c:identifier="gst_sdp_media_set_information">
489
- <doc xml:whitespace="preserve">Set the media information of @media to @information.</doc>
893
+ <doc xml:space="preserve">Set the media information of @media to @information.</doc>
490
894
  <return-value transfer-ownership="none">
491
- <doc xml:whitespace="preserve">#GST_SDP_OK.</doc>
895
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
492
896
  <type name="SDPResult" c:type="GstSDPResult"/>
493
897
  </return-value>
494
898
  <parameters>
495
899
  <instance-parameter name="media" transfer-ownership="none">
496
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
900
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
497
901
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
498
902
  </instance-parameter>
499
903
  <parameter name="information" transfer-ownership="none">
500
- <doc xml:whitespace="preserve">the media information</doc>
904
+ <doc xml:space="preserve">the media information</doc>
501
905
  <type name="utf8" c:type="const gchar*"/>
502
906
  </parameter>
503
907
  </parameters>
504
908
  </method>
505
909
  <method name="set_key" c:identifier="gst_sdp_media_set_key">
506
- <doc xml:whitespace="preserve">Adds the encryption information to @media.</doc>
910
+ <doc xml:space="preserve">Adds the encryption information to @media.</doc>
507
911
  <return-value transfer-ownership="none">
508
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
912
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
509
913
  <type name="SDPResult" c:type="GstSDPResult"/>
510
914
  </return-value>
511
915
  <parameters>
512
916
  <instance-parameter name="media" transfer-ownership="none">
513
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
917
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
514
918
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
515
919
  </instance-parameter>
516
920
  <parameter name="type" transfer-ownership="none">
517
- <doc xml:whitespace="preserve">the encryption type</doc>
921
+ <doc xml:space="preserve">the encryption type</doc>
518
922
  <type name="utf8" c:type="const gchar*"/>
519
923
  </parameter>
520
924
  <parameter name="data" transfer-ownership="none">
521
- <doc xml:whitespace="preserve">the encryption data</doc>
925
+ <doc xml:space="preserve">the encryption data</doc>
522
926
  <type name="utf8" c:type="const gchar*"/>
523
927
  </parameter>
524
928
  </parameters>
525
929
  </method>
526
930
  <method name="set_media" c:identifier="gst_sdp_media_set_media">
527
- <doc xml:whitespace="preserve">Set the media description of @media to @med.</doc>
931
+ <doc xml:space="preserve">Set the media description of @media to @med.</doc>
528
932
  <return-value transfer-ownership="none">
529
- <doc xml:whitespace="preserve">#GST_SDP_OK.</doc>
933
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
530
934
  <type name="SDPResult" c:type="GstSDPResult"/>
531
935
  </return-value>
532
936
  <parameters>
533
937
  <instance-parameter name="media" transfer-ownership="none">
534
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
938
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
535
939
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
536
940
  </instance-parameter>
537
941
  <parameter name="med" transfer-ownership="none">
538
- <doc xml:whitespace="preserve">the media description</doc>
942
+ <doc xml:space="preserve">the media description</doc>
539
943
  <type name="utf8" c:type="const gchar*"/>
540
944
  </parameter>
541
945
  </parameters>
542
946
  </method>
543
947
  <method name="set_port_info" c:identifier="gst_sdp_media_set_port_info">
544
- <doc xml:whitespace="preserve">Set the port information in @media.</doc>
948
+ <doc xml:space="preserve">Set the port information in @media.</doc>
545
949
  <return-value transfer-ownership="none">
546
- <doc xml:whitespace="preserve">#GST_SDP_OK.</doc>
950
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
547
951
  <type name="SDPResult" c:type="GstSDPResult"/>
548
952
  </return-value>
549
953
  <parameters>
550
954
  <instance-parameter name="media" transfer-ownership="none">
551
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
955
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
552
956
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
553
957
  </instance-parameter>
554
958
  <parameter name="port" transfer-ownership="none">
555
- <doc xml:whitespace="preserve">the port number</doc>
959
+ <doc xml:space="preserve">the port number</doc>
556
960
  <type name="guint" c:type="guint"/>
557
961
  </parameter>
558
962
  <parameter name="num_ports" transfer-ownership="none">
559
- <doc xml:whitespace="preserve">the number of ports</doc>
963
+ <doc xml:space="preserve">the number of ports</doc>
560
964
  <type name="guint" c:type="guint"/>
561
965
  </parameter>
562
966
  </parameters>
563
967
  </method>
564
968
  <method name="set_proto" c:identifier="gst_sdp_media_set_proto">
565
- <doc xml:whitespace="preserve">Set the media transport protocol of @media to @proto.</doc>
969
+ <doc xml:space="preserve">Set the media transport protocol of @media to @proto.</doc>
566
970
  <return-value transfer-ownership="none">
567
- <doc xml:whitespace="preserve">#GST_SDP_OK.</doc>
971
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
568
972
  <type name="SDPResult" c:type="GstSDPResult"/>
569
973
  </return-value>
570
974
  <parameters>
571
975
  <instance-parameter name="media" transfer-ownership="none">
572
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
976
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
573
977
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
574
978
  </instance-parameter>
575
979
  <parameter name="proto" transfer-ownership="none">
576
- <doc xml:whitespace="preserve">the media transport protocol</doc>
980
+ <doc xml:space="preserve">the media transport protocol</doc>
577
981
  <type name="utf8" c:type="const gchar*"/>
578
982
  </parameter>
579
983
  </parameters>
580
984
  </method>
581
985
  <method name="uninit" c:identifier="gst_sdp_media_uninit">
582
- <doc xml:whitespace="preserve">Free all resources allocated in @media. @media should not be used anymore after
986
+ <doc xml:space="preserve">Free all resources allocated in @media. @media should not be used anymore after
583
987
  this function. This function should be used when @media was allocated on the
584
988
  stack and initialized with gst_sdp_media_init().</doc>
585
989
  <return-value transfer-ownership="none">
586
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
990
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
587
991
  <type name="SDPResult" c:type="GstSDPResult"/>
588
992
  </return-value>
589
993
  <parameters>
590
994
  <instance-parameter name="media" transfer-ownership="none">
591
- <doc xml:whitespace="preserve">a #GstSDPMedia</doc>
995
+ <doc xml:space="preserve">a #GstSDPMedia</doc>
592
996
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
593
997
  </instance-parameter>
594
998
  </parameters>
595
999
  </method>
596
1000
  <function name="new" c:identifier="gst_sdp_media_new">
597
- <doc xml:whitespace="preserve">Allocate a new GstSDPMedia and store the result in @media.</doc>
1001
+ <doc xml:space="preserve">Allocate a new GstSDPMedia and store the result in @media.</doc>
598
1002
  <return-value transfer-ownership="none">
599
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1003
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
600
1004
  <type name="SDPResult" c:type="GstSDPResult"/>
601
1005
  </return-value>
602
1006
  <parameters>
@@ -604,14 +1008,18 @@ stack and initialized with gst_sdp_media_init().</doc>
604
1008
  direction="out"
605
1009
  caller-allocates="0"
606
1010
  transfer-ownership="full">
607
- <doc xml:whitespace="preserve">pointer to new #GstSDPMedia</doc>
1011
+ <doc xml:space="preserve">pointer to new #GstSDPMedia</doc>
608
1012
  <type name="SDPMedia" c:type="GstSDPMedia**"/>
609
1013
  </parameter>
610
1014
  </parameters>
611
1015
  </function>
612
1016
  </record>
613
- <record name="SDPMessage" c:type="GstSDPMessage">
614
- <doc xml:whitespace="preserve">&lt;refsect2&gt;
1017
+ <record name="SDPMessage"
1018
+ c:type="GstSDPMessage"
1019
+ glib:type-name="GstSDPMessage"
1020
+ glib:get-type="gst_sdp_message_get_type"
1021
+ c:symbol-prefix="sdp_message">
1022
+ <doc xml:space="preserve">&lt;refsect2&gt;
615
1023
  &lt;para&gt;
616
1024
  The GstSDPMessage helper functions makes it easy to parse and create SDP
617
1025
  messages.
@@ -677,122 +1085,122 @@ Last reviewed on 2007-07-24 (0.10.14)</doc>
677
1085
  </field>
678
1086
  <method name="add_attribute"
679
1087
  c:identifier="gst_sdp_message_add_attribute">
680
- <doc xml:whitespace="preserve">Add the attribute with @key and @value to @msg.</doc>
1088
+ <doc xml:space="preserve">Add the attribute with @key and @value to @msg.</doc>
681
1089
  <return-value transfer-ownership="none">
682
- <doc xml:whitespace="preserve">@GST_SDP_OK.</doc>
1090
+ <doc xml:space="preserve">@GST_SDP_OK.</doc>
683
1091
  <type name="SDPResult" c:type="GstSDPResult"/>
684
1092
  </return-value>
685
1093
  <parameters>
686
1094
  <instance-parameter name="msg" transfer-ownership="none">
687
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1095
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
688
1096
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
689
1097
  </instance-parameter>
690
1098
  <parameter name="key" transfer-ownership="none">
691
- <doc xml:whitespace="preserve">the key</doc>
1099
+ <doc xml:space="preserve">the key</doc>
692
1100
  <type name="utf8" c:type="const gchar*"/>
693
1101
  </parameter>
694
1102
  <parameter name="value" transfer-ownership="none">
695
- <doc xml:whitespace="preserve">the value</doc>
1103
+ <doc xml:space="preserve">the value</doc>
696
1104
  <type name="utf8" c:type="const gchar*"/>
697
1105
  </parameter>
698
1106
  </parameters>
699
1107
  </method>
700
1108
  <method name="add_bandwidth"
701
1109
  c:identifier="gst_sdp_message_add_bandwidth">
702
- <doc xml:whitespace="preserve">Add the specified bandwidth information to @msg.</doc>
1110
+ <doc xml:space="preserve">Add the specified bandwidth information to @msg.</doc>
703
1111
  <return-value transfer-ownership="none">
704
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1112
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
705
1113
  <type name="SDPResult" c:type="GstSDPResult"/>
706
1114
  </return-value>
707
1115
  <parameters>
708
1116
  <instance-parameter name="msg" transfer-ownership="none">
709
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1117
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
710
1118
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
711
1119
  </instance-parameter>
712
1120
  <parameter name="bwtype" transfer-ownership="none">
713
- <doc xml:whitespace="preserve">the bandwidth modifier type</doc>
1121
+ <doc xml:space="preserve">the bandwidth modifier type</doc>
714
1122
  <type name="utf8" c:type="const gchar*"/>
715
1123
  </parameter>
716
1124
  <parameter name="bandwidth" transfer-ownership="none">
717
- <doc xml:whitespace="preserve">the bandwidth in kilobits per second</doc>
1125
+ <doc xml:space="preserve">the bandwidth in kilobits per second</doc>
718
1126
  <type name="guint" c:type="guint"/>
719
1127
  </parameter>
720
1128
  </parameters>
721
1129
  </method>
722
1130
  <method name="add_email" c:identifier="gst_sdp_message_add_email">
723
- <doc xml:whitespace="preserve">Add @email to the list of emails in @msg.</doc>
1131
+ <doc xml:space="preserve">Add @email to the list of emails in @msg.</doc>
724
1132
  <return-value transfer-ownership="none">
725
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1133
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
726
1134
  <type name="SDPResult" c:type="GstSDPResult"/>
727
1135
  </return-value>
728
1136
  <parameters>
729
1137
  <instance-parameter name="msg" transfer-ownership="none">
730
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1138
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
731
1139
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
732
1140
  </instance-parameter>
733
1141
  <parameter name="email" transfer-ownership="none">
734
- <doc xml:whitespace="preserve">an email</doc>
1142
+ <doc xml:space="preserve">an email</doc>
735
1143
  <type name="utf8" c:type="const gchar*"/>
736
1144
  </parameter>
737
1145
  </parameters>
738
1146
  </method>
739
1147
  <method name="add_media" c:identifier="gst_sdp_message_add_media">
740
- <doc xml:whitespace="preserve">Adds @media to the array of medias in @msg. This function takes ownership of
1148
+ <doc xml:space="preserve">Adds @media to the array of medias in @msg. This function takes ownership of
741
1149
  the contents of @media so that @media will have to be reinitialized with
742
1150
  gst_sdp_media_init() before it can be used again.</doc>
743
1151
  <return-value transfer-ownership="none">
744
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1152
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
745
1153
  <type name="SDPResult" c:type="GstSDPResult"/>
746
1154
  </return-value>
747
1155
  <parameters>
748
1156
  <instance-parameter name="msg" transfer-ownership="none">
749
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1157
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
750
1158
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
751
1159
  </instance-parameter>
752
1160
  <parameter name="media" transfer-ownership="none">
753
- <doc xml:whitespace="preserve">a #GstSDPMedia to add</doc>
1161
+ <doc xml:space="preserve">a #GstSDPMedia to add</doc>
754
1162
  <type name="SDPMedia" c:type="GstSDPMedia*"/>
755
1163
  </parameter>
756
1164
  </parameters>
757
1165
  </method>
758
1166
  <method name="add_phone" c:identifier="gst_sdp_message_add_phone">
759
- <doc xml:whitespace="preserve">Add @phone to the list of phones in @msg.</doc>
1167
+ <doc xml:space="preserve">Add @phone to the list of phones in @msg.</doc>
760
1168
  <return-value transfer-ownership="none">
761
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1169
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
762
1170
  <type name="SDPResult" c:type="GstSDPResult"/>
763
1171
  </return-value>
764
1172
  <parameters>
765
1173
  <instance-parameter name="msg" transfer-ownership="none">
766
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1174
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
767
1175
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
768
1176
  </instance-parameter>
769
1177
  <parameter name="phone" transfer-ownership="none">
770
- <doc xml:whitespace="preserve">a phone</doc>
1178
+ <doc xml:space="preserve">a phone</doc>
771
1179
  <type name="utf8" c:type="const gchar*"/>
772
1180
  </parameter>
773
1181
  </parameters>
774
1182
  </method>
775
1183
  <method name="add_time" c:identifier="gst_sdp_message_add_time">
776
- <doc xml:whitespace="preserve">Add time information @start and @stop to @msg.</doc>
1184
+ <doc xml:space="preserve">Add time information @start and @stop to @msg.</doc>
777
1185
  <return-value transfer-ownership="none">
778
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1186
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
779
1187
  <type name="SDPResult" c:type="GstSDPResult"/>
780
1188
  </return-value>
781
1189
  <parameters>
782
1190
  <instance-parameter name="msg" transfer-ownership="none">
783
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1191
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
784
1192
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
785
1193
  </instance-parameter>
786
1194
  <parameter name="start" transfer-ownership="none">
787
- <doc xml:whitespace="preserve">the start time</doc>
1195
+ <doc xml:space="preserve">the start time</doc>
788
1196
  <type name="utf8" c:type="const gchar*"/>
789
1197
  </parameter>
790
1198
  <parameter name="stop" transfer-ownership="none">
791
- <doc xml:whitespace="preserve">the stop time</doc>
1199
+ <doc xml:space="preserve">the stop time</doc>
792
1200
  <type name="utf8" c:type="const gchar*"/>
793
1201
  </parameter>
794
1202
  <parameter name="repeat" transfer-ownership="none">
795
- <doc xml:whitespace="preserve">the repeat times</doc>
1203
+ <doc xml:space="preserve">the repeat times</doc>
796
1204
  <array zero-terminated="0" c:type="gchar**">
797
1205
  <type name="utf8" c:type="gchar*"/>
798
1206
  </array>
@@ -800,634 +1208,1054 @@ gst_sdp_media_init() before it can be used again.</doc>
800
1208
  </parameters>
801
1209
  </method>
802
1210
  <method name="add_zone" c:identifier="gst_sdp_message_add_zone">
803
- <doc xml:whitespace="preserve">Add time zone information to @msg.</doc>
1211
+ <doc xml:space="preserve">Add time zone information to @msg.</doc>
804
1212
  <return-value transfer-ownership="none">
805
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1213
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
806
1214
  <type name="SDPResult" c:type="GstSDPResult"/>
807
1215
  </return-value>
808
1216
  <parameters>
809
1217
  <instance-parameter name="msg" transfer-ownership="none">
810
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1218
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
811
1219
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
812
1220
  </instance-parameter>
813
1221
  <parameter name="adj_time" transfer-ownership="none">
814
- <doc xml:whitespace="preserve">the NTP time that a time zone adjustment happens</doc>
1222
+ <doc xml:space="preserve">the NTP time that a time zone adjustment happens</doc>
815
1223
  <type name="utf8" c:type="const gchar*"/>
816
1224
  </parameter>
817
1225
  <parameter name="typed_time" transfer-ownership="none">
818
- <doc xml:whitespace="preserve">the offset from the time when the session was first scheduled</doc>
1226
+ <doc xml:space="preserve">the offset from the time when the session was first scheduled</doc>
819
1227
  <type name="utf8" c:type="const gchar*"/>
820
1228
  </parameter>
821
1229
  </parameters>
822
1230
  </method>
823
1231
  <method name="as_text" c:identifier="gst_sdp_message_as_text">
824
- <doc xml:whitespace="preserve">Convert the contents of @msg to a text string.</doc>
1232
+ <doc xml:space="preserve">Convert the contents of @msg to a text string.</doc>
825
1233
  <return-value transfer-ownership="full">
826
- <doc xml:whitespace="preserve">A dynamically allocated string representing the SDP description.</doc>
1234
+ <doc xml:space="preserve">A dynamically allocated string representing the SDP description.</doc>
827
1235
  <type name="utf8" c:type="gchar*"/>
828
1236
  </return-value>
829
1237
  <parameters>
830
1238
  <instance-parameter name="msg" transfer-ownership="none">
831
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1239
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
832
1240
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
833
1241
  </instance-parameter>
834
1242
  </parameters>
835
1243
  </method>
836
1244
  <method name="attributes_len"
837
1245
  c:identifier="gst_sdp_message_attributes_len">
838
- <doc xml:whitespace="preserve">Get the number of attributes in @msg.</doc>
1246
+ <doc xml:space="preserve">Get the number of attributes in @msg.</doc>
839
1247
  <return-value transfer-ownership="none">
840
- <doc xml:whitespace="preserve">the number of attributes in @msg.</doc>
1248
+ <doc xml:space="preserve">the number of attributes in @msg.</doc>
841
1249
  <type name="guint" c:type="guint"/>
842
1250
  </return-value>
843
1251
  <parameters>
844
1252
  <instance-parameter name="msg" transfer-ownership="none">
845
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1253
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
846
1254
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
847
1255
  </instance-parameter>
848
1256
  </parameters>
849
1257
  </method>
850
1258
  <method name="bandwidths_len"
851
1259
  c:identifier="gst_sdp_message_bandwidths_len">
852
- <doc xml:whitespace="preserve">Get the number of bandwidth information in @msg.</doc>
1260
+ <doc xml:space="preserve">Get the number of bandwidth information in @msg.</doc>
853
1261
  <return-value transfer-ownership="none">
854
- <doc xml:whitespace="preserve">the number of bandwidth information in @msg.</doc>
1262
+ <doc xml:space="preserve">the number of bandwidth information in @msg.</doc>
855
1263
  <type name="guint" c:type="guint"/>
856
1264
  </return-value>
857
1265
  <parameters>
858
1266
  <instance-parameter name="msg" transfer-ownership="none">
859
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1267
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1268
+ <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1269
+ </instance-parameter>
1270
+ </parameters>
1271
+ </method>
1272
+ <method name="copy" c:identifier="gst_sdp_message_copy" version="1.2">
1273
+ <doc xml:space="preserve">Allocate a new copy of @msg and store the result in @copy. The value in
1274
+ @copy should be release with gst_sdp_message_free function.</doc>
1275
+ <return-value transfer-ownership="none">
1276
+ <doc xml:space="preserve">a #GstSDPResult</doc>
1277
+ <type name="SDPResult" c:type="GstSDPResult"/>
1278
+ </return-value>
1279
+ <parameters>
1280
+ <instance-parameter name="msg" transfer-ownership="none">
1281
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
860
1282
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
861
1283
  </instance-parameter>
1284
+ <parameter name="copy"
1285
+ direction="out"
1286
+ caller-allocates="0"
1287
+ transfer-ownership="full">
1288
+ <doc xml:space="preserve">pointer to new #GstSDPMessage</doc>
1289
+ <type name="SDPMessage" c:type="GstSDPMessage**"/>
1290
+ </parameter>
862
1291
  </parameters>
863
1292
  </method>
864
1293
  <method name="dump" c:identifier="gst_sdp_message_dump">
865
- <doc xml:whitespace="preserve">Dump the parsed contents of @msg to stdout.</doc>
1294
+ <doc xml:space="preserve">Dump the parsed contents of @msg to stdout.</doc>
866
1295
  <return-value transfer-ownership="none">
867
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1296
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
868
1297
  <type name="SDPResult" c:type="GstSDPResult"/>
869
1298
  </return-value>
870
1299
  <parameters>
871
1300
  <instance-parameter name="msg" transfer-ownership="none">
872
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1301
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
873
1302
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
874
1303
  </instance-parameter>
875
1304
  </parameters>
876
1305
  </method>
877
1306
  <method name="emails_len" c:identifier="gst_sdp_message_emails_len">
878
- <doc xml:whitespace="preserve">Get the number of emails in @msg.</doc>
1307
+ <doc xml:space="preserve">Get the number of emails in @msg.</doc>
879
1308
  <return-value transfer-ownership="none">
880
- <doc xml:whitespace="preserve">the number of emails in @msg.</doc>
1309
+ <doc xml:space="preserve">the number of emails in @msg.</doc>
881
1310
  <type name="guint" c:type="guint"/>
882
1311
  </return-value>
883
1312
  <parameters>
884
1313
  <instance-parameter name="msg" transfer-ownership="none">
885
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1314
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
886
1315
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
887
1316
  </instance-parameter>
888
1317
  </parameters>
889
1318
  </method>
890
1319
  <method name="free" c:identifier="gst_sdp_message_free">
891
- <doc xml:whitespace="preserve">Free all resources allocated by @msg. @msg should not be used anymore after
1320
+ <doc xml:space="preserve">Free all resources allocated by @msg. @msg should not be used anymore after
892
1321
  this function. This function should be used when @msg was dynamically
893
1322
  allocated with gst_sdp_message_new().</doc>
894
1323
  <return-value transfer-ownership="none">
895
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1324
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
896
1325
  <type name="SDPResult" c:type="GstSDPResult"/>
897
1326
  </return-value>
898
1327
  <parameters>
899
1328
  <instance-parameter name="msg" transfer-ownership="none">
900
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1329
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
901
1330
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
902
1331
  </instance-parameter>
903
1332
  </parameters>
904
1333
  </method>
905
1334
  <method name="get_attribute"
906
1335
  c:identifier="gst_sdp_message_get_attribute">
907
- <doc xml:whitespace="preserve">Get the attribute at position @idx in @msg.</doc>
1336
+ <doc xml:space="preserve">Get the attribute at position @idx in @msg.</doc>
908
1337
  <return-value transfer-ownership="none">
909
- <doc xml:whitespace="preserve">the #GstSDPAttribute at position @idx.</doc>
1338
+ <doc xml:space="preserve">the #GstSDPAttribute at position @idx.</doc>
910
1339
  <type name="SDPAttribute" c:type="const GstSDPAttribute*"/>
911
1340
  </return-value>
912
1341
  <parameters>
913
1342
  <instance-parameter name="msg" transfer-ownership="none">
914
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1343
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
915
1344
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
916
1345
  </instance-parameter>
917
1346
  <parameter name="idx" transfer-ownership="none">
918
- <doc xml:whitespace="preserve">the index</doc>
1347
+ <doc xml:space="preserve">the index</doc>
919
1348
  <type name="guint" c:type="guint"/>
920
1349
  </parameter>
921
1350
  </parameters>
922
1351
  </method>
923
1352
  <method name="get_attribute_val"
924
1353
  c:identifier="gst_sdp_message_get_attribute_val">
925
- <doc xml:whitespace="preserve">Get the first attribute with key @key in @msg.</doc>
1354
+ <doc xml:space="preserve">Get the first attribute with key @key in @msg.</doc>
926
1355
  <return-value transfer-ownership="none">
927
- <doc xml:whitespace="preserve">the attribute value of the first attribute with @key.</doc>
1356
+ <doc xml:space="preserve">the attribute value of the first attribute with @key.</doc>
928
1357
  <type name="utf8" c:type="const gchar*"/>
929
1358
  </return-value>
930
1359
  <parameters>
931
1360
  <instance-parameter name="msg" transfer-ownership="none">
932
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1361
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
933
1362
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
934
1363
  </instance-parameter>
935
1364
  <parameter name="key" transfer-ownership="none">
936
- <doc xml:whitespace="preserve">the key</doc>
1365
+ <doc xml:space="preserve">the key</doc>
937
1366
  <type name="utf8" c:type="const gchar*"/>
938
1367
  </parameter>
939
1368
  </parameters>
940
1369
  </method>
941
1370
  <method name="get_attribute_val_n"
942
1371
  c:identifier="gst_sdp_message_get_attribute_val_n">
943
- <doc xml:whitespace="preserve">Get the @nth attribute with key @key in @msg.</doc>
1372
+ <doc xml:space="preserve">Get the @nth attribute with key @key in @msg.</doc>
944
1373
  <return-value transfer-ownership="none">
945
- <doc xml:whitespace="preserve">the attribute value of the @nth attribute with @key.</doc>
1374
+ <doc xml:space="preserve">the attribute value of the @nth attribute with @key.</doc>
946
1375
  <type name="utf8" c:type="const gchar*"/>
947
1376
  </return-value>
948
1377
  <parameters>
949
1378
  <instance-parameter name="msg" transfer-ownership="none">
950
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1379
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
951
1380
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
952
1381
  </instance-parameter>
953
1382
  <parameter name="key" transfer-ownership="none">
954
- <doc xml:whitespace="preserve">the key</doc>
1383
+ <doc xml:space="preserve">the key</doc>
955
1384
  <type name="utf8" c:type="const gchar*"/>
956
1385
  </parameter>
957
1386
  <parameter name="nth" transfer-ownership="none">
958
- <doc xml:whitespace="preserve">the index</doc>
1387
+ <doc xml:space="preserve">the index</doc>
959
1388
  <type name="guint" c:type="guint"/>
960
1389
  </parameter>
961
1390
  </parameters>
962
1391
  </method>
963
1392
  <method name="get_bandwidth"
964
1393
  c:identifier="gst_sdp_message_get_bandwidth">
965
- <doc xml:whitespace="preserve">Get the bandwidth at index @idx from @msg.</doc>
1394
+ <doc xml:space="preserve">Get the bandwidth at index @idx from @msg.</doc>
966
1395
  <return-value transfer-ownership="none">
967
- <doc xml:whitespace="preserve">a #GstSDPBandwidth.</doc>
1396
+ <doc xml:space="preserve">a #GstSDPBandwidth.</doc>
968
1397
  <type name="SDPBandwidth" c:type="const GstSDPBandwidth*"/>
969
1398
  </return-value>
970
1399
  <parameters>
971
1400
  <instance-parameter name="msg" transfer-ownership="none">
972
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1401
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
973
1402
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
974
1403
  </instance-parameter>
975
1404
  <parameter name="idx" transfer-ownership="none">
976
- <doc xml:whitespace="preserve">the bandwidth index</doc>
1405
+ <doc xml:space="preserve">the bandwidth index</doc>
977
1406
  <type name="guint" c:type="guint"/>
978
1407
  </parameter>
979
1408
  </parameters>
980
1409
  </method>
981
1410
  <method name="get_connection"
982
1411
  c:identifier="gst_sdp_message_get_connection">
983
- <doc xml:whitespace="preserve">Get the connection of @msg.</doc>
1412
+ <doc xml:space="preserve">Get the connection of @msg.</doc>
984
1413
  <return-value transfer-ownership="none">
985
- <doc xml:whitespace="preserve">a #GstSDPConnection. The result remains valid as long as @msg is valid.</doc>
1414
+ <doc xml:space="preserve">a #GstSDPConnection. The result remains valid as long as @msg is valid.</doc>
986
1415
  <type name="SDPConnection" c:type="const GstSDPConnection*"/>
987
1416
  </return-value>
988
1417
  <parameters>
989
1418
  <instance-parameter name="msg" transfer-ownership="none">
990
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1419
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
991
1420
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
992
1421
  </instance-parameter>
993
1422
  </parameters>
994
1423
  </method>
995
1424
  <method name="get_email" c:identifier="gst_sdp_message_get_email">
996
- <doc xml:whitespace="preserve">Get the email with number @idx from @msg.</doc>
1425
+ <doc xml:space="preserve">Get the email with number @idx from @msg.</doc>
997
1426
  <return-value transfer-ownership="none">
998
- <doc xml:whitespace="preserve">the email at position @idx.</doc>
1427
+ <doc xml:space="preserve">the email at position @idx.</doc>
999
1428
  <type name="utf8" c:type="const gchar*"/>
1000
1429
  </return-value>
1001
1430
  <parameters>
1002
1431
  <instance-parameter name="msg" transfer-ownership="none">
1003
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1432
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1004
1433
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1005
1434
  </instance-parameter>
1006
1435
  <parameter name="idx" transfer-ownership="none">
1007
- <doc xml:whitespace="preserve">an email index</doc>
1436
+ <doc xml:space="preserve">an email index</doc>
1008
1437
  <type name="guint" c:type="guint"/>
1009
1438
  </parameter>
1010
1439
  </parameters>
1011
1440
  </method>
1012
1441
  <method name="get_information"
1013
1442
  c:identifier="gst_sdp_message_get_information">
1014
- <doc xml:whitespace="preserve">Get the information in @msg.</doc>
1443
+ <doc xml:space="preserve">Get the information in @msg.</doc>
1015
1444
  <return-value transfer-ownership="none">
1016
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1445
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1017
1446
  <type name="utf8" c:type="const gchar*"/>
1018
1447
  </return-value>
1019
1448
  <parameters>
1020
1449
  <instance-parameter name="msg" transfer-ownership="none">
1021
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1450
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1022
1451
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1023
1452
  </instance-parameter>
1024
1453
  </parameters>
1025
1454
  </method>
1026
1455
  <method name="get_key" c:identifier="gst_sdp_message_get_key">
1027
- <doc xml:whitespace="preserve">Get the encryption information from @msg.</doc>
1456
+ <doc xml:space="preserve">Get the encryption information from @msg.</doc>
1028
1457
  <return-value transfer-ownership="none">
1029
- <doc xml:whitespace="preserve">a #GstSDPKey.</doc>
1458
+ <doc xml:space="preserve">a #GstSDPKey.</doc>
1030
1459
  <type name="SDPKey" c:type="const GstSDPKey*"/>
1031
1460
  </return-value>
1032
1461
  <parameters>
1033
1462
  <instance-parameter name="msg" transfer-ownership="none">
1034
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1463
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1035
1464
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1036
1465
  </instance-parameter>
1037
1466
  </parameters>
1038
1467
  </method>
1039
1468
  <method name="get_media" c:identifier="gst_sdp_message_get_media">
1040
- <doc xml:whitespace="preserve">Get the media description at index @idx in @msg.</doc>
1469
+ <doc xml:space="preserve">Get the media description at index @idx in @msg.</doc>
1041
1470
  <return-value transfer-ownership="none">
1042
- <doc xml:whitespace="preserve">a #GstSDPMedia.</doc>
1471
+ <doc xml:space="preserve">a #GstSDPMedia.</doc>
1043
1472
  <type name="SDPMedia" c:type="const GstSDPMedia*"/>
1044
1473
  </return-value>
1045
1474
  <parameters>
1046
1475
  <instance-parameter name="msg" transfer-ownership="none">
1047
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1476
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1048
1477
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1049
1478
  </instance-parameter>
1050
1479
  <parameter name="idx" transfer-ownership="none">
1051
- <doc xml:whitespace="preserve">the index</doc>
1480
+ <doc xml:space="preserve">the index</doc>
1052
1481
  <type name="guint" c:type="guint"/>
1053
1482
  </parameter>
1054
1483
  </parameters>
1055
1484
  </method>
1056
1485
  <method name="get_origin" c:identifier="gst_sdp_message_get_origin">
1057
- <doc xml:whitespace="preserve">Get the origin of @msg.</doc>
1486
+ <doc xml:space="preserve">Get the origin of @msg.</doc>
1058
1487
  <return-value transfer-ownership="none">
1059
- <doc xml:whitespace="preserve">a #GstSDPOrigin. The result remains valid as long as @msg is valid.</doc>
1488
+ <doc xml:space="preserve">a #GstSDPOrigin. The result remains valid as long as @msg is valid.</doc>
1060
1489
  <type name="SDPOrigin" c:type="const GstSDPOrigin*"/>
1061
1490
  </return-value>
1062
1491
  <parameters>
1063
1492
  <instance-parameter name="msg" transfer-ownership="none">
1064
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1493
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1065
1494
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1066
1495
  </instance-parameter>
1067
1496
  </parameters>
1068
1497
  </method>
1069
1498
  <method name="get_phone" c:identifier="gst_sdp_message_get_phone">
1070
- <doc xml:whitespace="preserve">Get the phone with number @idx from @msg.</doc>
1499
+ <doc xml:space="preserve">Get the phone with number @idx from @msg.</doc>
1071
1500
  <return-value transfer-ownership="none">
1072
- <doc xml:whitespace="preserve">the phone at position @idx.</doc>
1501
+ <doc xml:space="preserve">the phone at position @idx.</doc>
1073
1502
  <type name="utf8" c:type="const gchar*"/>
1074
1503
  </return-value>
1075
1504
  <parameters>
1076
1505
  <instance-parameter name="msg" transfer-ownership="none">
1077
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1506
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1078
1507
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1079
1508
  </instance-parameter>
1080
1509
  <parameter name="idx" transfer-ownership="none">
1081
- <doc xml:whitespace="preserve">a phone index</doc>
1510
+ <doc xml:space="preserve">a phone index</doc>
1082
1511
  <type name="guint" c:type="guint"/>
1083
1512
  </parameter>
1084
1513
  </parameters>
1085
1514
  </method>
1086
1515
  <method name="get_session_name"
1087
1516
  c:identifier="gst_sdp_message_get_session_name">
1088
- <doc xml:whitespace="preserve">Get the session name in @msg.</doc>
1517
+ <doc xml:space="preserve">Get the session name in @msg.</doc>
1089
1518
  <return-value transfer-ownership="none">
1090
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1519
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1091
1520
  <type name="utf8" c:type="const gchar*"/>
1092
1521
  </return-value>
1093
1522
  <parameters>
1094
1523
  <instance-parameter name="msg" transfer-ownership="none">
1095
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1524
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1096
1525
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1097
1526
  </instance-parameter>
1098
1527
  </parameters>
1099
1528
  </method>
1100
1529
  <method name="get_time" c:identifier="gst_sdp_message_get_time">
1101
- <doc xml:whitespace="preserve">Get time information with index @idx from @msg.</doc>
1530
+ <doc xml:space="preserve">Get time information with index @idx from @msg.</doc>
1102
1531
  <return-value transfer-ownership="none">
1103
- <doc xml:whitespace="preserve">a #GstSDPTime.</doc>
1532
+ <doc xml:space="preserve">a #GstSDPTime.</doc>
1104
1533
  <type name="SDPTime" c:type="const GstSDPTime*"/>
1105
1534
  </return-value>
1106
1535
  <parameters>
1107
1536
  <instance-parameter name="msg" transfer-ownership="none">
1108
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1537
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1109
1538
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1110
1539
  </instance-parameter>
1111
1540
  <parameter name="idx" transfer-ownership="none">
1112
- <doc xml:whitespace="preserve">the time index</doc>
1541
+ <doc xml:space="preserve">the time index</doc>
1113
1542
  <type name="guint" c:type="guint"/>
1114
1543
  </parameter>
1115
1544
  </parameters>
1116
1545
  </method>
1117
1546
  <method name="get_uri" c:identifier="gst_sdp_message_get_uri">
1118
- <doc xml:whitespace="preserve">Get the URI in @msg.</doc>
1547
+ <doc xml:space="preserve">Get the URI in @msg.</doc>
1119
1548
  <return-value transfer-ownership="none">
1120
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1549
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1121
1550
  <type name="utf8" c:type="const gchar*"/>
1122
1551
  </return-value>
1123
1552
  <parameters>
1124
1553
  <instance-parameter name="msg" transfer-ownership="none">
1125
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1554
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1126
1555
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1127
1556
  </instance-parameter>
1128
1557
  </parameters>
1129
1558
  </method>
1130
1559
  <method name="get_version" c:identifier="gst_sdp_message_get_version">
1131
- <doc xml:whitespace="preserve">Get the version in @msg.</doc>
1560
+ <doc xml:space="preserve">Get the version in @msg.</doc>
1132
1561
  <return-value transfer-ownership="none">
1133
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1562
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1134
1563
  <type name="utf8" c:type="const gchar*"/>
1135
1564
  </return-value>
1136
1565
  <parameters>
1137
1566
  <instance-parameter name="msg" transfer-ownership="none">
1138
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1567
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1139
1568
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1140
1569
  </instance-parameter>
1141
1570
  </parameters>
1142
1571
  </method>
1143
1572
  <method name="get_zone" c:identifier="gst_sdp_message_get_zone">
1144
- <doc xml:whitespace="preserve">Get time zone information with index @idx from @msg.</doc>
1573
+ <doc xml:space="preserve">Get time zone information with index @idx from @msg.</doc>
1145
1574
  <return-value transfer-ownership="none">
1146
- <doc xml:whitespace="preserve">a #GstSDPZone.</doc>
1575
+ <doc xml:space="preserve">a #GstSDPZone.</doc>
1147
1576
  <type name="SDPZone" c:type="const GstSDPZone*"/>
1148
1577
  </return-value>
1149
1578
  <parameters>
1150
1579
  <instance-parameter name="msg" transfer-ownership="none">
1151
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1580
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1152
1581
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1153
1582
  </instance-parameter>
1154
1583
  <parameter name="idx" transfer-ownership="none">
1155
- <doc xml:whitespace="preserve">the zone index</doc>
1584
+ <doc xml:space="preserve">the zone index</doc>
1156
1585
  <type name="guint" c:type="guint"/>
1157
1586
  </parameter>
1158
1587
  </parameters>
1159
1588
  </method>
1160
1589
  <method name="init" c:identifier="gst_sdp_message_init">
1161
- <doc xml:whitespace="preserve">Initialize @msg so that its contents are as if it was freshly allocated
1590
+ <doc xml:space="preserve">Initialize @msg so that its contents are as if it was freshly allocated
1162
1591
  with gst_sdp_message_new(). This function is mostly used to initialize a message
1163
1592
  allocated on the stack. gst_sdp_message_uninit() undoes this operation.
1164
1593
 
1165
1594
  When this function is invoked on newly allocated data (with malloc or on the
1166
1595
  stack), its contents should be set to 0 before calling this function.</doc>
1167
1596
  <return-value transfer-ownership="none">
1168
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
1597
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1169
1598
  <type name="SDPResult" c:type="GstSDPResult"/>
1170
1599
  </return-value>
1171
1600
  <parameters>
1172
1601
  <instance-parameter name="msg" transfer-ownership="none">
1173
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1602
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1174
1603
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1175
1604
  </instance-parameter>
1176
1605
  </parameters>
1177
1606
  </method>
1178
- <method name="medias_len" c:identifier="gst_sdp_message_medias_len">
1179
- <doc xml:whitespace="preserve">Get the number of media descriptions in @msg.</doc>
1607
+ <method name="insert_attribute"
1608
+ c:identifier="gst_sdp_message_insert_attribute"
1609
+ version="1.2">
1610
+ <doc xml:space="preserve">Insert attribute into the array of attributes in @msg
1611
+ at index @idx.
1612
+ When -1 is given as @idx, the attribute is inserted at the end.</doc>
1180
1613
  <return-value transfer-ownership="none">
1181
- <doc xml:whitespace="preserve">the number of media descriptions in @msg.</doc>
1182
- <type name="guint" c:type="guint"/>
1614
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1615
+ <type name="SDPResult" c:type="GstSDPResult"/>
1183
1616
  </return-value>
1184
1617
  <parameters>
1185
1618
  <instance-parameter name="msg" transfer-ownership="none">
1186
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1187
- <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1619
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1620
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1188
1621
  </instance-parameter>
1189
- </parameters>
1190
- </method>
1622
+ <parameter name="idx" transfer-ownership="none">
1623
+ <doc xml:space="preserve">an index</doc>
1624
+ <type name="gint" c:type="gint"/>
1625
+ </parameter>
1626
+ <parameter name="attr" transfer-ownership="none">
1627
+ <doc xml:space="preserve">a #GstSDPAttribute</doc>
1628
+ <type name="SDPAttribute" c:type="GstSDPAttribute*"/>
1629
+ </parameter>
1630
+ </parameters>
1631
+ </method>
1632
+ <method name="insert_bandwidth"
1633
+ c:identifier="gst_sdp_message_insert_bandwidth"
1634
+ version="1.2">
1635
+ <doc xml:space="preserve">Insert bandwidth parameters into the array of bandwidths in @msg
1636
+ at index @idx.
1637
+ When -1 is given as @idx, the bandwidth is inserted at the end.</doc>
1638
+ <return-value transfer-ownership="none">
1639
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1640
+ <type name="SDPResult" c:type="GstSDPResult"/>
1641
+ </return-value>
1642
+ <parameters>
1643
+ <instance-parameter name="msg" transfer-ownership="none">
1644
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1645
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1646
+ </instance-parameter>
1647
+ <parameter name="idx" transfer-ownership="none">
1648
+ <doc xml:space="preserve">an index</doc>
1649
+ <type name="gint" c:type="gint"/>
1650
+ </parameter>
1651
+ <parameter name="bw" transfer-ownership="none">
1652
+ <doc xml:space="preserve">the bandwidth</doc>
1653
+ <type name="SDPBandwidth" c:type="GstSDPBandwidth*"/>
1654
+ </parameter>
1655
+ </parameters>
1656
+ </method>
1657
+ <method name="insert_email"
1658
+ c:identifier="gst_sdp_message_insert_email"
1659
+ version="1.2">
1660
+ <doc xml:space="preserve">Insert @email into the array of emails in @msg at index @idx.
1661
+ When -1 is given as @idx, the email is inserted at the end.</doc>
1662
+ <return-value transfer-ownership="none">
1663
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1664
+ <type name="SDPResult" c:type="GstSDPResult"/>
1665
+ </return-value>
1666
+ <parameters>
1667
+ <instance-parameter name="msg" transfer-ownership="none">
1668
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1669
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1670
+ </instance-parameter>
1671
+ <parameter name="idx" transfer-ownership="none">
1672
+ <doc xml:space="preserve">an index</doc>
1673
+ <type name="gint" c:type="gint"/>
1674
+ </parameter>
1675
+ <parameter name="email" transfer-ownership="none">
1676
+ <doc xml:space="preserve">an email</doc>
1677
+ <type name="utf8" c:type="const gchar*"/>
1678
+ </parameter>
1679
+ </parameters>
1680
+ </method>
1681
+ <method name="insert_phone"
1682
+ c:identifier="gst_sdp_message_insert_phone"
1683
+ version="1.2">
1684
+ <doc xml:space="preserve">Insert @phone into the array of phone numbers in @msg at index @idx.
1685
+ When -1 is given as @idx, the phone is inserted at the end.</doc>
1686
+ <return-value transfer-ownership="none">
1687
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1688
+ <type name="SDPResult" c:type="GstSDPResult"/>
1689
+ </return-value>
1690
+ <parameters>
1691
+ <instance-parameter name="msg" transfer-ownership="none">
1692
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1693
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1694
+ </instance-parameter>
1695
+ <parameter name="idx" transfer-ownership="none">
1696
+ <doc xml:space="preserve">a phone index</doc>
1697
+ <type name="gint" c:type="gint"/>
1698
+ </parameter>
1699
+ <parameter name="phone" transfer-ownership="none">
1700
+ <doc xml:space="preserve">a phone</doc>
1701
+ <type name="utf8" c:type="const gchar*"/>
1702
+ </parameter>
1703
+ </parameters>
1704
+ </method>
1705
+ <method name="insert_time"
1706
+ c:identifier="gst_sdp_message_insert_time"
1707
+ version="1.2">
1708
+ <doc xml:space="preserve">Insert time parameters into the array of times in @msg
1709
+ at index @idx.
1710
+ When -1 is given as @idx, the times are inserted at the end.</doc>
1711
+ <return-value transfer-ownership="none">
1712
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1713
+ <type name="SDPResult" c:type="GstSDPResult"/>
1714
+ </return-value>
1715
+ <parameters>
1716
+ <instance-parameter name="msg" transfer-ownership="none">
1717
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1718
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1719
+ </instance-parameter>
1720
+ <parameter name="idx" transfer-ownership="none">
1721
+ <doc xml:space="preserve">an index</doc>
1722
+ <type name="gint" c:type="gint"/>
1723
+ </parameter>
1724
+ <parameter name="t" transfer-ownership="none">
1725
+ <doc xml:space="preserve">a #GstSDPTime</doc>
1726
+ <type name="SDPTime" c:type="GstSDPTime*"/>
1727
+ </parameter>
1728
+ </parameters>
1729
+ </method>
1730
+ <method name="insert_zone"
1731
+ c:identifier="gst_sdp_message_insert_zone"
1732
+ version="1.2">
1733
+ <doc xml:space="preserve">Insert zone parameters into the array of zones in @msg
1734
+ at index @idx.
1735
+ When -1 is given as @idx, the zone is inserted at the end.</doc>
1736
+ <return-value transfer-ownership="none">
1737
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1738
+ <type name="SDPResult" c:type="GstSDPResult"/>
1739
+ </return-value>
1740
+ <parameters>
1741
+ <instance-parameter name="msg" transfer-ownership="none">
1742
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1743
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1744
+ </instance-parameter>
1745
+ <parameter name="idx" transfer-ownership="none">
1746
+ <doc xml:space="preserve">an index @zone a #GstSDPZone</doc>
1747
+ <type name="gint" c:type="gint"/>
1748
+ </parameter>
1749
+ <parameter name="zone" transfer-ownership="none">
1750
+ <type name="SDPZone" c:type="GstSDPZone*"/>
1751
+ </parameter>
1752
+ </parameters>
1753
+ </method>
1754
+ <method name="medias_len" c:identifier="gst_sdp_message_medias_len">
1755
+ <doc xml:space="preserve">Get the number of media descriptions in @msg.</doc>
1756
+ <return-value transfer-ownership="none">
1757
+ <doc xml:space="preserve">the number of media descriptions in @msg.</doc>
1758
+ <type name="guint" c:type="guint"/>
1759
+ </return-value>
1760
+ <parameters>
1761
+ <instance-parameter name="msg" transfer-ownership="none">
1762
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1763
+ <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1764
+ </instance-parameter>
1765
+ </parameters>
1766
+ </method>
1191
1767
  <method name="phones_len" c:identifier="gst_sdp_message_phones_len">
1192
- <doc xml:whitespace="preserve">Get the number of phones in @msg.</doc>
1768
+ <doc xml:space="preserve">Get the number of phones in @msg.</doc>
1193
1769
  <return-value transfer-ownership="none">
1194
- <doc xml:whitespace="preserve">the number of phones in @msg.</doc>
1770
+ <doc xml:space="preserve">the number of phones in @msg.</doc>
1195
1771
  <type name="guint" c:type="guint"/>
1196
1772
  </return-value>
1197
1773
  <parameters>
1198
1774
  <instance-parameter name="msg" transfer-ownership="none">
1199
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
1775
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1200
1776
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1201
1777
  </instance-parameter>
1202
1778
  </parameters>
1203
1779
  </method>
1780
+ <method name="remove_attribute"
1781
+ c:identifier="gst_sdp_message_remove_attribute"
1782
+ version="1.2">
1783
+ <doc xml:space="preserve">Remove the attribute in @msg at index @idx.</doc>
1784
+ <return-value transfer-ownership="none">
1785
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1786
+ <type name="SDPResult" c:type="GstSDPResult"/>
1787
+ </return-value>
1788
+ <parameters>
1789
+ <instance-parameter name="msg" transfer-ownership="none">
1790
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1791
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1792
+ </instance-parameter>
1793
+ <parameter name="idx" transfer-ownership="none">
1794
+ <doc xml:space="preserve">the index</doc>
1795
+ <type name="guint" c:type="guint"/>
1796
+ </parameter>
1797
+ </parameters>
1798
+ </method>
1799
+ <method name="remove_bandwidth"
1800
+ c:identifier="gst_sdp_message_remove_bandwidth"
1801
+ version="1.2">
1802
+ <doc xml:space="preserve">Remove the bandwidth information in @msg at index @idx.</doc>
1803
+ <return-value transfer-ownership="none">
1804
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1805
+ <type name="SDPResult" c:type="GstSDPResult"/>
1806
+ </return-value>
1807
+ <parameters>
1808
+ <instance-parameter name="msg" transfer-ownership="none">
1809
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1810
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1811
+ </instance-parameter>
1812
+ <parameter name="idx" transfer-ownership="none">
1813
+ <doc xml:space="preserve">the bandwidth index</doc>
1814
+ <type name="guint" c:type="guint"/>
1815
+ </parameter>
1816
+ </parameters>
1817
+ </method>
1818
+ <method name="remove_email"
1819
+ c:identifier="gst_sdp_message_remove_email"
1820
+ version="1.2">
1821
+ <doc xml:space="preserve">Remove the email in @msg at index @idx.</doc>
1822
+ <return-value transfer-ownership="none">
1823
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1824
+ <type name="SDPResult" c:type="GstSDPResult"/>
1825
+ </return-value>
1826
+ <parameters>
1827
+ <instance-parameter name="msg" transfer-ownership="none">
1828
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1829
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1830
+ </instance-parameter>
1831
+ <parameter name="idx" transfer-ownership="none">
1832
+ <doc xml:space="preserve">an email index</doc>
1833
+ <type name="guint" c:type="guint"/>
1834
+ </parameter>
1835
+ </parameters>
1836
+ </method>
1837
+ <method name="remove_phone"
1838
+ c:identifier="gst_sdp_message_remove_phone"
1839
+ version="1.2">
1840
+ <doc xml:space="preserve">Remove the phone number in @msg at index @idx.</doc>
1841
+ <return-value transfer-ownership="none">
1842
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1843
+ <type name="SDPResult" c:type="GstSDPResult"/>
1844
+ </return-value>
1845
+ <parameters>
1846
+ <instance-parameter name="msg" transfer-ownership="none">
1847
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1848
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1849
+ </instance-parameter>
1850
+ <parameter name="idx" transfer-ownership="none">
1851
+ <doc xml:space="preserve">a phone index</doc>
1852
+ <type name="guint" c:type="guint"/>
1853
+ </parameter>
1854
+ </parameters>
1855
+ </method>
1856
+ <method name="remove_time"
1857
+ c:identifier="gst_sdp_message_remove_time"
1858
+ version="1.2">
1859
+ <doc xml:space="preserve">Remove the time information in @msg at index @idx.</doc>
1860
+ <return-value transfer-ownership="none">
1861
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1862
+ <type name="SDPResult" c:type="GstSDPResult"/>
1863
+ </return-value>
1864
+ <parameters>
1865
+ <instance-parameter name="msg" transfer-ownership="none">
1866
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1867
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1868
+ </instance-parameter>
1869
+ <parameter name="idx" transfer-ownership="none">
1870
+ <doc xml:space="preserve">the index</doc>
1871
+ <type name="guint" c:type="guint"/>
1872
+ </parameter>
1873
+ </parameters>
1874
+ </method>
1875
+ <method name="remove_zone"
1876
+ c:identifier="gst_sdp_message_remove_zone"
1877
+ version="1.2">
1878
+ <doc xml:space="preserve">Remove the zone information in @msg at index @idx.</doc>
1879
+ <return-value transfer-ownership="none">
1880
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1881
+ <type name="SDPResult" c:type="GstSDPResult"/>
1882
+ </return-value>
1883
+ <parameters>
1884
+ <instance-parameter name="msg" transfer-ownership="none">
1885
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1886
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1887
+ </instance-parameter>
1888
+ <parameter name="idx" transfer-ownership="none">
1889
+ <doc xml:space="preserve">the index</doc>
1890
+ <type name="guint" c:type="guint"/>
1891
+ </parameter>
1892
+ </parameters>
1893
+ </method>
1894
+ <method name="replace_attribute"
1895
+ c:identifier="gst_sdp_message_replace_attribute"
1896
+ version="1.2">
1897
+ <doc xml:space="preserve">Replace the attribute in @msg at index @idx with @attr.</doc>
1898
+ <return-value transfer-ownership="none">
1899
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1900
+ <type name="SDPResult" c:type="GstSDPResult"/>
1901
+ </return-value>
1902
+ <parameters>
1903
+ <instance-parameter name="msg" transfer-ownership="none">
1904
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1905
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1906
+ </instance-parameter>
1907
+ <parameter name="idx" transfer-ownership="none">
1908
+ <doc xml:space="preserve">the index</doc>
1909
+ <type name="guint" c:type="guint"/>
1910
+ </parameter>
1911
+ <parameter name="attr" transfer-ownership="none">
1912
+ <doc xml:space="preserve">a #GstSDPAttribute</doc>
1913
+ <type name="SDPAttribute" c:type="GstSDPAttribute*"/>
1914
+ </parameter>
1915
+ </parameters>
1916
+ </method>
1917
+ <method name="replace_bandwidth"
1918
+ c:identifier="gst_sdp_message_replace_bandwidth"
1919
+ version="1.2">
1920
+ <doc xml:space="preserve">Replace the bandwidth information in @msg at index @idx with @bw.</doc>
1921
+ <return-value transfer-ownership="none">
1922
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1923
+ <type name="SDPResult" c:type="GstSDPResult"/>
1924
+ </return-value>
1925
+ <parameters>
1926
+ <instance-parameter name="msg" transfer-ownership="none">
1927
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1928
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1929
+ </instance-parameter>
1930
+ <parameter name="idx" transfer-ownership="none">
1931
+ <doc xml:space="preserve">the bandwidth index</doc>
1932
+ <type name="guint" c:type="guint"/>
1933
+ </parameter>
1934
+ <parameter name="bw" transfer-ownership="none">
1935
+ <doc xml:space="preserve">the bandwidth</doc>
1936
+ <type name="SDPBandwidth" c:type="GstSDPBandwidth*"/>
1937
+ </parameter>
1938
+ </parameters>
1939
+ </method>
1940
+ <method name="replace_email"
1941
+ c:identifier="gst_sdp_message_replace_email"
1942
+ version="1.2">
1943
+ <doc xml:space="preserve">Replace the email in @msg at index @idx with @email.</doc>
1944
+ <return-value transfer-ownership="none">
1945
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1946
+ <type name="SDPResult" c:type="GstSDPResult"/>
1947
+ </return-value>
1948
+ <parameters>
1949
+ <instance-parameter name="msg" transfer-ownership="none">
1950
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1951
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1952
+ </instance-parameter>
1953
+ <parameter name="idx" transfer-ownership="none">
1954
+ <doc xml:space="preserve">an email index</doc>
1955
+ <type name="guint" c:type="guint"/>
1956
+ </parameter>
1957
+ <parameter name="email" transfer-ownership="none">
1958
+ <doc xml:space="preserve">an email</doc>
1959
+ <type name="utf8" c:type="const gchar*"/>
1960
+ </parameter>
1961
+ </parameters>
1962
+ </method>
1963
+ <method name="replace_phone"
1964
+ c:identifier="gst_sdp_message_replace_phone"
1965
+ version="1.2">
1966
+ <doc xml:space="preserve">Replace the phone number in @msg at index @idx with @phone.</doc>
1967
+ <return-value transfer-ownership="none">
1968
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1969
+ <type name="SDPResult" c:type="GstSDPResult"/>
1970
+ </return-value>
1971
+ <parameters>
1972
+ <instance-parameter name="msg" transfer-ownership="none">
1973
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1974
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1975
+ </instance-parameter>
1976
+ <parameter name="idx" transfer-ownership="none">
1977
+ <doc xml:space="preserve">a phone index</doc>
1978
+ <type name="guint" c:type="guint"/>
1979
+ </parameter>
1980
+ <parameter name="phone" transfer-ownership="none">
1981
+ <doc xml:space="preserve">a phone</doc>
1982
+ <type name="utf8" c:type="const gchar*"/>
1983
+ </parameter>
1984
+ </parameters>
1985
+ </method>
1986
+ <method name="replace_time"
1987
+ c:identifier="gst_sdp_message_replace_time"
1988
+ version="1.2">
1989
+ <doc xml:space="preserve">Replace the time information in @msg at index @idx with @t.</doc>
1990
+ <return-value transfer-ownership="none">
1991
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1992
+ <type name="SDPResult" c:type="GstSDPResult"/>
1993
+ </return-value>
1994
+ <parameters>
1995
+ <instance-parameter name="msg" transfer-ownership="none">
1996
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1997
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
1998
+ </instance-parameter>
1999
+ <parameter name="idx" transfer-ownership="none">
2000
+ <doc xml:space="preserve">the index</doc>
2001
+ <type name="guint" c:type="guint"/>
2002
+ </parameter>
2003
+ <parameter name="t" transfer-ownership="none">
2004
+ <doc xml:space="preserve">a #GstSDPTime</doc>
2005
+ <type name="SDPTime" c:type="GstSDPTime*"/>
2006
+ </parameter>
2007
+ </parameters>
2008
+ </method>
2009
+ <method name="replace_zone"
2010
+ c:identifier="gst_sdp_message_replace_zone"
2011
+ version="1.2">
2012
+ <doc xml:space="preserve">Replace the zone information in @msg at index @idx with @zone.</doc>
2013
+ <return-value transfer-ownership="none">
2014
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
2015
+ <type name="SDPResult" c:type="GstSDPResult"/>
2016
+ </return-value>
2017
+ <parameters>
2018
+ <instance-parameter name="msg" transfer-ownership="none">
2019
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
2020
+ <type name="SDPMessage" c:type="GstSDPMessage*"/>
2021
+ </instance-parameter>
2022
+ <parameter name="idx" transfer-ownership="none">
2023
+ <doc xml:space="preserve">the index</doc>
2024
+ <type name="guint" c:type="guint"/>
2025
+ </parameter>
2026
+ <parameter name="zone" transfer-ownership="none">
2027
+ <doc xml:space="preserve">a #GstSDPZone</doc>
2028
+ <type name="SDPZone" c:type="GstSDPZone*"/>
2029
+ </parameter>
2030
+ </parameters>
2031
+ </method>
1204
2032
  <method name="set_connection"
1205
2033
  c:identifier="gst_sdp_message_set_connection">
1206
- <doc xml:whitespace="preserve">Configure the SDP connection in @msg with the given parameters.</doc>
2034
+ <doc xml:space="preserve">Configure the SDP connection in @msg with the given parameters.</doc>
1207
2035
  <return-value transfer-ownership="none">
1208
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2036
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1209
2037
  <type name="SDPResult" c:type="GstSDPResult"/>
1210
2038
  </return-value>
1211
2039
  <parameters>
1212
2040
  <instance-parameter name="msg" transfer-ownership="none">
1213
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2041
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1214
2042
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1215
2043
  </instance-parameter>
1216
2044
  <parameter name="nettype" transfer-ownership="none">
1217
- <doc xml:whitespace="preserve">the type of network. "IN" is defined to have the meaning "Internet".</doc>
2045
+ <doc xml:space="preserve">the type of network. "IN" is defined to have the meaning "Internet".</doc>
1218
2046
  <type name="utf8" c:type="const gchar*"/>
1219
2047
  </parameter>
1220
2048
  <parameter name="addrtype" transfer-ownership="none">
1221
- <doc xml:whitespace="preserve">the type of address.</doc>
2049
+ <doc xml:space="preserve">the type of address.</doc>
1222
2050
  <type name="utf8" c:type="const gchar*"/>
1223
2051
  </parameter>
1224
2052
  <parameter name="address" transfer-ownership="none">
1225
- <doc xml:whitespace="preserve">the address</doc>
2053
+ <doc xml:space="preserve">the address</doc>
1226
2054
  <type name="utf8" c:type="const gchar*"/>
1227
2055
  </parameter>
1228
2056
  <parameter name="ttl" transfer-ownership="none">
1229
- <doc xml:whitespace="preserve">the time to live of the address</doc>
2057
+ <doc xml:space="preserve">the time to live of the address</doc>
1230
2058
  <type name="guint" c:type="guint"/>
1231
2059
  </parameter>
1232
2060
  <parameter name="addr_number" transfer-ownership="none">
1233
- <doc xml:whitespace="preserve">the number of layers</doc>
2061
+ <doc xml:space="preserve">the number of layers</doc>
1234
2062
  <type name="guint" c:type="guint"/>
1235
2063
  </parameter>
1236
2064
  </parameters>
1237
2065
  </method>
1238
2066
  <method name="set_information"
1239
2067
  c:identifier="gst_sdp_message_set_information">
1240
- <doc xml:whitespace="preserve">Set the information in @msg.</doc>
2068
+ <doc xml:space="preserve">Set the information in @msg.</doc>
1241
2069
  <return-value transfer-ownership="none">
1242
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2070
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1243
2071
  <type name="SDPResult" c:type="GstSDPResult"/>
1244
2072
  </return-value>
1245
2073
  <parameters>
1246
2074
  <instance-parameter name="msg" transfer-ownership="none">
1247
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2075
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1248
2076
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1249
2077
  </instance-parameter>
1250
2078
  <parameter name="information" transfer-ownership="none">
1251
- <doc xml:whitespace="preserve">the information</doc>
2079
+ <doc xml:space="preserve">the information</doc>
1252
2080
  <type name="utf8" c:type="const gchar*"/>
1253
2081
  </parameter>
1254
2082
  </parameters>
1255
2083
  </method>
1256
2084
  <method name="set_key" c:identifier="gst_sdp_message_set_key">
1257
- <doc xml:whitespace="preserve">Adds the encryption information to @msg.</doc>
2085
+ <doc xml:space="preserve">Adds the encryption information to @msg.</doc>
1258
2086
  <return-value transfer-ownership="none">
1259
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2087
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1260
2088
  <type name="SDPResult" c:type="GstSDPResult"/>
1261
2089
  </return-value>
1262
2090
  <parameters>
1263
2091
  <instance-parameter name="msg" transfer-ownership="none">
1264
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2092
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1265
2093
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1266
2094
  </instance-parameter>
1267
2095
  <parameter name="type" transfer-ownership="none">
1268
- <doc xml:whitespace="preserve">the encryption type</doc>
2096
+ <doc xml:space="preserve">the encryption type</doc>
1269
2097
  <type name="utf8" c:type="const gchar*"/>
1270
2098
  </parameter>
1271
2099
  <parameter name="data" transfer-ownership="none">
1272
- <doc xml:whitespace="preserve">the encryption data</doc>
2100
+ <doc xml:space="preserve">the encryption data</doc>
1273
2101
  <type name="utf8" c:type="const gchar*"/>
1274
2102
  </parameter>
1275
2103
  </parameters>
1276
2104
  </method>
1277
2105
  <method name="set_origin" c:identifier="gst_sdp_message_set_origin">
1278
- <doc xml:whitespace="preserve">Configure the SDP origin in @msg with the given parameters.</doc>
2106
+ <doc xml:space="preserve">Configure the SDP origin in @msg with the given parameters.</doc>
1279
2107
  <return-value transfer-ownership="none">
1280
- <doc xml:whitespace="preserve">#GST_SDP_OK.</doc>
2108
+ <doc xml:space="preserve">#GST_SDP_OK.</doc>
1281
2109
  <type name="SDPResult" c:type="GstSDPResult"/>
1282
2110
  </return-value>
1283
2111
  <parameters>
1284
2112
  <instance-parameter name="msg" transfer-ownership="none">
1285
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2113
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1286
2114
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1287
2115
  </instance-parameter>
1288
2116
  <parameter name="username" transfer-ownership="none">
1289
- <doc xml:whitespace="preserve">the user name</doc>
2117
+ <doc xml:space="preserve">the user name</doc>
1290
2118
  <type name="utf8" c:type="const gchar*"/>
1291
2119
  </parameter>
1292
2120
  <parameter name="sess_id" transfer-ownership="none">
1293
- <doc xml:whitespace="preserve">a session id</doc>
2121
+ <doc xml:space="preserve">a session id</doc>
1294
2122
  <type name="utf8" c:type="const gchar*"/>
1295
2123
  </parameter>
1296
2124
  <parameter name="sess_version" transfer-ownership="none">
1297
- <doc xml:whitespace="preserve">a session version</doc>
2125
+ <doc xml:space="preserve">a session version</doc>
1298
2126
  <type name="utf8" c:type="const gchar*"/>
1299
2127
  </parameter>
1300
2128
  <parameter name="nettype" transfer-ownership="none">
1301
- <doc xml:whitespace="preserve">a network type</doc>
2129
+ <doc xml:space="preserve">a network type</doc>
1302
2130
  <type name="utf8" c:type="const gchar*"/>
1303
2131
  </parameter>
1304
2132
  <parameter name="addrtype" transfer-ownership="none">
1305
- <doc xml:whitespace="preserve">an address type</doc>
2133
+ <doc xml:space="preserve">an address type</doc>
1306
2134
  <type name="utf8" c:type="const gchar*"/>
1307
2135
  </parameter>
1308
2136
  <parameter name="addr" transfer-ownership="none">
1309
- <doc xml:whitespace="preserve">an address</doc>
2137
+ <doc xml:space="preserve">an address</doc>
1310
2138
  <type name="utf8" c:type="const gchar*"/>
1311
2139
  </parameter>
1312
2140
  </parameters>
1313
2141
  </method>
1314
2142
  <method name="set_session_name"
1315
2143
  c:identifier="gst_sdp_message_set_session_name">
1316
- <doc xml:whitespace="preserve">Set the session name in @msg.</doc>
2144
+ <doc xml:space="preserve">Set the session name in @msg.</doc>
1317
2145
  <return-value transfer-ownership="none">
1318
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2146
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1319
2147
  <type name="SDPResult" c:type="GstSDPResult"/>
1320
2148
  </return-value>
1321
2149
  <parameters>
1322
2150
  <instance-parameter name="msg" transfer-ownership="none">
1323
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2151
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1324
2152
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1325
2153
  </instance-parameter>
1326
2154
  <parameter name="session_name" transfer-ownership="none">
1327
- <doc xml:whitespace="preserve">the session name</doc>
2155
+ <doc xml:space="preserve">the session name</doc>
1328
2156
  <type name="utf8" c:type="const gchar*"/>
1329
2157
  </parameter>
1330
2158
  </parameters>
1331
2159
  </method>
1332
2160
  <method name="set_uri" c:identifier="gst_sdp_message_set_uri">
1333
- <doc xml:whitespace="preserve">Set the URI in @msg.</doc>
2161
+ <doc xml:space="preserve">Set the URI in @msg.</doc>
1334
2162
  <return-value transfer-ownership="none">
1335
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2163
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1336
2164
  <type name="SDPResult" c:type="GstSDPResult"/>
1337
2165
  </return-value>
1338
2166
  <parameters>
1339
2167
  <instance-parameter name="msg" transfer-ownership="none">
1340
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2168
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1341
2169
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1342
2170
  </instance-parameter>
1343
2171
  <parameter name="uri" transfer-ownership="none">
1344
- <doc xml:whitespace="preserve">the URI</doc>
2172
+ <doc xml:space="preserve">the URI</doc>
1345
2173
  <type name="utf8" c:type="const gchar*"/>
1346
2174
  </parameter>
1347
2175
  </parameters>
1348
2176
  </method>
1349
2177
  <method name="set_version" c:identifier="gst_sdp_message_set_version">
1350
- <doc xml:whitespace="preserve">Set the version in @msg.</doc>
2178
+ <doc xml:space="preserve">Set the version in @msg.</doc>
1351
2179
  <return-value transfer-ownership="none">
1352
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2180
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1353
2181
  <type name="SDPResult" c:type="GstSDPResult"/>
1354
2182
  </return-value>
1355
2183
  <parameters>
1356
2184
  <instance-parameter name="msg" transfer-ownership="none">
1357
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2185
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1358
2186
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1359
2187
  </instance-parameter>
1360
2188
  <parameter name="version" transfer-ownership="none">
1361
- <doc xml:whitespace="preserve">the version</doc>
2189
+ <doc xml:space="preserve">the version</doc>
1362
2190
  <type name="utf8" c:type="const gchar*"/>
1363
2191
  </parameter>
1364
2192
  </parameters>
1365
2193
  </method>
1366
2194
  <method name="times_len" c:identifier="gst_sdp_message_times_len">
1367
- <doc xml:whitespace="preserve">Get the number of time information entries in @msg.</doc>
2195
+ <doc xml:space="preserve">Get the number of time information entries in @msg.</doc>
1368
2196
  <return-value transfer-ownership="none">
1369
- <doc xml:whitespace="preserve">the number of time information entries in @msg.</doc>
2197
+ <doc xml:space="preserve">the number of time information entries in @msg.</doc>
1370
2198
  <type name="guint" c:type="guint"/>
1371
2199
  </return-value>
1372
2200
  <parameters>
1373
2201
  <instance-parameter name="msg" transfer-ownership="none">
1374
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2202
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1375
2203
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1376
2204
  </instance-parameter>
1377
2205
  </parameters>
1378
2206
  </method>
1379
2207
  <method name="uninit" c:identifier="gst_sdp_message_uninit">
1380
- <doc xml:whitespace="preserve">Free all resources allocated in @msg. @msg should not be used anymore after
2208
+ <doc xml:space="preserve">Free all resources allocated in @msg. @msg should not be used anymore after
1381
2209
  this function. This function should be used when @msg was allocated on the
1382
2210
  stack and initialized with gst_sdp_message_init().</doc>
1383
2211
  <return-value transfer-ownership="none">
1384
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2212
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1385
2213
  <type name="SDPResult" c:type="GstSDPResult"/>
1386
2214
  </return-value>
1387
2215
  <parameters>
1388
2216
  <instance-parameter name="msg" transfer-ownership="none">
1389
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2217
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1390
2218
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1391
2219
  </instance-parameter>
1392
2220
  </parameters>
1393
2221
  </method>
1394
2222
  <method name="zones_len" c:identifier="gst_sdp_message_zones_len">
1395
- <doc xml:whitespace="preserve">Get the number of time zone information entries in @msg.</doc>
2223
+ <doc xml:space="preserve">Get the number of time zone information entries in @msg.</doc>
1396
2224
  <return-value transfer-ownership="none">
1397
- <doc xml:whitespace="preserve">the number of time zone information entries in @msg.</doc>
2225
+ <doc xml:space="preserve">the number of time zone information entries in @msg.</doc>
1398
2226
  <type name="guint" c:type="guint"/>
1399
2227
  </return-value>
1400
2228
  <parameters>
1401
2229
  <instance-parameter name="msg" transfer-ownership="none">
1402
- <doc xml:whitespace="preserve">a #GstSDPMessage</doc>
2230
+ <doc xml:space="preserve">a #GstSDPMessage</doc>
1403
2231
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1404
2232
  </instance-parameter>
1405
2233
  </parameters>
1406
2234
  </method>
1407
2235
  <function name="as_uri" c:identifier="gst_sdp_message_as_uri">
1408
- <doc xml:whitespace="preserve">Creates a uri from @msg with the given @scheme. The uri has the format:
2236
+ <doc xml:space="preserve">Creates a uri from @msg with the given @scheme. The uri has the format:
1409
2237
 
1410
2238
 
1411
2239
  Where each value is url encoded.</doc>
1412
2240
  <return-value transfer-ownership="full">
1413
- <doc xml:whitespace="preserve">a uri for @msg.</doc>
2241
+ <doc xml:space="preserve">a uri for @msg.</doc>
1414
2242
  <type name="utf8" c:type="gchar*"/>
1415
2243
  </return-value>
1416
2244
  <parameters>
1417
2245
  <parameter name="scheme" transfer-ownership="none">
1418
- <doc xml:whitespace="preserve">///[#type=value *[&amp;type=value]]</doc>
2246
+ <doc xml:space="preserve">///[#type=value *[&amp;type=value]]</doc>
1419
2247
  <type name="utf8" c:type="const gchar*"/>
1420
2248
  </parameter>
1421
2249
  <parameter name="msg" transfer-ownership="none">
1422
- <doc xml:whitespace="preserve">the #GstSDPMessage</doc>
2250
+ <doc xml:space="preserve">the #GstSDPMessage</doc>
1423
2251
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1424
2252
  </parameter>
1425
2253
  </parameters>
1426
2254
  </function>
1427
2255
  <function name="new" c:identifier="gst_sdp_message_new">
1428
- <doc xml:whitespace="preserve">Allocate a new GstSDPMessage and store the result in @msg.</doc>
2256
+ <doc xml:space="preserve">Allocate a new GstSDPMessage and store the result in @msg.</doc>
1429
2257
  <return-value transfer-ownership="none">
1430
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2258
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1431
2259
  <type name="SDPResult" c:type="GstSDPResult"/>
1432
2260
  </return-value>
1433
2261
  <parameters>
@@ -1435,36 +2263,36 @@ stack and initialized with gst_sdp_message_init().</doc>
1435
2263
  direction="out"
1436
2264
  caller-allocates="0"
1437
2265
  transfer-ownership="full">
1438
- <doc xml:whitespace="preserve">pointer to new #GstSDPMessage</doc>
2266
+ <doc xml:space="preserve">pointer to new #GstSDPMessage</doc>
1439
2267
  <type name="SDPMessage" c:type="GstSDPMessage**"/>
1440
2268
  </parameter>
1441
2269
  </parameters>
1442
2270
  </function>
1443
2271
  <function name="parse_buffer"
1444
2272
  c:identifier="gst_sdp_message_parse_buffer">
1445
- <doc xml:whitespace="preserve">Parse the contents of @size bytes pointed to by @data and store the result in
2273
+ <doc xml:space="preserve">Parse the contents of @size bytes pointed to by @data and store the result in
1446
2274
  @msg.</doc>
1447
2275
  <return-value transfer-ownership="none">
1448
- <doc xml:whitespace="preserve">#GST_SDP_OK on success.</doc>
2276
+ <doc xml:space="preserve">#GST_SDP_OK on success.</doc>
1449
2277
  <type name="SDPResult" c:type="GstSDPResult"/>
1450
2278
  </return-value>
1451
2279
  <parameters>
1452
2280
  <parameter name="data" transfer-ownership="none">
1453
- <doc xml:whitespace="preserve">the start of the buffer</doc>
2281
+ <doc xml:space="preserve">the start of the buffer</doc>
1454
2282
  <type name="guint8" c:type="const guint8*"/>
1455
2283
  </parameter>
1456
2284
  <parameter name="size" transfer-ownership="none">
1457
- <doc xml:whitespace="preserve">the size of the buffer</doc>
2285
+ <doc xml:space="preserve">the size of the buffer</doc>
1458
2286
  <type name="guint" c:type="guint"/>
1459
2287
  </parameter>
1460
2288
  <parameter name="msg" transfer-ownership="none">
1461
- <doc xml:whitespace="preserve">the result #GstSDPMessage</doc>
2289
+ <doc xml:space="preserve">the result #GstSDPMessage</doc>
1462
2290
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1463
2291
  </parameter>
1464
2292
  </parameters>
1465
2293
  </function>
1466
2294
  <function name="parse_uri" c:identifier="gst_sdp_message_parse_uri">
1467
- <doc xml:whitespace="preserve">Parse the null-terminated @uri and store the result in @msg.
2295
+ <doc xml:space="preserve">Parse the null-terminated @uri and store the result in @msg.
1468
2296
 
1469
2297
  The uri should be of the form:
1470
2298
 
@@ -1474,23 +2302,23 @@ The uri should be of the form:
1474
2302
  where value is url encoded. This looslely resembles
1475
2303
  http://tools.ietf.org/html/draft-fujikawa-sdp-url-01</doc>
1476
2304
  <return-value transfer-ownership="none">
1477
- <doc xml:whitespace="preserve">#GST_SDP_OK on success.</doc>
2305
+ <doc xml:space="preserve">#GST_SDP_OK on success.</doc>
1478
2306
  <type name="SDPResult" c:type="GstSDPResult"/>
1479
2307
  </return-value>
1480
2308
  <parameters>
1481
2309
  <parameter name="uri" transfer-ownership="none">
1482
- <doc xml:whitespace="preserve">the start of the uri</doc>
2310
+ <doc xml:space="preserve">the start of the uri</doc>
1483
2311
  <type name="utf8" c:type="const gchar*"/>
1484
2312
  </parameter>
1485
2313
  <parameter name="msg" transfer-ownership="none">
1486
- <doc xml:whitespace="preserve">the result #GstSDPMessage</doc>
2314
+ <doc xml:space="preserve">the result #GstSDPMessage</doc>
1487
2315
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1488
2316
  </parameter>
1489
2317
  </parameters>
1490
2318
  </function>
1491
2319
  </record>
1492
2320
  <record name="SDPOrigin" c:type="GstSDPOrigin">
1493
- <doc xml:whitespace="preserve">The contents of the SDP "o=" field which gives the originator of the session
2321
+ <doc xml:space="preserve">The contents of the SDP "o=" field which gives the originator of the session
1494
2322
  (their username and the address of the user's host) plus a session id and
1495
2323
  session version number.</doc>
1496
2324
  <field name="username" writable="1">
@@ -1513,16 +2341,16 @@ session version number.</doc>
1513
2341
  </field>
1514
2342
  </record>
1515
2343
  <enumeration name="SDPResult" c:type="GstSDPResult">
1516
- <doc xml:whitespace="preserve">Return values for the SDP functions.</doc>
2344
+ <doc xml:space="preserve">Return values for the SDP functions.</doc>
1517
2345
  <member name="ok" value="0" c:identifier="GST_SDP_OK">
1518
- <doc xml:whitespace="preserve">A successful return value</doc>
2346
+ <doc xml:space="preserve">A successful return value</doc>
1519
2347
  </member>
1520
2348
  <member name="einval" value="-1" c:identifier="GST_SDP_EINVAL">
1521
- <doc xml:whitespace="preserve">a function was given invalid parameters</doc>
2349
+ <doc xml:space="preserve">a function was given invalid parameters</doc>
1522
2350
  </member>
1523
2351
  </enumeration>
1524
2352
  <record name="SDPTime" c:type="GstSDPTime">
1525
- <doc xml:whitespace="preserve">The contents of the SDP "t=" field which specify the start and stop times for
2353
+ <doc xml:space="preserve">The contents of the SDP "t=" field which specify the start and stop times for
1526
2354
  a conference session.</doc>
1527
2355
  <field name="start" writable="1">
1528
2356
  <type name="utf8" c:type="gchar*"/>
@@ -1535,9 +2363,49 @@ a conference session.</doc>
1535
2363
  <type name="gpointer" c:type="gpointer"/>
1536
2364
  </array>
1537
2365
  </field>
2366
+ <method name="clear" c:identifier="gst_sdp_time_clear" version="1.2">
2367
+ <doc xml:space="preserve">Reset the time information in @t.</doc>
2368
+ <return-value transfer-ownership="none">
2369
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
2370
+ <type name="SDPResult" c:type="GstSDPResult"/>
2371
+ </return-value>
2372
+ <parameters>
2373
+ <instance-parameter name="t" transfer-ownership="none">
2374
+ <doc xml:space="preserve">a #GstSDPTime</doc>
2375
+ <type name="SDPTime" c:type="GstSDPTime*"/>
2376
+ </instance-parameter>
2377
+ </parameters>
2378
+ </method>
2379
+ <method name="set" c:identifier="gst_sdp_time_set" version="1.2">
2380
+ <doc xml:space="preserve">Set time information @start, @stop and @repeat in @t.</doc>
2381
+ <return-value transfer-ownership="none">
2382
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
2383
+ <type name="SDPResult" c:type="GstSDPResult"/>
2384
+ </return-value>
2385
+ <parameters>
2386
+ <instance-parameter name="t" transfer-ownership="none">
2387
+ <doc xml:space="preserve">a #GstSDPTime</doc>
2388
+ <type name="SDPTime" c:type="GstSDPTime*"/>
2389
+ </instance-parameter>
2390
+ <parameter name="start" transfer-ownership="none">
2391
+ <doc xml:space="preserve">the start time</doc>
2392
+ <type name="utf8" c:type="const gchar*"/>
2393
+ </parameter>
2394
+ <parameter name="stop" transfer-ownership="none">
2395
+ <doc xml:space="preserve">the stop time</doc>
2396
+ <type name="utf8" c:type="const gchar*"/>
2397
+ </parameter>
2398
+ <parameter name="repeat" transfer-ownership="none">
2399
+ <doc xml:space="preserve">the repeat times</doc>
2400
+ <array zero-terminated="0" c:type="gchar**">
2401
+ <type name="utf8" c:type="gchar*"/>
2402
+ </array>
2403
+ </parameter>
2404
+ </parameters>
2405
+ </method>
1538
2406
  </record>
1539
2407
  <record name="SDPZone" c:type="GstSDPZone">
1540
- <doc xml:whitespace="preserve">The contents of the SDP "z=" field which allows the sender to
2408
+ <doc xml:space="preserve">The contents of the SDP "z=" field which allows the sender to
1541
2409
  specify a list of time zone adjustments and offsets from the base
1542
2410
  time.</doc>
1543
2411
  <field name="time" writable="1">
@@ -1546,51 +2414,85 @@ time.</doc>
1546
2414
  <field name="typed_time" writable="1">
1547
2415
  <type name="utf8" c:type="gchar*"/>
1548
2416
  </field>
2417
+ <method name="clear" c:identifier="gst_sdp_zone_clear" version="1.2">
2418
+ <doc xml:space="preserve">Reset the zone information in @zone.</doc>
2419
+ <return-value transfer-ownership="none">
2420
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
2421
+ <type name="SDPResult" c:type="GstSDPResult"/>
2422
+ </return-value>
2423
+ <parameters>
2424
+ <instance-parameter name="zone" transfer-ownership="none">
2425
+ <doc xml:space="preserve">a #GstSDPZone</doc>
2426
+ <type name="SDPZone" c:type="GstSDPZone*"/>
2427
+ </instance-parameter>
2428
+ </parameters>
2429
+ </method>
2430
+ <method name="set" c:identifier="gst_sdp_zone_set" version="1.2">
2431
+ <doc xml:space="preserve">Set zone information in @zone.</doc>
2432
+ <return-value transfer-ownership="none">
2433
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
2434
+ <type name="SDPResult" c:type="GstSDPResult"/>
2435
+ </return-value>
2436
+ <parameters>
2437
+ <instance-parameter name="zone" transfer-ownership="none">
2438
+ <doc xml:space="preserve">a #GstSDPZone</doc>
2439
+ <type name="SDPZone" c:type="GstSDPZone*"/>
2440
+ </instance-parameter>
2441
+ <parameter name="adj_time" transfer-ownership="none">
2442
+ <doc xml:space="preserve">the NTP time that a time zone adjustment happens</doc>
2443
+ <type name="utf8" c:type="const gchar*"/>
2444
+ </parameter>
2445
+ <parameter name="typed_time" transfer-ownership="none">
2446
+ <doc xml:space="preserve">the offset from the time when the session was first scheduled</doc>
2447
+ <type name="utf8" c:type="const gchar*"/>
2448
+ </parameter>
2449
+ </parameters>
2450
+ </method>
1549
2451
  </record>
1550
2452
  <constant name="SDP_BWTYPE_AS" value="AS" c:type="GST_SDP_BWTYPE_AS">
1551
- <doc xml:whitespace="preserve">The Application-Specific Maximum bandwidth modifier.</doc>
2453
+ <doc xml:space="preserve">The Application-Specific Maximum bandwidth modifier.</doc>
1552
2454
  <type name="utf8" c:type="gchar*"/>
1553
2455
  </constant>
1554
2456
  <constant name="SDP_BWTYPE_CT" value="CT" c:type="GST_SDP_BWTYPE_CT">
1555
- <doc xml:whitespace="preserve">The Conference Total bandwidth modifier.</doc>
2457
+ <doc xml:space="preserve">The Conference Total bandwidth modifier.</doc>
1556
2458
  <type name="utf8" c:type="gchar*"/>
1557
2459
  </constant>
1558
2460
  <constant name="SDP_BWTYPE_EXT_PREFIX"
1559
2461
  value="X-"
1560
2462
  c:type="GST_SDP_BWTYPE_EXT_PREFIX">
1561
- <doc xml:whitespace="preserve">The extension prefix bandwidth modifier.</doc>
2463
+ <doc xml:space="preserve">The extension prefix bandwidth modifier.</doc>
1562
2464
  <type name="utf8" c:type="gchar*"/>
1563
2465
  </constant>
1564
2466
  <constant name="SDP_BWTYPE_RR" value="RR" c:type="GST_SDP_BWTYPE_RR">
1565
- <doc xml:whitespace="preserve">RTCP bandwidth allocated to data receivers (RFC 3556).</doc>
2467
+ <doc xml:space="preserve">RTCP bandwidth allocated to data receivers (RFC 3556).</doc>
1566
2468
  <type name="utf8" c:type="gchar*"/>
1567
2469
  </constant>
1568
2470
  <constant name="SDP_BWTYPE_RS" value="RS" c:type="GST_SDP_BWTYPE_RS">
1569
- <doc xml:whitespace="preserve">RTCP bandwidth allocated to active data senders (RFC 3556).</doc>
2471
+ <doc xml:space="preserve">RTCP bandwidth allocated to active data senders (RFC 3556).</doc>
1570
2472
  <type name="utf8" c:type="gchar*"/>
1571
2473
  </constant>
1572
2474
  <constant name="SDP_BWTYPE_TIAS" value="TIAS" c:type="GST_SDP_BWTYPE_TIAS">
1573
- <doc xml:whitespace="preserve">Transport Independent Application Specific Maximum bandwidth (RFC 3890).</doc>
2475
+ <doc xml:space="preserve">Transport Independent Application Specific Maximum bandwidth (RFC 3890).</doc>
1574
2476
  <type name="utf8" c:type="gchar*"/>
1575
2477
  </constant>
1576
2478
  <function name="sdp_address_is_multicast"
1577
2479
  c:identifier="gst_sdp_address_is_multicast">
1578
- <doc xml:whitespace="preserve">Check if the given @addr is a multicast address.</doc>
2480
+ <doc xml:space="preserve">Check if the given @addr is a multicast address.</doc>
1579
2481
  <return-value transfer-ownership="none">
1580
- <doc xml:whitespace="preserve">TRUE when @addr is multicast.</doc>
2482
+ <doc xml:space="preserve">TRUE when @addr is multicast.</doc>
1581
2483
  <type name="gboolean" c:type="gboolean"/>
1582
2484
  </return-value>
1583
2485
  <parameters>
1584
2486
  <parameter name="nettype" transfer-ownership="none">
1585
- <doc xml:whitespace="preserve">a network type</doc>
2487
+ <doc xml:space="preserve">a network type</doc>
1586
2488
  <type name="utf8" c:type="const gchar*"/>
1587
2489
  </parameter>
1588
2490
  <parameter name="addrtype" transfer-ownership="none">
1589
- <doc xml:whitespace="preserve">an address type</doc>
2491
+ <doc xml:space="preserve">an address type</doc>
1590
2492
  <type name="utf8" c:type="const gchar*"/>
1591
2493
  </parameter>
1592
2494
  <parameter name="addr" transfer-ownership="none">
1593
- <doc xml:whitespace="preserve">an address</doc>
2495
+ <doc xml:space="preserve">an address</doc>
1594
2496
  <type name="utf8" c:type="const gchar*"/>
1595
2497
  </parameter>
1596
2498
  </parameters>
@@ -1598,9 +2500,9 @@ time.</doc>
1598
2500
  <function name="sdp_media_new"
1599
2501
  c:identifier="gst_sdp_media_new"
1600
2502
  moved-to="SDPMedia.new">
1601
- <doc xml:whitespace="preserve">Allocate a new GstSDPMedia and store the result in @media.</doc>
2503
+ <doc xml:space="preserve">Allocate a new GstSDPMedia and store the result in @media.</doc>
1602
2504
  <return-value transfer-ownership="none">
1603
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2505
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1604
2506
  <type name="SDPResult" c:type="GstSDPResult"/>
1605
2507
  </return-value>
1606
2508
  <parameters>
@@ -1608,7 +2510,7 @@ time.</doc>
1608
2510
  direction="out"
1609
2511
  caller-allocates="0"
1610
2512
  transfer-ownership="full">
1611
- <doc xml:whitespace="preserve">pointer to new #GstSDPMedia</doc>
2513
+ <doc xml:space="preserve">pointer to new #GstSDPMedia</doc>
1612
2514
  <type name="SDPMedia" c:type="GstSDPMedia**"/>
1613
2515
  </parameter>
1614
2516
  </parameters>
@@ -1616,21 +2518,21 @@ time.</doc>
1616
2518
  <function name="sdp_message_as_uri"
1617
2519
  c:identifier="gst_sdp_message_as_uri"
1618
2520
  moved-to="SDPMessage.as_uri">
1619
- <doc xml:whitespace="preserve">Creates a uri from @msg with the given @scheme. The uri has the format:
2521
+ <doc xml:space="preserve">Creates a uri from @msg with the given @scheme. The uri has the format:
1620
2522
 
1621
2523
 
1622
2524
  Where each value is url encoded.</doc>
1623
2525
  <return-value transfer-ownership="full">
1624
- <doc xml:whitespace="preserve">a uri for @msg.</doc>
2526
+ <doc xml:space="preserve">a uri for @msg.</doc>
1625
2527
  <type name="utf8" c:type="gchar*"/>
1626
2528
  </return-value>
1627
2529
  <parameters>
1628
2530
  <parameter name="scheme" transfer-ownership="none">
1629
- <doc xml:whitespace="preserve">///[#type=value *[&amp;type=value]]</doc>
2531
+ <doc xml:space="preserve">///[#type=value *[&amp;type=value]]</doc>
1630
2532
  <type name="utf8" c:type="const gchar*"/>
1631
2533
  </parameter>
1632
2534
  <parameter name="msg" transfer-ownership="none">
1633
- <doc xml:whitespace="preserve">the #GstSDPMessage</doc>
2535
+ <doc xml:space="preserve">the #GstSDPMessage</doc>
1634
2536
  <type name="SDPMessage" c:type="const GstSDPMessage*"/>
1635
2537
  </parameter>
1636
2538
  </parameters>
@@ -1638,9 +2540,9 @@ time.</doc>
1638
2540
  <function name="sdp_message_new"
1639
2541
  c:identifier="gst_sdp_message_new"
1640
2542
  moved-to="SDPMessage.new">
1641
- <doc xml:whitespace="preserve">Allocate a new GstSDPMessage and store the result in @msg.</doc>
2543
+ <doc xml:space="preserve">Allocate a new GstSDPMessage and store the result in @msg.</doc>
1642
2544
  <return-value transfer-ownership="none">
1643
- <doc xml:whitespace="preserve">a #GstSDPResult.</doc>
2545
+ <doc xml:space="preserve">a #GstSDPResult.</doc>
1644
2546
  <type name="SDPResult" c:type="GstSDPResult"/>
1645
2547
  </return-value>
1646
2548
  <parameters>
@@ -1648,7 +2550,7 @@ time.</doc>
1648
2550
  direction="out"
1649
2551
  caller-allocates="0"
1650
2552
  transfer-ownership="full">
1651
- <doc xml:whitespace="preserve">pointer to new #GstSDPMessage</doc>
2553
+ <doc xml:space="preserve">pointer to new #GstSDPMessage</doc>
1652
2554
  <type name="SDPMessage" c:type="GstSDPMessage**"/>
1653
2555
  </parameter>
1654
2556
  </parameters>
@@ -1656,23 +2558,23 @@ time.</doc>
1656
2558
  <function name="sdp_message_parse_buffer"
1657
2559
  c:identifier="gst_sdp_message_parse_buffer"
1658
2560
  moved-to="SDPMessage.parse_buffer">
1659
- <doc xml:whitespace="preserve">Parse the contents of @size bytes pointed to by @data and store the result in
2561
+ <doc xml:space="preserve">Parse the contents of @size bytes pointed to by @data and store the result in
1660
2562
  @msg.</doc>
1661
2563
  <return-value transfer-ownership="none">
1662
- <doc xml:whitespace="preserve">#GST_SDP_OK on success.</doc>
2564
+ <doc xml:space="preserve">#GST_SDP_OK on success.</doc>
1663
2565
  <type name="SDPResult" c:type="GstSDPResult"/>
1664
2566
  </return-value>
1665
2567
  <parameters>
1666
2568
  <parameter name="data" transfer-ownership="none">
1667
- <doc xml:whitespace="preserve">the start of the buffer</doc>
2569
+ <doc xml:space="preserve">the start of the buffer</doc>
1668
2570
  <type name="guint8" c:type="const guint8*"/>
1669
2571
  </parameter>
1670
2572
  <parameter name="size" transfer-ownership="none">
1671
- <doc xml:whitespace="preserve">the size of the buffer</doc>
2573
+ <doc xml:space="preserve">the size of the buffer</doc>
1672
2574
  <type name="guint" c:type="guint"/>
1673
2575
  </parameter>
1674
2576
  <parameter name="msg" transfer-ownership="none">
1675
- <doc xml:whitespace="preserve">the result #GstSDPMessage</doc>
2577
+ <doc xml:space="preserve">the result #GstSDPMessage</doc>
1676
2578
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1677
2579
  </parameter>
1678
2580
  </parameters>
@@ -1680,7 +2582,7 @@ time.</doc>
1680
2582
  <function name="sdp_message_parse_uri"
1681
2583
  c:identifier="gst_sdp_message_parse_uri"
1682
2584
  moved-to="SDPMessage.parse_uri">
1683
- <doc xml:whitespace="preserve">Parse the null-terminated @uri and store the result in @msg.
2585
+ <doc xml:space="preserve">Parse the null-terminated @uri and store the result in @msg.
1684
2586
 
1685
2587
  The uri should be of the form:
1686
2588
 
@@ -1690,16 +2592,16 @@ The uri should be of the form:
1690
2592
  where value is url encoded. This looslely resembles
1691
2593
  http://tools.ietf.org/html/draft-fujikawa-sdp-url-01</doc>
1692
2594
  <return-value transfer-ownership="none">
1693
- <doc xml:whitespace="preserve">#GST_SDP_OK on success.</doc>
2595
+ <doc xml:space="preserve">#GST_SDP_OK on success.</doc>
1694
2596
  <type name="SDPResult" c:type="GstSDPResult"/>
1695
2597
  </return-value>
1696
2598
  <parameters>
1697
2599
  <parameter name="uri" transfer-ownership="none">
1698
- <doc xml:whitespace="preserve">the start of the uri</doc>
2600
+ <doc xml:space="preserve">the start of the uri</doc>
1699
2601
  <type name="utf8" c:type="const gchar*"/>
1700
2602
  </parameter>
1701
2603
  <parameter name="msg" transfer-ownership="none">
1702
- <doc xml:whitespace="preserve">the result #GstSDPMessage</doc>
2604
+ <doc xml:space="preserve">the result #GstSDPMessage</doc>
1703
2605
  <type name="SDPMessage" c:type="GstSDPMessage*"/>
1704
2606
  </parameter>
1705
2607
  </parameters>