gstreamer 1.1.0-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 (1897) hide show
  1. data/README +33 -0
  2. data/Rakefile +213 -0
  3. data/ext/gstreamer/depend +5 -0
  4. data/ext/gstreamer/extconf.rb +69 -0
  5. data/ext/gstreamer/misc.c +63 -0
  6. data/ext/gstreamer/rbgst-bin.c +458 -0
  7. data/ext/gstreamer/rbgst-buffer.c +365 -0
  8. data/ext/gstreamer/rbgst-bus.c +92 -0
  9. data/ext/gstreamer/rbgst-caps.c +448 -0
  10. data/ext/gstreamer/rbgst-child-proxy.c +34 -0
  11. data/ext/gstreamer/rbgst-clock.c +110 -0
  12. data/ext/gstreamer/rbgst-element-factory.c +249 -0
  13. data/ext/gstreamer/rbgst-element.c +1088 -0
  14. data/ext/gstreamer/rbgst-event.c +351 -0
  15. data/ext/gstreamer/rbgst-ghost-pad.c +45 -0
  16. data/ext/gstreamer/rbgst-index-factory.c +69 -0
  17. data/ext/gstreamer/rbgst-install-plugins-context.c +86 -0
  18. data/ext/gstreamer/rbgst-install-plugins-return.c +45 -0
  19. data/ext/gstreamer/rbgst-install-plugins.c +125 -0
  20. data/ext/gstreamer/rbgst-message.c +787 -0
  21. data/ext/gstreamer/rbgst-mini-object.c +220 -0
  22. data/ext/gstreamer/rbgst-object.c +83 -0
  23. data/ext/gstreamer/rbgst-pad-template.c +125 -0
  24. data/ext/gstreamer/rbgst-pad.c +338 -0
  25. data/ext/gstreamer/rbgst-pipeline.c +91 -0
  26. data/ext/gstreamer/rbgst-plugin-feature.c +133 -0
  27. data/ext/gstreamer/rbgst-plugin.c +162 -0
  28. data/ext/gstreamer/rbgst-private.c +88 -0
  29. data/ext/gstreamer/rbgst-private.h +97 -0
  30. data/ext/gstreamer/rbgst-query.c +291 -0
  31. data/ext/gstreamer/rbgst-seek.c +39 -0
  32. data/ext/gstreamer/rbgst-static-caps.c +51 -0
  33. data/ext/gstreamer/rbgst-static-pad-template.c +65 -0
  34. data/ext/gstreamer/rbgst-structure.c +302 -0
  35. data/ext/gstreamer/rbgst-system-clock.c +48 -0
  36. data/ext/gstreamer/rbgst-type-find-factory.c +125 -0
  37. data/ext/gstreamer/rbgst-value.c +529 -0
  38. data/ext/gstreamer/rbgst-x-overlay.c +133 -0
  39. data/ext/gstreamer/rbgst.c +237 -0
  40. data/ext/gstreamer/rbgst.h +197 -0
  41. data/ext/gstreamer/rbgstclockentry.c +271 -0
  42. data/ext/gstreamer/rbgstformat.c +162 -0
  43. data/ext/gstreamer/rbgstindex.c +317 -0
  44. data/ext/gstreamer/rbgstindexentry.c +99 -0
  45. data/ext/gstreamer/rbgstparse.c +69 -0
  46. data/ext/gstreamer/rbgstquerytype.c +162 -0
  47. data/ext/gstreamer/rbgstregistry.c +288 -0
  48. data/ext/gstreamer/rbgsttag.c +113 -0
  49. data/ext/gstreamer/rbgsttagsetter.c +53 -0
  50. data/ext/gstreamer/rbgstxml.c +192 -0
  51. data/extconf.rb +49 -0
  52. data/lib/1.8/gstreamer.so +0 -0
  53. data/lib/1.9/gstreamer.so +0 -0
  54. data/lib/gst.rb +33 -0
  55. data/sample/audio-player.rb +54 -0
  56. data/sample/gst-inspect.rb +417 -0
  57. data/sample/install-plugins.rb +40 -0
  58. data/sample/media-type.rb +55 -0
  59. data/sample/media-type2.rb +268 -0
  60. data/sample/ogg-audio-player.rb +54 -0
  61. data/sample/type-find.rb +46 -0
  62. data/sample/video-player.rb +57 -0
  63. data/sample/xml-player.rb +60 -0
  64. data/test/gst-test-utils.rb +18 -0
  65. data/test/run-test.rb +25 -0
  66. data/test/test_bin.rb +167 -0
  67. data/test/test_buffer.rb +177 -0
  68. data/test/test_caps.rb +24 -0
  69. data/test/test_element.rb +85 -0
  70. data/test/test_element_factory.rb +28 -0
  71. data/test/test_event.rb +10 -0
  72. data/test/test_index_factory.rb +7 -0
  73. data/test/test_install-plugins.rb +18 -0
  74. data/test/test_message.rb +191 -0
  75. data/test/test_mini_object.rb +38 -0
  76. data/test/test_object.rb +10 -0
  77. data/test/test_pad.rb +68 -0
  78. data/test/test_plugin.rb +6 -0
  79. data/test/test_plugin_feature.rb +20 -0
  80. data/test/test_seek.rb +17 -0
  81. data/test/test_static_caps.rb +18 -0
  82. data/test/test_static_pad_template.rb +16 -0
  83. data/test/test_structure.rb +159 -0
  84. data/test/test_thread_handling.rb +58 -0
  85. data/test/test_type_find_factory.rb +8 -0
  86. data/test/test_value.rb +69 -0
  87. data/vendor/local/bin/cjpeg.exe +0 -0
  88. data/vendor/local/bin/djpeg.exe +0 -0
  89. data/vendor/local/bin/gst-discoverer-0.10.exe +0 -0
  90. data/vendor/local/bin/gst-feedback-0.10 +115 -0
  91. data/vendor/local/bin/gst-feedback.exe +0 -0
  92. data/vendor/local/bin/gst-inspect-0.10.exe +0 -0
  93. data/vendor/local/bin/gst-inspect.exe +0 -0
  94. data/vendor/local/bin/gst-launch-0.10.exe +0 -0
  95. data/vendor/local/bin/gst-launch.exe +0 -0
  96. data/vendor/local/bin/gst-typefind-0.10.exe +0 -0
  97. data/vendor/local/bin/gst-typefind.exe +0 -0
  98. data/vendor/local/bin/gst-visualise-0.10 +77 -0
  99. data/vendor/local/bin/gst-xmlinspect-0.10.exe +0 -0
  100. data/vendor/local/bin/gst-xmlinspect.exe +0 -0
  101. data/vendor/local/bin/gst-xmllaunch-0.10.exe +0 -0
  102. data/vendor/local/bin/gst-xmllaunch.exe +0 -0
  103. data/vendor/local/bin/jpegtran.exe +0 -0
  104. data/vendor/local/bin/libgstapp-0.10-0.dll +0 -0
  105. data/vendor/local/bin/libgstaudio-0.10-0.dll +0 -0
  106. data/vendor/local/bin/libgstbase-0.10-0.dll +0 -0
  107. data/vendor/local/bin/libgstbasevideo-0.10-0.dll +0 -0
  108. data/vendor/local/bin/libgstcdda-0.10-0.dll +0 -0
  109. data/vendor/local/bin/libgstcheck-0.10-0.dll +0 -0
  110. data/vendor/local/bin/libgstcontroller-0.10-0.dll +0 -0
  111. data/vendor/local/bin/libgstdataprotocol-0.10-0.dll +0 -0
  112. data/vendor/local/bin/libgstfft-0.10-0.dll +0 -0
  113. data/vendor/local/bin/libgstinterfaces-0.10-0.dll +0 -0
  114. data/vendor/local/bin/libgstnet-0.10-0.dll +0 -0
  115. data/vendor/local/bin/libgstnetbuffer-0.10-0.dll +0 -0
  116. data/vendor/local/bin/libgstpbutils-0.10-0.dll +0 -0
  117. data/vendor/local/bin/libgstphotography-0.10-0.dll +0 -0
  118. data/vendor/local/bin/libgstreamer-0.10-0.dll +0 -0
  119. data/vendor/local/bin/libgstriff-0.10-0.dll +0 -0
  120. data/vendor/local/bin/libgstrtp-0.10-0.dll +0 -0
  121. data/vendor/local/bin/libgstrtsp-0.10-0.dll +0 -0
  122. data/vendor/local/bin/libgstsdp-0.10-0.dll +0 -0
  123. data/vendor/local/bin/libgstsignalprocessor-0.10-0.dll +0 -0
  124. data/vendor/local/bin/libgsttag-0.10-0.dll +0 -0
  125. data/vendor/local/bin/libgstvideo-0.10-0.dll +0 -0
  126. data/vendor/local/bin/libjpeg-8.dll +0 -0
  127. data/vendor/local/bin/libogg-0.dll +0 -0
  128. data/vendor/local/bin/libsoup-2.4-1.dll +0 -0
  129. data/vendor/local/bin/libspeex-1.dll +0 -0
  130. data/vendor/local/bin/libspeexdsp-1.dll +0 -0
  131. data/vendor/local/bin/libtheora-0.dll +0 -0
  132. data/vendor/local/bin/libtheoradec-1.dll +0 -0
  133. data/vendor/local/bin/libtheoraenc-1.dll +0 -0
  134. data/vendor/local/bin/libvorbis-0.dll +0 -0
  135. data/vendor/local/bin/libvorbisenc-2.dll +0 -0
  136. data/vendor/local/bin/libvorbisfile-3.dll +0 -0
  137. data/vendor/local/bin/libxml2-2.dll +0 -0
  138. data/vendor/local/bin/rdjpgcom.exe +0 -0
  139. data/vendor/local/bin/speexdec.exe +0 -0
  140. data/vendor/local/bin/speexenc.exe +0 -0
  141. data/vendor/local/bin/wrjpgcom.exe +0 -0
  142. data/vendor/local/bin/xmlcatalog.exe +0 -0
  143. data/vendor/local/bin/xmllint.exe +0 -0
  144. data/vendor/local/include/gstreamer-0.10/gst/app/gstappbuffer.h +64 -0
  145. data/vendor/local/include/gstreamer-0.10/gst/app/gstappsink.h +141 -0
  146. data/vendor/local/include/gstreamer-0.10/gst/app/gstappsrc.h +153 -0
  147. data/vendor/local/include/gstreamer-0.10/gst/audio/audio-enumtypes.h +29 -0
  148. data/vendor/local/include/gstreamer-0.10/gst/audio/audio.h +185 -0
  149. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudioclock.h +108 -0
  150. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiofilter.h +96 -0
  151. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosink.h +102 -0
  152. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosrc.h +99 -0
  153. data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosink.h +177 -0
  154. data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosrc.h +146 -0
  155. data/vendor/local/include/gstreamer-0.10/gst/audio/gstringbuffer.h +408 -0
  156. data/vendor/local/include/gstreamer-0.10/gst/audio/mixerutils.h +50 -0
  157. data/vendor/local/include/gstreamer-0.10/gst/audio/multichannel.h +115 -0
  158. data/vendor/local/include/gstreamer-0.10/gst/base/gstadapter.h +106 -0
  159. data/vendor/local/include/gstreamer-0.10/gst/base/gstbaseparse.h +314 -0
  160. data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesink.h +247 -0
  161. data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesrc.h +261 -0
  162. data/vendor/local/include/gstreamer-0.10/gst/base/gstbasetransform.h +277 -0
  163. data/vendor/local/include/gstreamer-0.10/gst/base/gstbitreader.h +314 -0
  164. data/vendor/local/include/gstreamer-0.10/gst/base/gstbytereader.h +527 -0
  165. data/vendor/local/include/gstreamer-0.10/gst/base/gstbytewriter.h +361 -0
  166. data/vendor/local/include/gstreamer-0.10/gst/base/gstcollectpads.h +223 -0
  167. data/vendor/local/include/gstreamer-0.10/gst/base/gstdataqueue.h +184 -0
  168. data/vendor/local/include/gstreamer-0.10/gst/base/gstpushsrc.h +68 -0
  169. data/vendor/local/include/gstreamer-0.10/gst/base/gsttypefindhelper.h +75 -0
  170. data/vendor/local/include/gstreamer-0.10/gst/cdda/gstcddabasesrc.h +157 -0
  171. data/vendor/local/include/gstreamer-0.10/gst/check/gstbufferstraw.h +35 -0
  172. data/vendor/local/include/gstreamer-0.10/gst/check/gstcheck.h +427 -0
  173. data/vendor/local/include/gstreamer-0.10/gst/check/gstconsistencychecker.h +48 -0
  174. data/vendor/local/include/gstreamer-0.10/gst/check/internal-check.h +418 -0
  175. data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontroller.h +155 -0
  176. data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontrolsource.h +163 -0
  177. data/vendor/local/include/gstreamer-0.10/gst/controller/gstinterpolationcontrolsource.h +109 -0
  178. data/vendor/local/include/gstreamer-0.10/gst/controller/gstlfocontrolsource.h +102 -0
  179. data/vendor/local/include/gstreamer-0.10/gst/dataprotocol/dataprotocol.h +196 -0
  180. data/vendor/local/include/gstreamer-0.10/gst/fft/gstfft.h +49 -0
  181. data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf32.h +75 -0
  182. data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf64.h +75 -0
  183. data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts16.h +74 -0
  184. data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts32.h +75 -0
  185. data/vendor/local/include/gstreamer-0.10/gst/floatcast/floatcast.h +102 -0
  186. data/vendor/local/include/gstreamer-0.10/gst/glib-compat.h +37 -0
  187. data/vendor/local/include/gstreamer-0.10/gst/gst.h +106 -0
  188. data/vendor/local/include/gstreamer-0.10/gst/gstatomicqueue.h +55 -0
  189. data/vendor/local/include/gstreamer-0.10/gst/gstbin.h +190 -0
  190. data/vendor/local/include/gstreamer-0.10/gst/gstbuffer.h +510 -0
  191. data/vendor/local/include/gstreamer-0.10/gst/gstbufferlist.h +243 -0
  192. data/vendor/local/include/gstreamer-0.10/gst/gstbus.h +192 -0
  193. data/vendor/local/include/gstreamer-0.10/gst/gstcaps.h +296 -0
  194. data/vendor/local/include/gstreamer-0.10/gst/gstchildproxy.h +91 -0
  195. data/vendor/local/include/gstreamer-0.10/gst/gstclock.h +570 -0
  196. data/vendor/local/include/gstreamer-0.10/gst/gstcompat.h +43 -0
  197. data/vendor/local/include/gstreamer-0.10/gst/gstconfig.h +235 -0
  198. data/vendor/local/include/gstreamer-0.10/gst/gstdatetime.h +66 -0
  199. data/vendor/local/include/gstreamer-0.10/gst/gstdebugutils.h +109 -0
  200. data/vendor/local/include/gstreamer-0.10/gst/gstelement.h +827 -0
  201. data/vendor/local/include/gstreamer-0.10/gst/gstelementfactory.h +314 -0
  202. data/vendor/local/include/gstreamer-0.10/gst/gstenumtypes.h +211 -0
  203. data/vendor/local/include/gstreamer-0.10/gst/gsterror.h +255 -0
  204. data/vendor/local/include/gstreamer-0.10/gst/gstevent.h +522 -0
  205. data/vendor/local/include/gstreamer-0.10/gst/gstfilter.h +44 -0
  206. data/vendor/local/include/gstreamer-0.10/gst/gstformat.h +113 -0
  207. data/vendor/local/include/gstreamer-0.10/gst/gstghostpad.h +111 -0
  208. data/vendor/local/include/gstreamer-0.10/gst/gstindex.h +426 -0
  209. data/vendor/local/include/gstreamer-0.10/gst/gstindexfactory.h +76 -0
  210. data/vendor/local/include/gstreamer-0.10/gst/gstinfo.h +1549 -0
  211. data/vendor/local/include/gstreamer-0.10/gst/gstinterface.h +81 -0
  212. data/vendor/local/include/gstreamer-0.10/gst/gstiterator.h +267 -0
  213. data/vendor/local/include/gstreamer-0.10/gst/gstmacros.h +54 -0
  214. data/vendor/local/include/gstreamer-0.10/gst/gstmarshal.h +164 -0
  215. data/vendor/local/include/gstreamer-0.10/gst/gstmessage.h +534 -0
  216. data/vendor/local/include/gstreamer-0.10/gst/gstminiobject.h +223 -0
  217. data/vendor/local/include/gstreamer-0.10/gst/gstobject.h +354 -0
  218. data/vendor/local/include/gstreamer-0.10/gst/gstpad.h +1032 -0
  219. data/vendor/local/include/gstreamer-0.10/gst/gstpadtemplate.h +196 -0
  220. data/vendor/local/include/gstreamer-0.10/gst/gstparamspecs.h +128 -0
  221. data/vendor/local/include/gstreamer-0.10/gst/gstparse.h +119 -0
  222. data/vendor/local/include/gstreamer-0.10/gst/gstpipeline.h +115 -0
  223. data/vendor/local/include/gstreamer-0.10/gst/gstplugin.h +411 -0
  224. data/vendor/local/include/gstreamer-0.10/gst/gstpluginfeature.h +171 -0
  225. data/vendor/local/include/gstreamer-0.10/gst/gstpoll.h +97 -0
  226. data/vendor/local/include/gstreamer-0.10/gst/gstpreset.h +99 -0
  227. data/vendor/local/include/gstreamer-0.10/gst/gstquery.h +342 -0
  228. data/vendor/local/include/gstreamer-0.10/gst/gstregistry.h +237 -0
  229. data/vendor/local/include/gstreamer-0.10/gst/gstsegment.h +109 -0
  230. data/vendor/local/include/gstreamer-0.10/gst/gststructure.h +254 -0
  231. data/vendor/local/include/gstreamer-0.10/gst/gstsystemclock.h +89 -0
  232. data/vendor/local/include/gstreamer-0.10/gst/gsttaglist.h +1034 -0
  233. data/vendor/local/include/gstreamer-0.10/gst/gsttagsetter.h +100 -0
  234. data/vendor/local/include/gstreamer-0.10/gst/gsttask.h +205 -0
  235. data/vendor/local/include/gstreamer-0.10/gst/gsttaskpool.h +103 -0
  236. data/vendor/local/include/gstreamer-0.10/gst/gsttrace.h +251 -0
  237. data/vendor/local/include/gstreamer-0.10/gst/gsttypefind.h +122 -0
  238. data/vendor/local/include/gstreamer-0.10/gst/gsttypefindfactory.h +81 -0
  239. data/vendor/local/include/gstreamer-0.10/gst/gsturi.h +156 -0
  240. data/vendor/local/include/gstreamer-0.10/gst/gstutils.h +1198 -0
  241. data/vendor/local/include/gstreamer-0.10/gst/gstvalue.h +594 -0
  242. data/vendor/local/include/gstreamer-0.10/gst/gstversion.h +90 -0
  243. data/vendor/local/include/gstreamer-0.10/gst/gstxml.h +113 -0
  244. data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalance.h +112 -0
  245. data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalancechannel.h +75 -0
  246. data/vendor/local/include/gstreamer-0.10/gst/interfaces/interfaces-enumtypes.h +49 -0
  247. data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixer.h +231 -0
  248. data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixeroptions.h +91 -0
  249. data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixertrack.h +134 -0
  250. data/vendor/local/include/gstreamer-0.10/gst/interfaces/navigation.h +257 -0
  251. data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography-enumtypes.h +37 -0
  252. data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography.h +387 -0
  253. data/vendor/local/include/gstreamer-0.10/gst/interfaces/propertyprobe.h +115 -0
  254. data/vendor/local/include/gstreamer-0.10/gst/interfaces/streamvolume.h +87 -0
  255. data/vendor/local/include/gstreamer-0.10/gst/interfaces/tuner.h +128 -0
  256. data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunerchannel.h +113 -0
  257. data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunernorm.h +67 -0
  258. data/vendor/local/include/gstreamer-0.10/gst/interfaces/videoorientation.h +94 -0
  259. data/vendor/local/include/gstreamer-0.10/gst/interfaces/xoverlay.h +121 -0
  260. data/vendor/local/include/gstreamer-0.10/gst/math-compat.h +84 -0
  261. data/vendor/local/include/gstreamer-0.10/gst/net/gstnet.h +30 -0
  262. data/vendor/local/include/gstreamer-0.10/gst/net/gstnetclientclock.h +105 -0
  263. data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimepacket.h +78 -0
  264. data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimeprovider.h +110 -0
  265. data/vendor/local/include/gstreamer-0.10/gst/netbuffer/gstnetbuffer.h +129 -0
  266. data/vendor/local/include/gstreamer-0.10/gst/pbutils/codec-utils.h +63 -0
  267. data/vendor/local/include/gstreamer-0.10/gst/pbutils/descriptions.h +58 -0
  268. data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-profile.h +187 -0
  269. data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-target.h +147 -0
  270. data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstdiscoverer.h +266 -0
  271. data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstpluginsbaseversion.h +86 -0
  272. data/vendor/local/include/gstreamer-0.10/gst/pbutils/install-plugins.h +144 -0
  273. data/vendor/local/include/gstreamer-0.10/gst/pbutils/missing-plugins.h +77 -0
  274. data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils-enumtypes.h +23 -0
  275. data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils.h +42 -0
  276. data/vendor/local/include/gstreamer-0.10/gst/riff/riff-ids.h +517 -0
  277. data/vendor/local/include/gstreamer-0.10/gst/riff/riff-media.h +65 -0
  278. data/vendor/local/include/gstreamer-0.10/gst/riff/riff-read.h +87 -0
  279. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpaudiopayload.h +98 -0
  280. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpdepayload.h +141 -0
  281. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertppayload.h +162 -0
  282. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtcpbuffer.h +286 -0
  283. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtpbuffer.h +166 -0
  284. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtppayloads.h +193 -0
  285. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsp-enumtypes.h +35 -0
  286. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspbase64.h +37 -0
  287. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspconnection.h +209 -0
  288. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspdefs.h +397 -0
  289. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspextension.h +97 -0
  290. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspmessage.h +187 -0
  291. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsprange.h +121 -0
  292. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsptransport.h +174 -0
  293. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspurl.h +103 -0
  294. data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdp.h +58 -0
  295. data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdpmessage.h +423 -0
  296. data/vendor/local/include/gstreamer-0.10/gst/signalprocessor/gstsignalprocessor.h +142 -0
  297. data/vendor/local/include/gstreamer-0.10/gst/tag/gsttagdemux.h +144 -0
  298. data/vendor/local/include/gstreamer-0.10/gst/tag/tag.h +549 -0
  299. data/vendor/local/include/gstreamer-0.10/gst/tag/xmpwriter.h +68 -0
  300. data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideocodec.h +195 -0
  301. data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideodecoder.h +182 -0
  302. data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideoencoder.h +128 -0
  303. data/vendor/local/include/gstreamer-0.10/gst/video/gstvideofilter.h +58 -0
  304. data/vendor/local/include/gstreamer-0.10/gst/video/gstvideosink.h +132 -0
  305. data/vendor/local/include/gstreamer-0.10/gst/video/video-enumtypes.h +19 -0
  306. data/vendor/local/include/gstreamer-0.10/gst/video/video.h +501 -0
  307. data/vendor/local/include/jconfig.h +46 -0
  308. data/vendor/local/include/jerror.h +304 -0
  309. data/vendor/local/include/jmorecfg.h +371 -0
  310. data/vendor/local/include/jpeglib.h +1158 -0
  311. data/vendor/local/include/libsoup-2.4/libsoup/soup-address.h +102 -0
  312. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-basic.h +56 -0
  313. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-digest.h +59 -0
  314. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain.h +99 -0
  315. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth.h +90 -0
  316. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar-text.h +44 -0
  317. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar.h +68 -0
  318. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie.h +81 -0
  319. data/vendor/local/include/libsoup-2.4/libsoup/soup-date.h +64 -0
  320. data/vendor/local/include/libsoup-2.4/libsoup/soup-enum-types.h +63 -0
  321. data/vendor/local/include/libsoup-2.4/libsoup/soup-form.h +53 -0
  322. data/vendor/local/include/libsoup-2.4/libsoup/soup-headers.h +59 -0
  323. data/vendor/local/include/libsoup-2.4/libsoup/soup-logger.h +80 -0
  324. data/vendor/local/include/libsoup-2.4/libsoup/soup-message-body.h +81 -0
  325. data/vendor/local/include/libsoup-2.4/libsoup/soup-message-headers.h +133 -0
  326. data/vendor/local/include/libsoup-2.4/libsoup/soup-message.h +163 -0
  327. data/vendor/local/include/libsoup-2.4/libsoup/soup-method.h +77 -0
  328. data/vendor/local/include/libsoup-2.4/libsoup/soup-misc.h +52 -0
  329. data/vendor/local/include/libsoup-2.4/libsoup/soup-multipart.h +51 -0
  330. data/vendor/local/include/libsoup-2.4/libsoup/soup-portability.h +28 -0
  331. data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-resolver.h +57 -0
  332. data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h +57 -0
  333. data/vendor/local/include/libsoup-2.4/libsoup/soup-server.h +113 -0
  334. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-async.h +44 -0
  335. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-feature.h +51 -0
  336. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-sync.h +44 -0
  337. data/vendor/local/include/libsoup-2.4/libsoup/soup-session.h +109 -0
  338. data/vendor/local/include/libsoup-2.4/libsoup/soup-socket.h +115 -0
  339. data/vendor/local/include/libsoup-2.4/libsoup/soup-status.h +102 -0
  340. data/vendor/local/include/libsoup-2.4/libsoup/soup-types.h +32 -0
  341. data/vendor/local/include/libsoup-2.4/libsoup/soup-uri.h +90 -0
  342. data/vendor/local/include/libsoup-2.4/libsoup/soup-value-utils.h +84 -0
  343. data/vendor/local/include/libsoup-2.4/libsoup/soup-xmlrpc.h +83 -0
  344. data/vendor/local/include/libsoup-2.4/libsoup/soup.h +45 -0
  345. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  346. data/vendor/local/include/libxml2/libxml/HTMLparser.h +304 -0
  347. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  348. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  349. data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
  350. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  351. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  352. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  353. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  354. data/vendor/local/include/libxml2/libxml/dict.h +69 -0
  355. data/vendor/local/include/libxml2/libxml/encoding.h +226 -0
  356. data/vendor/local/include/libxml2/libxml/entities.h +150 -0
  357. data/vendor/local/include/libxml2/libxml/globals.h +502 -0
  358. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  359. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  360. data/vendor/local/include/libxml2/libxml/nanoftp.h +143 -0
  361. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  362. data/vendor/local/include/libxml2/libxml/parser.h +1235 -0
  363. data/vendor/local/include/libxml2/libxml/parserInternals.h +611 -0
  364. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  365. data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
  366. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  367. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  368. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  369. data/vendor/local/include/libxml2/libxml/tree.h +1252 -0
  370. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  371. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  372. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  373. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  374. data/vendor/local/include/libxml2/libxml/xmlIO.h +360 -0
  375. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  376. data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
  377. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  378. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  379. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  380. data/vendor/local/include/libxml2/libxml/xmlreader.h +424 -0
  381. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  382. data/vendor/local/include/libxml2/libxml/xmlsave.h +87 -0
  383. data/vendor/local/include/libxml2/libxml/xmlschemas.h +218 -0
  384. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  385. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  386. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  387. data/vendor/local/include/libxml2/libxml/xmlversion.h +458 -0
  388. data/vendor/local/include/libxml2/libxml/xmlwriter.h +485 -0
  389. data/vendor/local/include/libxml2/libxml/xpath.h +546 -0
  390. data/vendor/local/include/libxml2/libxml/xpathInternals.h +630 -0
  391. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  392. data/vendor/local/include/ogg/config_types.h +25 -0
  393. data/vendor/local/include/ogg/ogg.h +210 -0
  394. data/vendor/local/include/ogg/os_types.h +147 -0
  395. data/vendor/local/include/speex/speex.h +424 -0
  396. data/vendor/local/include/speex/speex_bits.h +174 -0
  397. data/vendor/local/include/speex/speex_buffer.h +68 -0
  398. data/vendor/local/include/speex/speex_callbacks.h +134 -0
  399. data/vendor/local/include/speex/speex_config_types.h +11 -0
  400. data/vendor/local/include/speex/speex_echo.h +170 -0
  401. data/vendor/local/include/speex/speex_header.h +94 -0
  402. data/vendor/local/include/speex/speex_jitter.h +197 -0
  403. data/vendor/local/include/speex/speex_preprocess.h +219 -0
  404. data/vendor/local/include/speex/speex_resampler.h +340 -0
  405. data/vendor/local/include/speex/speex_stereo.h +91 -0
  406. data/vendor/local/include/speex/speex_types.h +126 -0
  407. data/vendor/local/include/theora/codec.h +591 -0
  408. data/vendor/local/include/theora/theora.h +784 -0
  409. data/vendor/local/include/theora/theoradec.h +325 -0
  410. data/vendor/local/include/theora/theoraenc.h +486 -0
  411. data/vendor/local/include/vorbis/codec.h +243 -0
  412. data/vendor/local/include/vorbis/vorbisenc.h +436 -0
  413. data/vendor/local/include/vorbis/vorbisfile.h +206 -0
  414. data/vendor/local/lib/gstreamer-0.10/libgstadder.dll +0 -0
  415. data/vendor/local/lib/gstreamer-0.10/libgstadder.dll.a +0 -0
  416. data/vendor/local/lib/gstreamer-0.10/libgstadder.la +41 -0
  417. data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll +0 -0
  418. data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll.a +0 -0
  419. data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.la +41 -0
  420. data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll +0 -0
  421. data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll.a +0 -0
  422. data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.la +41 -0
  423. data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll +0 -0
  424. data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll.a +0 -0
  425. data/vendor/local/lib/gstreamer-0.10/libgstaiff.la +41 -0
  426. data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll +0 -0
  427. data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll.a +0 -0
  428. data/vendor/local/lib/gstreamer-0.10/libgstalaw.la +41 -0
  429. data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll +0 -0
  430. data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll.a +0 -0
  431. data/vendor/local/lib/gstreamer-0.10/libgstalpha.la +41 -0
  432. data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll +0 -0
  433. data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll.a +0 -0
  434. data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.la +41 -0
  435. data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll +0 -0
  436. data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll.a +0 -0
  437. data/vendor/local/lib/gstreamer-0.10/libgstannodex.la +41 -0
  438. data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll +0 -0
  439. data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll.a +0 -0
  440. data/vendor/local/lib/gstreamer-0.10/libgstapetag.la +41 -0
  441. data/vendor/local/lib/gstreamer-0.10/libgstapp.dll +0 -0
  442. data/vendor/local/lib/gstreamer-0.10/libgstapp.dll.a +0 -0
  443. data/vendor/local/lib/gstreamer-0.10/libgstapp.la +41 -0
  444. data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll +0 -0
  445. data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll.a +0 -0
  446. data/vendor/local/lib/gstreamer-0.10/libgstasfmux.la +41 -0
  447. data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll +0 -0
  448. data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll.a +0 -0
  449. data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.la +41 -0
  450. data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll +0 -0
  451. data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll.a +0 -0
  452. data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.la +41 -0
  453. data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll +0 -0
  454. data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll.a +0 -0
  455. data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.la +41 -0
  456. data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll +0 -0
  457. data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll.a +0 -0
  458. data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.la +41 -0
  459. data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll +0 -0
  460. data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll.a +0 -0
  461. data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.la +41 -0
  462. data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll +0 -0
  463. data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll.a +0 -0
  464. data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.la +41 -0
  465. data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll +0 -0
  466. data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll.a +0 -0
  467. data/vendor/local/lib/gstreamer-0.10/libgstauparse.la +41 -0
  468. data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll +0 -0
  469. data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll.a +0 -0
  470. data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.la +41 -0
  471. data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll +0 -0
  472. data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll.a +0 -0
  473. data/vendor/local/lib/gstreamer-0.10/libgstautodetect.la +41 -0
  474. data/vendor/local/lib/gstreamer-0.10/libgstavi.dll +0 -0
  475. data/vendor/local/lib/gstreamer-0.10/libgstavi.dll.a +0 -0
  476. data/vendor/local/lib/gstreamer-0.10/libgstavi.la +41 -0
  477. data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll +0 -0
  478. data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll.a +0 -0
  479. data/vendor/local/lib/gstreamer-0.10/libgstbayer.la +41 -0
  480. data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll +0 -0
  481. data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll.a +0 -0
  482. data/vendor/local/lib/gstreamer-0.10/libgstcairo.la +41 -0
  483. data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll +0 -0
  484. data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll.a +0 -0
  485. data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.la +41 -0
  486. data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll +0 -0
  487. data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll.a +0 -0
  488. data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.la +41 -0
  489. data/vendor/local/lib/gstreamer-0.10/libgstcog.dll +0 -0
  490. data/vendor/local/lib/gstreamer-0.10/libgstcog.dll.a +0 -0
  491. data/vendor/local/lib/gstreamer-0.10/libgstcog.la +41 -0
  492. data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll +0 -0
  493. data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll.a +0 -0
  494. data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.la +41 -0
  495. data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll +0 -0
  496. data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll.a +0 -0
  497. data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.la +41 -0
  498. data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll +0 -0
  499. data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll.a +0 -0
  500. data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.la +41 -0
  501. data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll +0 -0
  502. data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll.a +0 -0
  503. data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.la +41 -0
  504. data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll +0 -0
  505. data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll.a +0 -0
  506. data/vendor/local/lib/gstreamer-0.10/libgstcutter.la +41 -0
  507. data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll +0 -0
  508. data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll.a +0 -0
  509. data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.la +41 -0
  510. data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll +0 -0
  511. data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll.a +0 -0
  512. data/vendor/local/lib/gstreamer-0.10/libgstdebug.la +41 -0
  513. data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll +0 -0
  514. data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll.a +0 -0
  515. data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.la +41 -0
  516. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll +0 -0
  517. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll.a +0 -0
  518. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.la +41 -0
  519. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll +0 -0
  520. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll.a +0 -0
  521. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.la +41 -0
  522. data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll +0 -0
  523. data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll.a +0 -0
  524. data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.la +41 -0
  525. data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll +0 -0
  526. data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll.a +0 -0
  527. data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.la +41 -0
  528. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll +0 -0
  529. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll.a +0 -0
  530. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.la +41 -0
  531. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll +0 -0
  532. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll.a +0 -0
  533. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.la +41 -0
  534. data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll +0 -0
  535. data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll.a +0 -0
  536. data/vendor/local/lib/gstreamer-0.10/libgstdtmf.la +41 -0
  537. data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll +0 -0
  538. data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll.a +0 -0
  539. data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.la +41 -0
  540. data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll +0 -0
  541. data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll.a +0 -0
  542. data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.la +41 -0
  543. data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll +0 -0
  544. data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll.a +0 -0
  545. data/vendor/local/lib/gstreamer-0.10/libgsteffectv.la +41 -0
  546. data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll +0 -0
  547. data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll.a +0 -0
  548. data/vendor/local/lib/gstreamer-0.10/libgstencodebin.la +41 -0
  549. data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll +0 -0
  550. data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll.a +0 -0
  551. data/vendor/local/lib/gstreamer-0.10/libgstequalizer.la +41 -0
  552. data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll +0 -0
  553. data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll.a +0 -0
  554. data/vendor/local/lib/gstreamer-0.10/libgstfestival.la +41 -0
  555. data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll +0 -0
  556. data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll.a +0 -0
  557. data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.la +41 -0
  558. data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll +0 -0
  559. data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll.a +0 -0
  560. data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.la +41 -0
  561. data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll +0 -0
  562. data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll.a +0 -0
  563. data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.la +41 -0
  564. data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll +0 -0
  565. data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll.a +0 -0
  566. data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.la +41 -0
  567. data/vendor/local/lib/gstreamer-0.10/libgstflv.dll +0 -0
  568. data/vendor/local/lib/gstreamer-0.10/libgstflv.dll.a +0 -0
  569. data/vendor/local/lib/gstreamer-0.10/libgstflv.la +41 -0
  570. data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll +0 -0
  571. data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll.a +0 -0
  572. data/vendor/local/lib/gstreamer-0.10/libgstflxdec.la +41 -0
  573. data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll +0 -0
  574. data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll.a +0 -0
  575. data/vendor/local/lib/gstreamer-0.10/libgstfragmented.la +41 -0
  576. data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll +0 -0
  577. data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll.a +0 -0
  578. data/vendor/local/lib/gstreamer-0.10/libgstfreeze.la +41 -0
  579. data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll +0 -0
  580. data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll.a +0 -0
  581. data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.la +41 -0
  582. data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll +0 -0
  583. data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll.a +0 -0
  584. data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.la +41 -0
  585. data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll +0 -0
  586. data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll.a +0 -0
  587. data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.la +41 -0
  588. data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll +0 -0
  589. data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll.a +0 -0
  590. data/vendor/local/lib/gstreamer-0.10/libgstgdp.la +41 -0
  591. data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll +0 -0
  592. data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll.a +0 -0
  593. data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.la +41 -0
  594. data/vendor/local/lib/gstreamer-0.10/libgstgio.dll +0 -0
  595. data/vendor/local/lib/gstreamer-0.10/libgstgio.dll.a +0 -0
  596. data/vendor/local/lib/gstreamer-0.10/libgstgio.la +41 -0
  597. data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll +0 -0
  598. data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll.a +0 -0
  599. data/vendor/local/lib/gstreamer-0.10/libgstgoom.la +41 -0
  600. data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll +0 -0
  601. data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll.a +0 -0
  602. data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.la +41 -0
  603. data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll +0 -0
  604. data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll.a +0 -0
  605. data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.la +41 -0
  606. data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll +0 -0
  607. data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll.a +0 -0
  608. data/vendor/local/lib/gstreamer-0.10/libgsth264parse.la +41 -0
  609. data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll +0 -0
  610. data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll.a +0 -0
  611. data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.la +41 -0
  612. data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll +0 -0
  613. data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll.a +0 -0
  614. data/vendor/local/lib/gstreamer-0.10/libgsticydemux.la +41 -0
  615. data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll +0 -0
  616. data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll.a +0 -0
  617. data/vendor/local/lib/gstreamer-0.10/libgstid3demux.la +41 -0
  618. data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll +0 -0
  619. data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll.a +0 -0
  620. data/vendor/local/lib/gstreamer-0.10/libgstid3tag.la +41 -0
  621. data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll +0 -0
  622. data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll.a +0 -0
  623. data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.la +41 -0
  624. data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll +0 -0
  625. data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll.a +0 -0
  626. data/vendor/local/lib/gstreamer-0.10/libgstinterlace.la +41 -0
  627. data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll +0 -0
  628. data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll.a +0 -0
  629. data/vendor/local/lib/gstreamer-0.10/libgstinterleave.la +41 -0
  630. data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll +0 -0
  631. data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll.a +0 -0
  632. data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.la +41 -0
  633. data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll +0 -0
  634. data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll.a +0 -0
  635. data/vendor/local/lib/gstreamer-0.10/libgstisomp4.la +41 -0
  636. data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll +0 -0
  637. data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll.a +0 -0
  638. data/vendor/local/lib/gstreamer-0.10/libgstivfparse.la +41 -0
  639. data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll +0 -0
  640. data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll.a +0 -0
  641. data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.la +41 -0
  642. data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll +0 -0
  643. data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll.a +0 -0
  644. data/vendor/local/lib/gstreamer-0.10/libgstjpeg.la +41 -0
  645. data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll +0 -0
  646. data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll.a +0 -0
  647. data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.la +41 -0
  648. data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll +0 -0
  649. data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll.a +0 -0
  650. data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.la +41 -0
  651. data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll +0 -0
  652. data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll.a +0 -0
  653. data/vendor/local/lib/gstreamer-0.10/libgstlevel.la +41 -0
  654. data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll +0 -0
  655. data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll.a +0 -0
  656. data/vendor/local/lib/gstreamer-0.10/libgstliveadder.la +41 -0
  657. data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll +0 -0
  658. data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll.a +0 -0
  659. data/vendor/local/lib/gstreamer-0.10/libgstmatroska.la +41 -0
  660. data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll +0 -0
  661. data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll.a +0 -0
  662. data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.la +41 -0
  663. data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll +0 -0
  664. data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll.a +0 -0
  665. data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.la +41 -0
  666. data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll +0 -0
  667. data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll.a +0 -0
  668. data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.la +41 -0
  669. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll +0 -0
  670. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll.a +0 -0
  671. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.la +41 -0
  672. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll +0 -0
  673. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll.a +0 -0
  674. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.la +41 -0
  675. data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll +0 -0
  676. data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll.a +0 -0
  677. data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.la +41 -0
  678. data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll +0 -0
  679. data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll.a +0 -0
  680. data/vendor/local/lib/gstreamer-0.10/libgstmulaw.la +41 -0
  681. data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll +0 -0
  682. data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll.a +0 -0
  683. data/vendor/local/lib/gstreamer-0.10/libgstmultifile.la +41 -0
  684. data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll +0 -0
  685. data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll.a +0 -0
  686. data/vendor/local/lib/gstreamer-0.10/libgstmultipart.la +41 -0
  687. data/vendor/local/lib/gstreamer-0.10/libgstmve.dll +0 -0
  688. data/vendor/local/lib/gstreamer-0.10/libgstmve.dll.a +0 -0
  689. data/vendor/local/lib/gstreamer-0.10/libgstmve.la +41 -0
  690. data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll +0 -0
  691. data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll.a +0 -0
  692. data/vendor/local/lib/gstreamer-0.10/libgstmxf.la +41 -0
  693. data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll +0 -0
  694. data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll.a +0 -0
  695. data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.la +41 -0
  696. data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll +0 -0
  697. data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll.a +0 -0
  698. data/vendor/local/lib/gstreamer-0.10/libgstnsf.la +41 -0
  699. data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll +0 -0
  700. data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll.a +0 -0
  701. data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.la +41 -0
  702. data/vendor/local/lib/gstreamer-0.10/libgstogg.dll +0 -0
  703. data/vendor/local/lib/gstreamer-0.10/libgstogg.dll.a +0 -0
  704. data/vendor/local/lib/gstreamer-0.10/libgstogg.la +41 -0
  705. data/vendor/local/lib/gstreamer-0.10/libgstpango.dll +0 -0
  706. data/vendor/local/lib/gstreamer-0.10/libgstpango.dll.a +0 -0
  707. data/vendor/local/lib/gstreamer-0.10/libgstpango.la +41 -0
  708. data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll +0 -0
  709. data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll.a +0 -0
  710. data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.la +41 -0
  711. data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll +0 -0
  712. data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll.a +0 -0
  713. data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.la +41 -0
  714. data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll +0 -0
  715. data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll.a +0 -0
  716. data/vendor/local/lib/gstreamer-0.10/libgstplaybin.la +41 -0
  717. data/vendor/local/lib/gstreamer-0.10/libgstpng.dll +0 -0
  718. data/vendor/local/lib/gstreamer-0.10/libgstpng.dll.a +0 -0
  719. data/vendor/local/lib/gstreamer-0.10/libgstpng.la +41 -0
  720. data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll +0 -0
  721. data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll.a +0 -0
  722. data/vendor/local/lib/gstreamer-0.10/libgstpnm.la +41 -0
  723. data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll +0 -0
  724. data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll.a +0 -0
  725. data/vendor/local/lib/gstreamer-0.10/libgstpostproc.la +41 -0
  726. data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll +0 -0
  727. data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll.a +0 -0
  728. data/vendor/local/lib/gstreamer-0.10/libgstrawparse.la +41 -0
  729. data/vendor/local/lib/gstreamer-0.10/libgstreal.dll +0 -0
  730. data/vendor/local/lib/gstreamer-0.10/libgstreal.dll.a +0 -0
  731. data/vendor/local/lib/gstreamer-0.10/libgstreal.la +41 -0
  732. data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll +0 -0
  733. data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll.a +0 -0
  734. data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.la +41 -0
  735. data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll +0 -0
  736. data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll.a +0 -0
  737. data/vendor/local/lib/gstreamer-0.10/libgstrtp.la +41 -0
  738. data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll +0 -0
  739. data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll.a +0 -0
  740. data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.la +41 -0
  741. data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll +0 -0
  742. data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll.a +0 -0
  743. data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.la +41 -0
  744. data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll +0 -0
  745. data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll.a +0 -0
  746. data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.la +41 -0
  747. data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll +0 -0
  748. data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll.a +0 -0
  749. data/vendor/local/lib/gstreamer-0.10/libgstrtsp.la +41 -0
  750. data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll +0 -0
  751. data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll.a +0 -0
  752. data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.la +41 -0
  753. data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll +0 -0
  754. data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll.a +0 -0
  755. data/vendor/local/lib/gstreamer-0.10/libgstsdi.la +41 -0
  756. data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll +0 -0
  757. data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll.a +0 -0
  758. data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.la +41 -0
  759. data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll +0 -0
  760. data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll.a +0 -0
  761. data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.la +41 -0
  762. data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll +0 -0
  763. data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll.a +0 -0
  764. data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.la +41 -0
  765. data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll +0 -0
  766. data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll.a +0 -0
  767. data/vendor/local/lib/gstreamer-0.10/libgstsiren.la +41 -0
  768. data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll +0 -0
  769. data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll.a +0 -0
  770. data/vendor/local/lib/gstreamer-0.10/libgstsmpte.la +41 -0
  771. data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll +0 -0
  772. data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll.a +0 -0
  773. data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.la +41 -0
  774. data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll +0 -0
  775. data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll.a +0 -0
  776. data/vendor/local/lib/gstreamer-0.10/libgstspectrum.la +41 -0
  777. data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll +0 -0
  778. data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll.a +0 -0
  779. data/vendor/local/lib/gstreamer-0.10/libgstspeed.la +41 -0
  780. data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll +0 -0
  781. data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll.a +0 -0
  782. data/vendor/local/lib/gstreamer-0.10/libgstspeex.la +41 -0
  783. data/vendor/local/lib/gstreamer-0.10/libgststereo.dll +0 -0
  784. data/vendor/local/lib/gstreamer-0.10/libgststereo.dll.a +0 -0
  785. data/vendor/local/lib/gstreamer-0.10/libgststereo.la +41 -0
  786. data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll +0 -0
  787. data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll.a +0 -0
  788. data/vendor/local/lib/gstreamer-0.10/libgstsubenc.la +41 -0
  789. data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll +0 -0
  790. data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll.a +0 -0
  791. data/vendor/local/lib/gstreamer-0.10/libgstsubparse.la +41 -0
  792. data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll +0 -0
  793. data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll.a +0 -0
  794. data/vendor/local/lib/gstreamer-0.10/libgsttheora.la +41 -0
  795. data/vendor/local/lib/gstreamer-0.10/libgsttta.dll +0 -0
  796. data/vendor/local/lib/gstreamer-0.10/libgsttta.dll.a +0 -0
  797. data/vendor/local/lib/gstreamer-0.10/libgsttta.la +41 -0
  798. data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll +0 -0
  799. data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll.a +0 -0
  800. data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.la +41 -0
  801. data/vendor/local/lib/gstreamer-0.10/libgstudp.dll +0 -0
  802. data/vendor/local/lib/gstreamer-0.10/libgstudp.dll.a +0 -0
  803. data/vendor/local/lib/gstreamer-0.10/libgstudp.la +41 -0
  804. data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll +0 -0
  805. data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll.a +0 -0
  806. data/vendor/local/lib/gstreamer-0.10/libgstvideobox.la +41 -0
  807. data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll +0 -0
  808. data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll.a +0 -0
  809. data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.la +41 -0
  810. data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll +0 -0
  811. data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll.a +0 -0
  812. data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.la +41 -0
  813. data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll +0 -0
  814. data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll.a +0 -0
  815. data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.la +41 -0
  816. data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll +0 -0
  817. data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll.a +0 -0
  818. data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.la +41 -0
  819. data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll +0 -0
  820. data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll.a +0 -0
  821. data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.la +41 -0
  822. data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll +0 -0
  823. data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll.a +0 -0
  824. data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.la +41 -0
  825. data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll +0 -0
  826. data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll.a +0 -0
  827. data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.la +41 -0
  828. data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll +0 -0
  829. data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll.a +0 -0
  830. data/vendor/local/lib/gstreamer-0.10/libgstvideorate.la +41 -0
  831. data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll +0 -0
  832. data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll.a +0 -0
  833. data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.la +41 -0
  834. data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll +0 -0
  835. data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll.a +0 -0
  836. data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.la +41 -0
  837. data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll +0 -0
  838. data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll.a +0 -0
  839. data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.la +41 -0
  840. data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll +0 -0
  841. data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll.a +0 -0
  842. data/vendor/local/lib/gstreamer-0.10/libgstvmnc.la +41 -0
  843. data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll +0 -0
  844. data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll.a +0 -0
  845. data/vendor/local/lib/gstreamer-0.10/libgstvolume.la +41 -0
  846. data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll +0 -0
  847. data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll.a +0 -0
  848. data/vendor/local/lib/gstreamer-0.10/libgstvorbis.la +41 -0
  849. data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll +0 -0
  850. data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll.a +0 -0
  851. data/vendor/local/lib/gstreamer-0.10/libgstwavenc.la +41 -0
  852. data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll +0 -0
  853. data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll.a +0 -0
  854. data/vendor/local/lib/gstreamer-0.10/libgstwavparse.la +41 -0
  855. data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll +0 -0
  856. data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll.a +0 -0
  857. data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.la +41 -0
  858. data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll +0 -0
  859. data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll.a +0 -0
  860. data/vendor/local/lib/gstreamer-0.10/libgsty4menc.la +41 -0
  861. data/vendor/local/lib/libgstapp-0.10.dll.a +0 -0
  862. data/vendor/local/lib/libgstapp-0.10.la +41 -0
  863. data/vendor/local/lib/libgstaudio-0.10.a +0 -0
  864. data/vendor/local/lib/libgstaudio-0.10.dll.a +0 -0
  865. data/vendor/local/lib/libgstaudio-0.10.la +41 -0
  866. data/vendor/local/lib/libgstbase-0.10.a +0 -0
  867. data/vendor/local/lib/libgstbase-0.10.dll.a +0 -0
  868. data/vendor/local/lib/libgstbase-0.10.la +41 -0
  869. data/vendor/local/lib/libgstbasevideo-0.10.a +0 -0
  870. data/vendor/local/lib/libgstbasevideo-0.10.dll.a +0 -0
  871. data/vendor/local/lib/libgstbasevideo-0.10.la +41 -0
  872. data/vendor/local/lib/libgstcdda-0.10.a +0 -0
  873. data/vendor/local/lib/libgstcdda-0.10.dll.a +0 -0
  874. data/vendor/local/lib/libgstcdda-0.10.la +41 -0
  875. data/vendor/local/lib/libgstcheck-0.10.a +0 -0
  876. data/vendor/local/lib/libgstcheck-0.10.dll.a +0 -0
  877. data/vendor/local/lib/libgstcheck-0.10.la +41 -0
  878. data/vendor/local/lib/libgstcontroller-0.10.a +0 -0
  879. data/vendor/local/lib/libgstcontroller-0.10.dll.a +0 -0
  880. data/vendor/local/lib/libgstcontroller-0.10.la +41 -0
  881. data/vendor/local/lib/libgstdataprotocol-0.10.a +0 -0
  882. data/vendor/local/lib/libgstdataprotocol-0.10.dll.a +0 -0
  883. data/vendor/local/lib/libgstdataprotocol-0.10.la +41 -0
  884. data/vendor/local/lib/libgstfft-0.10.a +0 -0
  885. data/vendor/local/lib/libgstfft-0.10.dll.a +0 -0
  886. data/vendor/local/lib/libgstfft-0.10.la +41 -0
  887. data/vendor/local/lib/libgstinterfaces-0.10.a +0 -0
  888. data/vendor/local/lib/libgstinterfaces-0.10.dll.a +0 -0
  889. data/vendor/local/lib/libgstinterfaces-0.10.la +41 -0
  890. data/vendor/local/lib/libgstnet-0.10.a +0 -0
  891. data/vendor/local/lib/libgstnet-0.10.dll.a +0 -0
  892. data/vendor/local/lib/libgstnet-0.10.la +41 -0
  893. data/vendor/local/lib/libgstnetbuffer-0.10.a +0 -0
  894. data/vendor/local/lib/libgstnetbuffer-0.10.dll.a +0 -0
  895. data/vendor/local/lib/libgstnetbuffer-0.10.la +41 -0
  896. data/vendor/local/lib/libgstpbutils-0.10.a +0 -0
  897. data/vendor/local/lib/libgstpbutils-0.10.dll.a +0 -0
  898. data/vendor/local/lib/libgstpbutils-0.10.la +41 -0
  899. data/vendor/local/lib/libgstphotography-0.10.a +0 -0
  900. data/vendor/local/lib/libgstphotography-0.10.dll.a +0 -0
  901. data/vendor/local/lib/libgstphotography-0.10.la +41 -0
  902. data/vendor/local/lib/libgstreamer-0.10.a +0 -0
  903. data/vendor/local/lib/libgstreamer-0.10.dll.a +0 -0
  904. data/vendor/local/lib/libgstreamer-0.10.la +41 -0
  905. data/vendor/local/lib/libgstriff-0.10.a +0 -0
  906. data/vendor/local/lib/libgstriff-0.10.dll.a +0 -0
  907. data/vendor/local/lib/libgstriff-0.10.la +41 -0
  908. data/vendor/local/lib/libgstrtp-0.10.a +0 -0
  909. data/vendor/local/lib/libgstrtp-0.10.dll.a +0 -0
  910. data/vendor/local/lib/libgstrtp-0.10.la +41 -0
  911. data/vendor/local/lib/libgstrtsp-0.10.a +0 -0
  912. data/vendor/local/lib/libgstrtsp-0.10.dll.a +0 -0
  913. data/vendor/local/lib/libgstrtsp-0.10.la +41 -0
  914. data/vendor/local/lib/libgstsdp-0.10.a +0 -0
  915. data/vendor/local/lib/libgstsdp-0.10.dll.a +0 -0
  916. data/vendor/local/lib/libgstsdp-0.10.la +41 -0
  917. data/vendor/local/lib/libgstsignalprocessor-0.10.a +0 -0
  918. data/vendor/local/lib/libgstsignalprocessor-0.10.dll.a +0 -0
  919. data/vendor/local/lib/libgstsignalprocessor-0.10.la +41 -0
  920. data/vendor/local/lib/libgsttag-0.10.a +0 -0
  921. data/vendor/local/lib/libgsttag-0.10.dll.a +0 -0
  922. data/vendor/local/lib/libgsttag-0.10.la +41 -0
  923. data/vendor/local/lib/libgstvideo-0.10.a +0 -0
  924. data/vendor/local/lib/libgstvideo-0.10.dll.a +0 -0
  925. data/vendor/local/lib/libgstvideo-0.10.la +41 -0
  926. data/vendor/local/lib/libjpeg.dll.a +0 -0
  927. data/vendor/local/lib/libogg.a +0 -0
  928. data/vendor/local/lib/libogg.dll.a +0 -0
  929. data/vendor/local/lib/libogg.la +41 -0
  930. data/vendor/local/lib/libsoup-2.4.dll.a +0 -0
  931. data/vendor/local/lib/libspeex.a +0 -0
  932. data/vendor/local/lib/libspeex.dll.a +0 -0
  933. data/vendor/local/lib/libspeex.la +35 -0
  934. data/vendor/local/lib/libspeexdsp.a +0 -0
  935. data/vendor/local/lib/libspeexdsp.dll.a +0 -0
  936. data/vendor/local/lib/libspeexdsp.la +35 -0
  937. data/vendor/local/lib/libtheora.a +0 -0
  938. data/vendor/local/lib/libtheora.dll.a +0 -0
  939. data/vendor/local/lib/libtheora.la +41 -0
  940. data/vendor/local/lib/libtheoradec.a +0 -0
  941. data/vendor/local/lib/libtheoradec.dll.a +0 -0
  942. data/vendor/local/lib/libtheoradec.la +41 -0
  943. data/vendor/local/lib/libtheoraenc.a +0 -0
  944. data/vendor/local/lib/libtheoraenc.dll.a +0 -0
  945. data/vendor/local/lib/libtheoraenc.la +41 -0
  946. data/vendor/local/lib/libvorbis.a +0 -0
  947. data/vendor/local/lib/libvorbis.dll.a +0 -0
  948. data/vendor/local/lib/libvorbis.la +41 -0
  949. data/vendor/local/lib/libvorbisenc.a +0 -0
  950. data/vendor/local/lib/libvorbisenc.dll.a +0 -0
  951. data/vendor/local/lib/libvorbisenc.la +41 -0
  952. data/vendor/local/lib/libvorbisfile.a +0 -0
  953. data/vendor/local/lib/libvorbisfile.dll.a +0 -0
  954. data/vendor/local/lib/libvorbisfile.la +41 -0
  955. data/vendor/local/lib/libxml2.def +1657 -0
  956. data/vendor/local/lib/libxml2.dll.a +0 -0
  957. data/vendor/local/lib/libxml2.lib +0 -0
  958. data/vendor/local/lib/pkgconfig/gstreamer-0.10.pc +17 -0
  959. data/vendor/local/lib/pkgconfig/gstreamer-app-0.10.pc +16 -0
  960. data/vendor/local/lib/pkgconfig/gstreamer-audio-0.10.pc +16 -0
  961. data/vendor/local/lib/pkgconfig/gstreamer-base-0.10.pc +15 -0
  962. data/vendor/local/lib/pkgconfig/gstreamer-cdda-0.10.pc +16 -0
  963. data/vendor/local/lib/pkgconfig/gstreamer-check-0.10.pc +15 -0
  964. data/vendor/local/lib/pkgconfig/gstreamer-controller-0.10.pc +15 -0
  965. data/vendor/local/lib/pkgconfig/gstreamer-dataprotocol-0.10.pc +15 -0
  966. data/vendor/local/lib/pkgconfig/gstreamer-fft-0.10.pc +16 -0
  967. data/vendor/local/lib/pkgconfig/gstreamer-floatcast-0.10.pc +16 -0
  968. data/vendor/local/lib/pkgconfig/gstreamer-interfaces-0.10.pc +16 -0
  969. data/vendor/local/lib/pkgconfig/gstreamer-net-0.10.pc +15 -0
  970. data/vendor/local/lib/pkgconfig/gstreamer-netbuffer-0.10.pc +16 -0
  971. data/vendor/local/lib/pkgconfig/gstreamer-pbutils-0.10.pc +16 -0
  972. data/vendor/local/lib/pkgconfig/gstreamer-plugins-bad-0.10.pc +12 -0
  973. data/vendor/local/lib/pkgconfig/gstreamer-plugins-base-0.10.pc +14 -0
  974. data/vendor/local/lib/pkgconfig/gstreamer-riff-0.10.pc +16 -0
  975. data/vendor/local/lib/pkgconfig/gstreamer-rtp-0.10.pc +16 -0
  976. data/vendor/local/lib/pkgconfig/gstreamer-rtsp-0.10.pc +16 -0
  977. data/vendor/local/lib/pkgconfig/gstreamer-sdp-0.10.pc +16 -0
  978. data/vendor/local/lib/pkgconfig/gstreamer-tag-0.10.pc +16 -0
  979. data/vendor/local/lib/pkgconfig/gstreamer-video-0.10.pc +16 -0
  980. data/vendor/local/lib/pkgconfig/libsoup-2.4.pc +12 -0
  981. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  982. data/vendor/local/lib/pkgconfig/ogg.pc +14 -0
  983. data/vendor/local/lib/pkgconfig/speex.pc +15 -0
  984. data/vendor/local/lib/pkgconfig/speexdsp.pc +15 -0
  985. data/vendor/local/lib/pkgconfig/theora.pc +14 -0
  986. data/vendor/local/lib/pkgconfig/theoradec.pc +14 -0
  987. data/vendor/local/lib/pkgconfig/theoraenc.pc +14 -0
  988. data/vendor/local/lib/pkgconfig/vorbis.pc +14 -0
  989. data/vendor/local/lib/pkgconfig/vorbisenc.pc +14 -0
  990. data/vendor/local/lib/pkgconfig/vorbisfile.pc +14 -0
  991. data/vendor/local/libexec/gstreamer-0.10/gst-plugin-scanner.exe +0 -0
  992. data/vendor/local/manifest/jpeg-dev_8-1_win32.mft +18 -0
  993. data/vendor/local/manifest/jpeg_8-1_win32.mft +2 -0
  994. data/vendor/local/manifest/libsoup-dev_2.26.3-1_win32.mft +41 -0
  995. data/vendor/local/manifest/libsoup_2.26.3-1_win32.mft +2 -0
  996. data/vendor/local/manifest/libxml2-dev_2.7.7-1_win32.mft +267 -0
  997. data/vendor/local/manifest/libxml2_2.7.7-1_win32.mft +2 -0
  998. data/vendor/local/share/aclocal/gst-element-check-0.10.m4 +23 -0
  999. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  1000. data/vendor/local/share/aclocal/ogg.m4 +116 -0
  1001. data/vendor/local/share/aclocal/speex.m4 +104 -0
  1002. data/vendor/local/share/aclocal/vorbis.m4 +136 -0
  1003. data/vendor/local/share/doc/libogg-1.3.0/framing.html +429 -0
  1004. data/vendor/local/share/doc/libogg-1.3.0/index.html +105 -0
  1005. data/vendor/local/share/doc/libogg-1.3.0/ogg-multiplex.html +446 -0
  1006. data/vendor/local/share/doc/libogg-1.3.0/ogg/bitpacking.html +103 -0
  1007. data/vendor/local/share/doc/libogg-1.3.0/ogg/datastructures.html +59 -0
  1008. data/vendor/local/share/doc/libogg-1.3.0/ogg/decoding.html +104 -0
  1009. data/vendor/local/share/doc/libogg-1.3.0/ogg/encoding.html +76 -0
  1010. data/vendor/local/share/doc/libogg-1.3.0/ogg/general.html +109 -0
  1011. data/vendor/local/share/doc/libogg-1.3.0/ogg/index.html +39 -0
  1012. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet.html +75 -0
  1013. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet_clear.html +64 -0
  1014. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page.html +75 -0
  1015. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_bos.html +65 -0
  1016. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_checksum_set.html +62 -0
  1017. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_continued.html +64 -0
  1018. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_eos.html +65 -0
  1019. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_granulepos.html +65 -0
  1020. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_packets.html +75 -0
  1021. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_pageno.html +63 -0
  1022. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_serialno.html +63 -0
  1023. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_version.html +63 -0
  1024. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_clear.html +61 -0
  1025. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_destroy.html +71 -0
  1026. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_eos.html +62 -0
  1027. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_flush.html +67 -0
  1028. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_init.html +66 -0
  1029. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetin.html +72 -0
  1030. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetout.html +85 -0
  1031. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetpeek.html +85 -0
  1032. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pagein.html +67 -0
  1033. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout.html +84 -0
  1034. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout_fill.html +89 -0
  1035. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset.html +61 -0
  1036. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset_serialno.html +67 -0
  1037. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_state.html +121 -0
  1038. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_buffer.html +67 -0
  1039. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_clear.html +62 -0
  1040. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_destroy.html +68 -0
  1041. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_init.html +63 -0
  1042. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageout.html +77 -0
  1043. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageseek.html +68 -0
  1044. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_reset.html +63 -0
  1045. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_state.html +77 -0
  1046. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_wrote.html +73 -0
  1047. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv.html +64 -0
  1048. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv1.html +62 -0
  1049. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bits.html +62 -0
  1050. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_buffer.html +66 -0
  1051. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bytes.html +67 -0
  1052. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_get_buffer.html +62 -0
  1053. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look.html +66 -0
  1054. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look1.html +63 -0
  1055. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read.html +65 -0
  1056. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read1.html +63 -0
  1057. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_readinit.html +64 -0
  1058. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_reset.html +62 -0
  1059. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_write.html +68 -0
  1060. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writealign.html +65 -0
  1061. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeclear.html +62 -0
  1062. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writecopy.html +69 -0
  1063. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeinit.html +62 -0
  1064. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writetrunc.html +65 -0
  1065. data/vendor/local/share/doc/libogg-1.3.0/ogg/overview.html +44 -0
  1066. data/vendor/local/share/doc/libogg-1.3.0/ogg/reference.html +98 -0
  1067. data/vendor/local/share/doc/libogg-1.3.0/ogg/style.css +7 -0
  1068. data/vendor/local/share/doc/libogg-1.3.0/oggstream.html +594 -0
  1069. data/vendor/local/share/doc/libogg-1.3.0/rfc3533.txt +843 -0
  1070. data/vendor/local/share/doc/libogg-1.3.0/rfc5334.txt +787 -0
  1071. data/vendor/local/share/doc/libogg-1.3.0/skeleton.html +222 -0
  1072. data/vendor/local/share/doc/libogg-1.3.0/stream.png +0 -0
  1073. data/vendor/local/share/doc/libogg-1.3.0/vorbisword2.png +0 -0
  1074. data/vendor/local/share/doc/libogg-1.3.0/white-ogg.png +0 -0
  1075. data/vendor/local/share/doc/libogg-1.3.0/white-xifish.png +0 -0
  1076. data/vendor/local/share/doc/libtheora-1.1.1/color.html +602 -0
  1077. data/vendor/local/share/doc/libtheora-1.1.1/doxygen-build.stamp +0 -0
  1078. data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.txt +1400 -0
  1079. data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.xml +1146 -0
  1080. data/vendor/local/share/doc/libtheora-1.1.1/html/annotated.html +82 -0
  1081. data/vendor/local/share/doc/libtheora-1.1.1/html/bc_s.png +0 -0
  1082. data/vendor/local/share/doc/libtheora-1.1.1/html/classes.html +79 -0
  1083. data/vendor/local/share/doc/libtheora-1.1.1/html/closed.png +0 -0
  1084. data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h.html +469 -0
  1085. data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h_source.html +233 -0
  1086. data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.css +949 -0
  1087. data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.png +0 -0
  1088. data/vendor/local/share/doc/libtheora-1.1.1/html/files.html +75 -0
  1089. data/vendor/local/share/doc/libtheora-1.1.1/html/functions.html +385 -0
  1090. data/vendor/local/share/doc/libtheora-1.1.1/html/functions_vars.html +385 -0
  1091. data/vendor/local/share/doc/libtheora-1.1.1/html/globals.html +502 -0
  1092. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_defs.html +247 -0
  1093. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_enum.html +90 -0
  1094. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_eval.html +129 -0
  1095. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_func.html +247 -0
  1096. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_type.html +102 -0
  1097. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_vars.html +84 -0
  1098. data/vendor/local/share/doc/libtheora-1.1.1/html/group__basefuncs.html +568 -0
  1099. data/vendor/local/share/doc/libtheora-1.1.1/html/group__decfuncs.html +402 -0
  1100. data/vendor/local/share/doc/libtheora-1.1.1/html/group__encfuncs.html +352 -0
  1101. data/vendor/local/share/doc/libtheora-1.1.1/html/group__oldfuncs.html +1662 -0
  1102. data/vendor/local/share/doc/libtheora-1.1.1/html/index.html +76 -0
  1103. data/vendor/local/share/doc/libtheora-1.1.1/html/modules.html +69 -0
  1104. data/vendor/local/share/doc/libtheora-1.1.1/html/nav_f.png +0 -0
  1105. data/vendor/local/share/doc/libtheora-1.1.1/html/nav_h.png +0 -0
  1106. data/vendor/local/share/doc/libtheora-1.1.1/html/open.png +0 -0
  1107. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__comment.html +158 -0
  1108. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__huff__code.html +122 -0
  1109. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__img__plane.html +155 -0
  1110. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__info.html +397 -0
  1111. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__info.html +171 -0
  1112. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__ranges.html +139 -0
  1113. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__stripe__callback.html +121 -0
  1114. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__comment.html +157 -0
  1115. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__info.html +527 -0
  1116. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__state.html +142 -0
  1117. data/vendor/local/share/doc/libtheora-1.1.1/html/structyuv__buffer.html +243 -0
  1118. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_a.png +0 -0
  1119. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.gif +0 -0
  1120. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.png +0 -0
  1121. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_h.png +0 -0
  1122. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_l.gif +0 -0
  1123. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_r.gif +0 -0
  1124. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_s.png +0 -0
  1125. data/vendor/local/share/doc/libtheora-1.1.1/html/tabs.css +59 -0
  1126. data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h.html +258 -0
  1127. data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h_source.html +283 -0
  1128. data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h.html +405 -0
  1129. data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h_source.html +146 -0
  1130. data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h.html +716 -0
  1131. data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h_source.html +155 -0
  1132. data/vendor/local/share/doc/libtheora-1.1.1/latex/Makefile +39 -0
  1133. data/vendor/local/share/doc/libtheora-1.1.1/latex/annotated.tex +14 -0
  1134. data/vendor/local/share/doc/libtheora-1.1.1/latex/codec_8h.tex +273 -0
  1135. data/vendor/local/share/doc/libtheora-1.1.1/latex/doxygen.sty +482 -0
  1136. data/vendor/local/share/doc/libtheora-1.1.1/latex/files.tex +7 -0
  1137. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__basefuncs.tex +336 -0
  1138. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__decfuncs.tex +223 -0
  1139. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__encfuncs.tex +195 -0
  1140. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__oldfuncs.tex +1046 -0
  1141. data/vendor/local/share/doc/libtheora-1.1.1/latex/index.tex +12 -0
  1142. data/vendor/local/share/doc/libtheora-1.1.1/latex/modules.tex +7 -0
  1143. data/vendor/local/share/doc/libtheora-1.1.1/latex/refman.tex +76 -0
  1144. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__comment.tex +67 -0
  1145. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__huff__code.tex +45 -0
  1146. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__img__plane.tex +63 -0
  1147. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__info.tex +189 -0
  1148. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__info.tex +95 -0
  1149. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__ranges.tex +54 -0
  1150. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__stripe__callback.tex +45 -0
  1151. data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__comment.tex +67 -0
  1152. data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__info.tex +233 -0
  1153. data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__state.tex +45 -0
  1154. data/vendor/local/share/doc/libtheora-1.1.1/latex/structyuv__buffer.tex +114 -0
  1155. data/vendor/local/share/doc/libtheora-1.1.1/latex/theora_8h.tex +191 -0
  1156. data/vendor/local/share/doc/libtheora-1.1.1/latex/theoradec_8h.tex +251 -0
  1157. data/vendor/local/share/doc/libtheora-1.1.1/latex/theoraenc_8h.tex +512 -0
  1158. data/vendor/local/share/doc/libtheora-1.1.1/vp3-format.txt +1305 -0
  1159. data/vendor/local/share/doc/libvorbis-1.3.2/doxygen-build.stamp +0 -0
  1160. data/vendor/local/share/doc/libvorbis-1.3.2/eightphase.png +0 -0
  1161. data/vendor/local/share/doc/libvorbis-1.3.2/evenlsp.png +0 -0
  1162. data/vendor/local/share/doc/libvorbis-1.3.2/fish_xiph_org.png +0 -0
  1163. data/vendor/local/share/doc/libvorbis-1.3.2/floor1_inverse_dB_table.html +154 -0
  1164. data/vendor/local/share/doc/libvorbis-1.3.2/floorval.png +0 -0
  1165. data/vendor/local/share/doc/libvorbis-1.3.2/fourphase.png +0 -0
  1166. data/vendor/local/share/doc/libvorbis-1.3.2/framing.html +431 -0
  1167. data/vendor/local/share/doc/libvorbis-1.3.2/helper.html +239 -0
  1168. data/vendor/local/share/doc/libvorbis-1.3.2/index.html +114 -0
  1169. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/index.html +44 -0
  1170. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/overview.html +136 -0
  1171. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/reference.html +86 -0
  1172. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/return.html +79 -0
  1173. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/style.css +7 -0
  1174. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis.html +86 -0
  1175. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_blockout.html +79 -0
  1176. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_buffer.html +74 -0
  1177. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_headerout.html +83 -0
  1178. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_init.html +66 -0
  1179. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_wrote.html +80 -0
  1180. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_addblock.html +74 -0
  1181. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_flushpacket.html +80 -0
  1182. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block.html +60 -0
  1183. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_clear.html +61 -0
  1184. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_init.html +66 -0
  1185. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment.html +80 -0
  1186. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add.html +70 -0
  1187. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add_tag.html +74 -0
  1188. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_clear.html +69 -0
  1189. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_init.html +72 -0
  1190. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query.html +72 -0
  1191. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query_count.html +66 -0
  1192. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_commentheader_out.html +65 -0
  1193. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_clear.html +63 -0
  1194. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_state.html +57 -0
  1195. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_granule_time.html +65 -0
  1196. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info.html +80 -0
  1197. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_blocksize.html +66 -0
  1198. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_clear.html +61 -0
  1199. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_init.html +62 -0
  1200. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_packet_blocksize.html +66 -0
  1201. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis.html +70 -0
  1202. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_blockin.html +69 -0
  1203. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate.html +68 -0
  1204. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate_p.html +64 -0
  1205. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_headerin.html +80 -0
  1206. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_idheader.html +63 -0
  1207. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_init.html +69 -0
  1208. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_lapout.html +74 -0
  1209. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_pcmout.html +75 -0
  1210. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_read.html +67 -0
  1211. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_restart.html +64 -0
  1212. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_trackonly.html +71 -0
  1213. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_version_string.html +56 -0
  1214. data/vendor/local/share/doc/libvorbis-1.3.2/lspmap.png +0 -0
  1215. data/vendor/local/share/doc/libvorbis-1.3.2/oddlsp.png +0 -0
  1216. data/vendor/local/share/doc/libvorbis-1.3.2/oggstream.html +234 -0
  1217. data/vendor/local/share/doc/libvorbis-1.3.2/programming.html +554 -0
  1218. data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.txt +1459 -0
  1219. data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.xml +1176 -0
  1220. data/vendor/local/share/doc/libvorbis-1.3.2/squarepolar.png +0 -0
  1221. data/vendor/local/share/doc/libvorbis-1.3.2/stereo.html +419 -0
  1222. data/vendor/local/share/doc/libvorbis-1.3.2/stream.png +0 -0
  1223. data/vendor/local/share/doc/libvorbis-1.3.2/v-comment.html +285 -0
  1224. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-clip.txt +139 -0
  1225. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-errors.txt +103 -0
  1226. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-fidelity.html +180 -0
  1227. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis.html +234 -0
  1228. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/changes.html +104 -0
  1229. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/examples.html +133 -0
  1230. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/index.html +40 -0
  1231. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage2_arg.html +92 -0
  1232. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage_arg.html +92 -0
  1233. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/overview.html +382 -0
  1234. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/reference.html +54 -0
  1235. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/style.css +7 -0
  1236. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_ctl.html +183 -0
  1237. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init.html +88 -0
  1238. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init_vbr.html +81 -0
  1239. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_init.html +88 -0
  1240. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_managed.html +102 -0
  1241. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_vbr.html +90 -0
  1242. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/OggVorbis_File.html +137 -0
  1243. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/callbacks.html +121 -0
  1244. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chaining_example_c.html +90 -0
  1245. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chainingexample.html +175 -0
  1246. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/crosslap.html +121 -0
  1247. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/datastructures.html +61 -0
  1248. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/decoding.html +92 -0
  1249. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/example.html +208 -0
  1250. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/exampleindex.html +39 -0
  1251. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/fileinfo.html +95 -0
  1252. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/index.html +49 -0
  1253. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/initialization.html +118 -0
  1254. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate.html +72 -0
  1255. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate_instant.html +65 -0
  1256. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_callbacks.html +117 -0
  1257. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_clear.html +64 -0
  1258. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_comment.html +66 -0
  1259. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_crosslap.html +100 -0
  1260. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_fopen.html +124 -0
  1261. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_info.html +64 -0
  1262. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open.html +183 -0
  1263. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open_callbacks.html +147 -0
  1264. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek.html +83 -0
  1265. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_lap.html +103 -0
  1266. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page.html +84 -0
  1267. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page_lap.html +112 -0
  1268. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_tell.html +63 -0
  1269. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_total.html +67 -0
  1270. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek.html +83 -0
  1271. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek_lap.html +110 -0
  1272. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_tell.html +65 -0
  1273. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_total.html +68 -0
  1274. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read.html +148 -0
  1275. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_filter.html +114 -0
  1276. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_float.html +105 -0
  1277. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_seekable.html +63 -0
  1278. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_serialnumber.html +67 -0
  1279. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_streams.html +64 -0
  1280. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test.html +101 -0
  1281. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_callbacks.html +111 -0
  1282. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_open.html +82 -0
  1283. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek.html +82 -0
  1284. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_lap.html +105 -0
  1285. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page.html +83 -0
  1286. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page_lap.html +112 -0
  1287. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_tell.html +63 -0
  1288. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_total.html +67 -0
  1289. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/overview.html +61 -0
  1290. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/reference.html +86 -0
  1291. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekexample.html +152 -0
  1292. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking.html +107 -0
  1293. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_example_c.html +86 -0
  1294. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_test_c.html +86 -0
  1295. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekingexample.html +203 -0
  1296. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/style.css +7 -0
  1297. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/threads.html +50 -0
  1298. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/vorbisfile_example_c.html +106 -0
  1299. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisword2.png +0 -0
  1300. data/vendor/local/share/doc/libvorbis-1.3.2/wait.png +0 -0
  1301. data/vendor/local/share/doc/libvorbis-1.3.2/white-xifish.png +0 -0
  1302. data/vendor/local/share/doc/libxml2-2.7.7/Copyright +27 -0
  1303. data/vendor/local/share/doc/libxml2-2.7.7/examples/testHTML.c +880 -0
  1304. data/vendor/local/share/doc/libxml2-2.7.7/examples/testSAX.c +1198 -0
  1305. data/vendor/local/share/doc/libxml2-2.7.7/examples/testXPath.c +227 -0
  1306. data/vendor/local/share/doc/libxml2-2.7.7/examples/xmllint.c +3722 -0
  1307. data/vendor/local/share/doc/libxml2-2.7.7/html/DOM.gif +0 -0
  1308. data/vendor/local/share/doc/libxml2-2.7.7/html/FAQ.html +282 -0
  1309. data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-180x168.gif +0 -0
  1310. data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-90x34.gif +0 -0
  1311. data/vendor/local/share/doc/libxml2-2.7.7/html/encoding.html +206 -0
  1312. data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xml +751 -0
  1313. data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xsl +174 -0
  1314. data/vendor/local/share/doc/libxml2-2.7.7/html/html/book1.html +13 -0
  1315. data/vendor/local/share/doc/libxml2-2.7.7/html/html/home.png +0 -0
  1316. data/vendor/local/share/doc/libxml2-2.7.7/html/html/index.html +13 -0
  1317. data/vendor/local/share/doc/libxml2-2.7.7/html/html/left.png +0 -0
  1318. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-DOCBparser.html +51 -0
  1319. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLparser.html +182 -0
  1320. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLtree.html +73 -0
  1321. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX.html +125 -0
  1322. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX2.html +128 -0
  1323. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-c14n.html +38 -0
  1324. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-catalog.html +142 -0
  1325. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-chvalid.html +72 -0
  1326. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-debugXML.html +120 -0
  1327. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-dict.html +49 -0
  1328. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-encoding.html +118 -0
  1329. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-entities.html +79 -0
  1330. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-globals.html +152 -0
  1331. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-hash.html +116 -0
  1332. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-lib.html +13 -0
  1333. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-list.html +120 -0
  1334. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanoftp.html +92 -0
  1335. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanohttp.html +65 -0
  1336. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parser.html +555 -0
  1337. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parserInternals.html +319 -0
  1338. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-pattern.html +76 -0
  1339. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-relaxng.html +162 -0
  1340. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schemasInternals.html +373 -0
  1341. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schematron.html +81 -0
  1342. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-threads.html +72 -0
  1343. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-tree.html +958 -0
  1344. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-uri.html +73 -0
  1345. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-valid.html +289 -0
  1346. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xinclude.html +59 -0
  1347. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xlink.html +82 -0
  1348. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlIO.html +206 -0
  1349. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlautomata.html +85 -0
  1350. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlerror.html +862 -0
  1351. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlexports.html +20 -0
  1352. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmemory.html +107 -0
  1353. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmodule.html +38 -0
  1354. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlreader.html +327 -0
  1355. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlregexp.html +143 -0
  1356. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlsave.html +59 -0
  1357. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemas.html +173 -0
  1358. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemastypes.html +123 -0
  1359. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlstring.html +108 -0
  1360. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlunicode.html +512 -0
  1361. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlversion.html +60 -0
  1362. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlwriter.html +258 -0
  1363. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpath.html +307 -0
  1364. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpathInternals.html +394 -0
  1365. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpointer.html +83 -0
  1366. data/vendor/local/share/doc/libxml2-2.7.7/html/html/right.png +0 -0
  1367. data/vendor/local/share/doc/libxml2-2.7.7/html/html/up.png +0 -0
  1368. data/vendor/local/share/doc/libxml2-2.7.7/html/io1.c +166 -0
  1369. data/vendor/local/share/doc/libxml2-2.7.7/html/io1.res +5 -0
  1370. data/vendor/local/share/doc/libxml2-2.7.7/html/io2.c +58 -0
  1371. data/vendor/local/share/doc/libxml2-2.7.7/html/io2.res +2 -0
  1372. data/vendor/local/share/doc/libxml2-2.7.7/html/libxml.gif +0 -0
  1373. data/vendor/local/share/doc/libxml2-2.7.7/html/parse1.c +56 -0
  1374. data/vendor/local/share/doc/libxml2-2.7.7/html/parse2.c +72 -0
  1375. data/vendor/local/share/doc/libxml2-2.7.7/html/parse3.c +60 -0
  1376. data/vendor/local/share/doc/libxml2-2.7.7/html/parse4.c +143 -0
  1377. data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.c +107 -0
  1378. data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.res +14 -0
  1379. data/vendor/local/share/doc/libxml2-2.7.7/html/reader2.c +122 -0
  1380. data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.c +120 -0
  1381. data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.res +13 -0
  1382. data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.c +122 -0
  1383. data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.res +3 -0
  1384. data/vendor/local/share/doc/libxml2-2.7.7/html/redhat.gif +0 -0
  1385. data/vendor/local/share/doc/libxml2-2.7.7/html/smallfootonly.gif +0 -0
  1386. data/vendor/local/share/doc/libxml2-2.7.7/html/structure.gif +0 -0
  1387. data/vendor/local/share/doc/libxml2-2.7.7/html/test1.xml +1 -0
  1388. data/vendor/local/share/doc/libxml2-2.7.7/html/test2.xml +13 -0
  1389. data/vendor/local/share/doc/libxml2-2.7.7/html/test3.xml +39 -0
  1390. data/vendor/local/share/doc/libxml2-2.7.7/html/testWriter.c +1198 -0
  1391. data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.c +94 -0
  1392. data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.res +4 -0
  1393. data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.c +118 -0
  1394. data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.res +18 -0
  1395. data/vendor/local/share/doc/libxml2-2.7.7/html/tst.xml +7 -0
  1396. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apa.html +8 -0
  1397. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apb.html +14 -0
  1398. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apc.html +82 -0
  1399. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apd.html +76 -0
  1400. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ape.html +78 -0
  1401. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apf.html +67 -0
  1402. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apg.html +75 -0
  1403. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/aph.html +76 -0
  1404. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/api.html +4 -0
  1405. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s02.html +14 -0
  1406. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s03.html +47 -0
  1407. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s04.html +54 -0
  1408. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s05.html +55 -0
  1409. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s06.html +35 -0
  1410. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s07.html +30 -0
  1411. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s08.html +38 -0
  1412. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s09.html +63 -0
  1413. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/blank.png +0 -0
  1414. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/1.png +0 -0
  1415. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/10.png +0 -0
  1416. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/2.png +0 -0
  1417. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/3.png +0 -0
  1418. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/4.png +0 -0
  1419. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/5.png +0 -0
  1420. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/6.png +0 -0
  1421. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/7.png +0 -0
  1422. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/8.png +0 -0
  1423. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/9.png +0 -0
  1424. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/caution.png +0 -0
  1425. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/draft.png +0 -0
  1426. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/home.png +0 -0
  1427. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/important.png +0 -0
  1428. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/next.png +0 -0
  1429. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/note.png +0 -0
  1430. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/prev.png +0 -0
  1431. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/tip.png +0 -0
  1432. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-blank.png +0 -0
  1433. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-minus.png +0 -0
  1434. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-plus.png +0 -0
  1435. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/up.png +0 -0
  1436. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/warning.png +0 -0
  1437. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddattribute.c +64 -0
  1438. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddkeyword.c +75 -0
  1439. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeconvert.c +73 -0
  1440. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includegetattribute.c +72 -0
  1441. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includekeyword.c +79 -0
  1442. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includexpath.c +74 -0
  1443. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/index.html +14 -0
  1444. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ix01.html +1 -0
  1445. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/xmltutorial.pdf +1336 -0
  1446. data/vendor/local/share/doc/libxml2-2.7.7/html/w3c.png +0 -0
  1447. data/vendor/local/share/doc/libxml2-2.7.7/html/writer.xml +2 -0
  1448. data/vendor/local/share/doc/libxml2-2.7.7/html/xml.html +5344 -0
  1449. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.c +250 -0
  1450. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.res +5 -0
  1451. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.c +190 -0
  1452. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.res +30 -0
  1453. data/vendor/local/share/doc/speex/manual.pdf +0 -0
  1454. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  1455. data/vendor/local/share/glib-2.0/schemas/org.freedesktop.gstreamer-0.10.default-elements.gschema.xml +94 -0
  1456. data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer10Bands.prs +174 -0
  1457. data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer3Bands.prs +14 -0
  1458. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/annotation-glossary.html +77 -0
  1459. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-deprecated.html +132 -0
  1460. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-full.html +5106 -0
  1461. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/compiling.html +64 -0
  1462. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp +1398 -0
  1463. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp2 +1723 -0
  1464. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsink.html +568 -0
  1465. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsrc.html +664 -0
  1466. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-encoding-profile.html +1606 -0
  1467. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudio.html +400 -0
  1468. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudioclock.html +317 -0
  1469. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiofilter.html +165 -0
  1470. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiomixerutils.html +144 -0
  1471. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosink.html +202 -0
  1472. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosrc.html +203 -0
  1473. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosink.html +447 -0
  1474. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosrc.html +402 -0
  1475. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpaudiopayload.html +377 -0
  1476. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpdepayload.html +260 -0
  1477. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertppayload.html +469 -0
  1478. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcddabasesrc.html +283 -0
  1479. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalance.html +346 -0
  1480. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalancechannel.html +156 -0
  1481. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstdiscoverer.html +1457 -0
  1482. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfft.html +130 -0
  1483. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf32.html +285 -0
  1484. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf64.html +285 -0
  1485. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts16.html +285 -0
  1486. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts32.html +285 -0
  1487. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfloatcast.html +105 -0
  1488. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixer.html +956 -0
  1489. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixeroptions.html +108 -0
  1490. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixertrack.html +259 -0
  1491. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmultichannel.html +398 -0
  1492. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnavigation.html +1166 -0
  1493. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnetbuffer.html +498 -0
  1494. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutils.html +225 -0
  1495. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilscodecutils.html +469 -0
  1496. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsdescriptions.html +297 -0
  1497. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsinstallplugins.html +821 -0
  1498. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsmissingplugins.html +510 -0
  1499. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpropertyprobe.html +449 -0
  1500. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstriff.html +2092 -0
  1501. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstringbuffer.html +1480 -0
  1502. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtcpbuffer.html +1985 -0
  1503. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtpbuffer.html +1959 -0
  1504. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtppayloads.html +391 -0
  1505. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspbase64.html +121 -0
  1506. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspconnection.html +1421 -0
  1507. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspdefs.html +879 -0
  1508. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspextension.html +104 -0
  1509. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspmessage.html +988 -0
  1510. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsprange.html +269 -0
  1511. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsptransport.html +499 -0
  1512. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspurl.html +315 -0
  1513. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstsdpmessage.html +2802 -0
  1514. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gststreamvolume.html +308 -0
  1515. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttag.html +829 -0
  1516. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagdemux.html +248 -0
  1517. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagid3.html +252 -0
  1518. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttaglanguagecodes.html +243 -0
  1519. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagvorbis.html +272 -0
  1520. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagxmp.html +119 -0
  1521. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttuner.html +723 -0
  1522. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunerchannel.html +264 -0
  1523. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunernorm.html +99 -0
  1524. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideo.html +1942 -0
  1525. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideofilter.html +95 -0
  1526. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideoorientation.html +406 -0
  1527. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideosink.html +253 -0
  1528. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstxoverlay.html +864 -0
  1529. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-app.html +48 -0
  1530. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-audio.html +68 -0
  1531. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-base-utils.html +60 -0
  1532. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-cdda.html +38 -0
  1533. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-ffft.html +57 -0
  1534. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-floatcast.html +38 -0
  1535. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-interfaces.html +82 -0
  1536. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-libs-hierarchy.html +76 -0
  1537. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-netbuffer.html +38 -0
  1538. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-plugins-base.html +285 -0
  1539. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-riff.html +38 -0
  1540. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtp.html +55 -0
  1541. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtsp.html +61 -0
  1542. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-sdp.html +38 -0
  1543. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-tag.html +59 -0
  1544. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-video.html +46 -0
  1545. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/home.png +0 -0
  1546. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.html +284 -0
  1547. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.sgml +1973 -0
  1548. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/left.png +0 -0
  1549. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/right.png +0 -0
  1550. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/style.css +266 -0
  1551. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/up.png +0 -0
  1552. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/GstPlayBaseBin.html +219 -0
  1553. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch01.html +185 -0
  1554. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch02.html +125 -0
  1555. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch03.html +33 -0
  1556. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp +684 -0
  1557. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp2 +782 -0
  1558. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html +215 -0
  1559. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html +151 -0
  1560. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html +216 -0
  1561. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html +213 -0
  1562. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html +463 -0
  1563. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html +405 -0
  1564. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html +338 -0
  1565. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html +280 -0
  1566. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html +233 -0
  1567. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html +321 -0
  1568. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html +257 -0
  1569. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html +270 -0
  1570. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html +303 -0
  1571. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html +642 -0
  1572. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html +375 -0
  1573. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html +296 -0
  1574. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html +171 -0
  1575. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html +204 -0
  1576. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html +233 -0
  1577. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html +228 -0
  1578. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html +216 -0
  1579. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html +215 -0
  1580. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html +256 -0
  1581. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html +269 -0
  1582. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html +976 -0
  1583. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html +177 -0
  1584. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html +255 -0
  1585. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html +463 -0
  1586. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html +1204 -0
  1587. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-adder.html +74 -0
  1588. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-alsa.html +84 -0
  1589. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-app.html +80 -0
  1590. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioconvert.html +74 -0
  1591. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiorate.html +74 -0
  1592. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioresample.html +74 -0
  1593. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiotestsrc.html +74 -0
  1594. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-cdparanoia.html +74 -0
  1595. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-decodebin.html +74 -0
  1596. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-encoding.html +74 -0
  1597. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ffmpegcolorspace.html +74 -0
  1598. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gdp.html +80 -0
  1599. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gio.html +88 -0
  1600. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gnomevfs.html +80 -0
  1601. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-libvisual.html +104 -0
  1602. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ogg.html +100 -0
  1603. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-pango.html +88 -0
  1604. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-playback.html +88 -0
  1605. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-subparse.html +80 -0
  1606. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-tcp.html +92 -0
  1607. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-theora.html +84 -0
  1608. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-typefindfunctions.html +71 -0
  1609. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-uridecodebin.html +80 -0
  1610. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-video4linux.html +74 -0
  1611. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videorate.html +74 -0
  1612. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videoscale.html +74 -0
  1613. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videotestsrc.html +74 -0
  1614. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-volume.html +74 -0
  1615. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-vorbis.html +88 -0
  1616. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ximagesink.html +74 -0
  1617. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-xvimagesink.html +74 -0
  1618. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html +233 -0
  1619. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html +186 -0
  1620. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html +187 -0
  1621. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html +180 -0
  1622. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html +187 -0
  1623. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html +651 -0
  1624. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html +243 -0
  1625. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html +194 -0
  1626. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html +416 -0
  1627. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html +222 -0
  1628. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html +253 -0
  1629. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html +608 -0
  1630. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html +320 -0
  1631. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html +489 -0
  1632. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html +663 -0
  1633. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html +236 -0
  1634. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html +176 -0
  1635. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html +257 -0
  1636. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html +199 -0
  1637. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html +194 -0
  1638. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html +332 -0
  1639. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html +460 -0
  1640. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/home.png +0 -0
  1641. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.html +288 -0
  1642. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.sgml +1059 -0
  1643. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/left.png +0 -0
  1644. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/right.png +0 -0
  1645. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/style.css +266 -0
  1646. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/up.png +0 -0
  1647. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBin.html +1180 -0
  1648. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBus.html +1127 -0
  1649. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstChildProxy.html +575 -0
  1650. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstClock.html +1846 -0
  1651. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElement.html +3919 -0
  1652. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElementFactory.html +1180 -0
  1653. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstGhostPad.html +337 -0
  1654. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstImplementsInterface.html +179 -0
  1655. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndex.html +1449 -0
  1656. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndexFactory.html +205 -0
  1657. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstObject.html +1498 -0
  1658. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPad.html +5192 -0
  1659. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPadTemplate.html +624 -0
  1660. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPipeline.html +626 -0
  1661. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPlugin.html +1285 -0
  1662. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPluginFeature.html +529 -0
  1663. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPreset.html +437 -0
  1664. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstRegistry.html +1021 -0
  1665. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstSystemClock.html +161 -0
  1666. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTagSetter.html +504 -0
  1667. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTask.html +766 -0
  1668. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTaskPool.html +291 -0
  1669. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTypeFindFactory.html +290 -0
  1670. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstXML.html +453 -0
  1671. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/annotation-glossary.html +101 -0
  1672. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-deprecated.html +188 -0
  1673. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-full.html +7056 -0
  1674. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-building.html +109 -0
  1675. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-running.html +205 -0
  1676. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp +1814 -0
  1677. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp2 +2190 -0
  1678. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-Gst.html +538 -0
  1679. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstAtomicQueue.html +231 -0
  1680. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBuffer.html +1458 -0
  1681. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBufferList.html +1043 -0
  1682. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstCaps.html +1646 -0
  1683. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstDateTime.html +584 -0
  1684. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstEvent.html +2195 -0
  1685. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFilter.html +174 -0
  1686. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFormat.html +349 -0
  1687. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstGError.html +645 -0
  1688. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstInfo.html +2466 -0
  1689. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstIterator.html +1019 -0
  1690. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMessage.html +3301 -0
  1691. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMiniObject.html +662 -0
  1692. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParamSpec.html +252 -0
  1693. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParse.html +539 -0
  1694. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstPoll.html +719 -0
  1695. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstQuery.html +1963 -0
  1696. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstSegment.html +816 -0
  1697. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstStructure.html +2196 -0
  1698. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTagList.html +3477 -0
  1699. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTrace.html +591 -0
  1700. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTypeFind.html +403 -0
  1701. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUriHandler.html +635 -0
  1702. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUtils.html +2334 -0
  1703. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstValue.html +2442 -0
  1704. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstVersion.html +140 -0
  1705. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-gstconfig.html +175 -0
  1706. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-hierarchy.html +60 -0
  1707. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-support.html +42 -0
  1708. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer.html +57 -0
  1709. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/home.png +0 -0
  1710. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.html +224 -0
  1711. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.sgml +2441 -0
  1712. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/left.png +0 -0
  1713. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/libgstreamer.html +201 -0
  1714. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/right.png +0 -0
  1715. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/style.css +266 -0
  1716. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/up.png +0 -0
  1717. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstAdapter.html +745 -0
  1718. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSink.html +1298 -0
  1719. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSrc.html +844 -0
  1720. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseTransform.html +875 -0
  1721. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstCollectPads.html +1002 -0
  1722. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstControlSource.html +407 -0
  1723. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstController.html +936 -0
  1724. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstInterpolationControlSource.html +363 -0
  1725. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstLFOControlSource.html +222 -0
  1726. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetClientClock.html +174 -0
  1727. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetTimeProvider.html +172 -0
  1728. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstPushSrc.html +108 -0
  1729. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/annotation-glossary.html +89 -0
  1730. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-deprecated.html +75 -0
  1731. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-full.html +2227 -0
  1732. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gdp-header.png +0 -0
  1733. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-base.html +74 -0
  1734. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-check.html +45 -0
  1735. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-control.html +51 -0
  1736. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-dataprotocol.html +33 -0
  1737. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-hierarchy.html +49 -0
  1738. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp +589 -0
  1739. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp2 +615 -0
  1740. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBaseParse.html +1004 -0
  1741. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBitReader.html +1008 -0
  1742. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBufferStraw.html +169 -0
  1743. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteReader.html +3668 -0
  1744. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteWriter.html +2233 -0
  1745. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstCheck.html +585 -0
  1746. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstControllerGObject.html +464 -0
  1747. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstDataQueue.html +544 -0
  1748. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstNetTimePacket.html +249 -0
  1749. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstStreamConsistency.html +130 -0
  1750. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstTypeFindHelper.html +364 -0
  1751. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-gstdataprotocol.html +818 -0
  1752. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs.html +132 -0
  1753. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-net.html +47 -0
  1754. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/home.png +0 -0
  1755. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.html +129 -0
  1756. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.sgml +707 -0
  1757. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/left.png +0 -0
  1758. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/right.png +0 -0
  1759. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/style.css +266 -0
  1760. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/up.png +0 -0
  1761. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch01.html +83 -0
  1762. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch02.html +38 -0
  1763. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp +214 -0
  1764. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp2 +244 -0
  1765. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-capsfilter.html +184 -0
  1766. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesink.html +358 -0
  1767. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesrc.html +525 -0
  1768. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsink.html +166 -0
  1769. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsrc.html +210 -0
  1770. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesink.html +202 -0
  1771. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesrc.html +230 -0
  1772. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-funnel.html +156 -0
  1773. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-identity.html +310 -0
  1774. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-input-selector.html +327 -0
  1775. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-multiqueue.html +397 -0
  1776. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-output-selector.html +183 -0
  1777. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreelements.html +140 -0
  1778. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreindexers.html +70 -0
  1779. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue.html +425 -0
  1780. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue2.html +308 -0
  1781. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-tee.html +273 -0
  1782. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-typefind.html +243 -0
  1783. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-valve.html +179 -0
  1784. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/home.png +0 -0
  1785. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.html +95 -0
  1786. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.sgml +338 -0
  1787. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/left.png +0 -0
  1788. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/right.png +0 -0
  1789. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/style.css +266 -0
  1790. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/up.png +0 -0
  1791. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  1792. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  1793. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  1794. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  1795. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  1796. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +371 -0
  1797. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  1798. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  1799. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  1800. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  1801. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  1802. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  1803. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  1804. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +119 -0
  1805. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +208 -0
  1806. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  1807. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  1808. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  1809. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  1810. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +177 -0
  1811. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  1812. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +762 -0
  1813. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +673 -0
  1814. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  1815. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  1816. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  1817. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  1818. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  1819. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1542 -0
  1820. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  1821. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  1822. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  1823. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  1824. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +337 -0
  1825. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  1826. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +950 -0
  1827. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  1828. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  1829. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  1830. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +560 -0
  1831. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  1832. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +132 -0
  1833. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +299 -0
  1834. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  1835. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  1836. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  1837. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +277 -0
  1838. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +474 -0
  1839. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +529 -0
  1840. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  1841. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  1842. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3529 -0
  1843. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  1844. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  1845. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  1846. data/vendor/local/share/license/gst-ffmpeg/AUTHORS +1 -0
  1847. data/vendor/local/share/license/gst-ffmpeg/COPYING +339 -0
  1848. data/vendor/local/share/license/gst-ffmpeg/COPYING.LIB +481 -0
  1849. data/vendor/local/share/license/gst-plugins-bad/AUTHORS +21 -0
  1850. data/vendor/local/share/license/gst-plugins-bad/COPYING +340 -0
  1851. data/vendor/local/share/license/gst-plugins-bad/COPYING.LIB +481 -0
  1852. data/vendor/local/share/license/gst-plugins-base/AUTHORS +23 -0
  1853. data/vendor/local/share/license/gst-plugins-base/COPYING +340 -0
  1854. data/vendor/local/share/license/gst-plugins-base/COPYING.LIB +481 -0
  1855. data/vendor/local/share/license/gst-plugins-good/AUTHORS +21 -0
  1856. data/vendor/local/share/license/gst-plugins-good/COPYING +504 -0
  1857. data/vendor/local/share/license/gstreamer/AUTHORS +32 -0
  1858. data/vendor/local/share/license/gstreamer/COPYING +481 -0
  1859. data/vendor/local/share/license/libav/COPYING.GPLv2 +339 -0
  1860. data/vendor/local/share/license/libav/COPYING.GPLv3 +674 -0
  1861. data/vendor/local/share/license/libav/COPYING.LGPLv2.1 +504 -0
  1862. data/vendor/local/share/license/libav/COPYING.LGPLv3 +165 -0
  1863. data/vendor/local/share/license/libav/CREDITS +55 -0
  1864. data/vendor/local/share/license/libav/LICENSE +46 -0
  1865. data/vendor/local/share/license/libogg/AUTHORS +7 -0
  1866. data/vendor/local/share/license/libogg/COPYING +28 -0
  1867. data/vendor/local/share/license/libtheora/AUTHORS +49 -0
  1868. data/vendor/local/share/license/libtheora/COPYING +28 -0
  1869. data/vendor/local/share/license/libvorbis/AUTHORS +3 -0
  1870. data/vendor/local/share/license/libvorbis/COPYING +28 -0
  1871. data/vendor/local/share/license/speex/AUTHORS +18 -0
  1872. data/vendor/local/share/license/speex/COPYING +35 -0
  1873. data/vendor/local/share/man/man1/cjpeg.1 +325 -0
  1874. data/vendor/local/share/man/man1/djpeg.1 +252 -0
  1875. data/vendor/local/share/man/man1/gst-feedback-0.10.1 +38 -0
  1876. data/vendor/local/share/man/man1/gst-inspect-0.10.1 +58 -0
  1877. data/vendor/local/share/man/man1/gst-launch-0.10.1 +475 -0
  1878. data/vendor/local/share/man/man1/gst-typefind-0.10.1 +40 -0
  1879. data/vendor/local/share/man/man1/gst-visualise-0.10.1 +32 -0
  1880. data/vendor/local/share/man/man1/gst-xmlinspect-0.10.1 +51 -0
  1881. data/vendor/local/share/man/man1/gst-xmllaunch-0.10.1 +69 -0
  1882. data/vendor/local/share/man/man1/jpegtran.1 +285 -0
  1883. data/vendor/local/share/man/man1/rdjpgcom.1 +63 -0
  1884. data/vendor/local/share/man/man1/speexdec.1 +78 -0
  1885. data/vendor/local/share/man/man1/speexenc.1 +105 -0
  1886. data/vendor/local/share/man/man1/wrjpgcom.1 +103 -0
  1887. data/vendor/local/share/man/man1/xml2-config.1 +31 -0
  1888. data/vendor/local/share/man/man1/xmlcatalog.1 +229 -0
  1889. data/vendor/local/share/man/man1/xmllint.1 +427 -0
  1890. data/vendor/local/share/man/man3/libxml.3 +71 -0
  1891. data/vendor/local/src/tml/packaging/jpeg_8-1_win32.log +248 -0
  1892. data/vendor/local/src/tml/packaging/jpeg_8-1_win32.sh +44 -0
  1893. data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.log +1518 -0
  1894. data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.sh +60 -0
  1895. data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.log +1244 -0
  1896. data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.sh +66 -0
  1897. metadata +2025 -0
@@ -0,0 +1,3919 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GstElement</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
7
+ <link rel="home" href="index.html" title="GStreamer 0.10 Core Reference Manual">
8
+ <link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
9
+ <link rel="prev" href="gstreamer-GstDateTime.html" title="GstDateTime">
10
+ <link rel="next" href="GstElementFactory.html" title="GstElementFactory">
11
+ <meta name="generator" content="GTK-Doc V1.17 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="gstreamer-GstDateTime.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="libgstreamer.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GStreamer 0.10 Core Reference Manual</th>
21
+ <td><a accesskey="n" href="GstElementFactory.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#GstElement.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GstElement.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GstElement.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GstElement.derived-interfaces" class="shortcut">Known Derived Interfaces</a>
31
+  | 
32
+ <a href="#GstElement.signals" class="shortcut">Signals</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="GstElement"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="GstElement.top_of_page"></a>GstElement</span></h2>
40
+ <p>GstElement — Abstract base class for all pipeline elements</p>
41
+ </td>
42
+ <td valign="top" align="right"></td>
43
+ </tr></table></div>
44
+ <div class="refsynopsisdiv">
45
+ <a name="GstElement.synopsis"></a><h2>Synopsis</h2>
46
+ <pre class="synopsis">
47
+ #include &lt;gst/gst.h&gt;
48
+
49
+ struct <a class="link" href="GstElement.html#GstElement-struct" title="struct GstElement">GstElement</a>;
50
+ struct <a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass">GstElementClass</a>;
51
+ enum <a class="link" href="GstElement.html#GstElementFlags" title="enum GstElementFlags">GstElementFlags</a>;
52
+ enum <a class="link" href="GstElement.html#GstState" title="enum GstState">GstState</a>;
53
+ enum <a class="link" href="GstElement.html#GstStateChange" title="enum GstStateChange">GstStateChange</a>;
54
+ enum <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn">GstStateChangeReturn</a>;
55
+ #define <a class="link" href="GstElement.html#GST-STATE:CAPS" title="GST_STATE()">GST_STATE</a> (elem)
56
+ #define <a class="link" href="GstElement.html#GST-STATE-GET-NEXT:CAPS" title="GST_STATE_GET_NEXT()">GST_STATE_GET_NEXT</a> (cur,
57
+ pending)
58
+ #define <a class="link" href="GstElement.html#GST-STATE-NEXT:CAPS" title="GST_STATE_NEXT()">GST_STATE_NEXT</a> (elem)
59
+ #define <a class="link" href="GstElement.html#GST-STATE-PENDING:CAPS" title="GST_STATE_PENDING()">GST_STATE_PENDING</a> (elem)
60
+ #define <a class="link" href="GstElement.html#GST-STATE-RETURN:CAPS" title="GST_STATE_RETURN()">GST_STATE_RETURN</a> (elem)
61
+ #define <a class="link" href="GstElement.html#GST-STATE-TARGET:CAPS" title="GST_STATE_TARGET()">GST_STATE_TARGET</a> (elem)
62
+ #define <a class="link" href="GstElement.html#GST-STATE-TRANSITION:CAPS" title="GST_STATE_TRANSITION()">GST_STATE_TRANSITION</a> (cur,
63
+ next)
64
+ #define <a class="link" href="GstElement.html#GST-STATE-TRANSITION-CURRENT:CAPS" title="GST_STATE_TRANSITION_CURRENT()">GST_STATE_TRANSITION_CURRENT</a> (trans)
65
+ #define <a class="link" href="GstElement.html#GST-STATE-TRANSITION-NEXT:CAPS" title="GST_STATE_TRANSITION_NEXT()">GST_STATE_TRANSITION_NEXT</a> (trans)
66
+ #define <a class="link" href="GstElement.html#GST-STATE-GET-LOCK:CAPS" title="GST_STATE_GET_LOCK()">GST_STATE_GET_LOCK</a> (elem)
67
+ #define <a class="link" href="GstElement.html#GST-STATE-GET-COND:CAPS" title="GST_STATE_GET_COND()">GST_STATE_GET_COND</a> (elem)
68
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-NAME:CAPS" title="GST_ELEMENT_NAME()">GST_ELEMENT_NAME</a> (elem)
69
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-PARENT:CAPS" title="GST_ELEMENT_PARENT()">GST_ELEMENT_PARENT</a> (elem)
70
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-BUS:CAPS" title="GST_ELEMENT_BUS()">GST_ELEMENT_BUS</a> (elem)
71
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-CLOCK:CAPS" title="GST_ELEMENT_CLOCK()">GST_ELEMENT_CLOCK</a> (elem)
72
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-PADS:CAPS" title="GST_ELEMENT_PADS()">GST_ELEMENT_PADS</a> (elem)
73
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-START-TIME:CAPS" title="GST_ELEMENT_START_TIME()">GST_ELEMENT_START_TIME</a> (elem)
74
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-ERROR:CAPS" title="GST_ELEMENT_ERROR()">GST_ELEMENT_ERROR</a> (el,
75
+ domain,
76
+ code,
77
+ text,
78
+ debug)
79
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-WARNING:CAPS" title="GST_ELEMENT_WARNING()">GST_ELEMENT_WARNING</a> (el,
80
+ domain,
81
+ code,
82
+ text,
83
+ debug)
84
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-INFO:CAPS" title="GST_ELEMENT_INFO()">GST_ELEMENT_INFO</a> (el,
85
+ domain,
86
+ code,
87
+ text,
88
+ debug)
89
+ #define <a class="link" href="GstElement.html#GST-ELEMENT-IS-LOCKED-STATE:CAPS" title="GST_ELEMENT_IS_LOCKED_STATE()">GST_ELEMENT_IS_LOCKED_STATE</a> (elem)
90
+
91
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-class-add-pad-template" title="gst_element_class_add_pad_template ()">gst_element_class_add_pad_template</a> (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
92
+ <em class="parameter"><code><a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> *templ</code></em>);
93
+ <a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="returnvalue">GstPadTemplate</span></a> * <a class="link" href="GstElement.html#gst-element-class-get-pad-template" title="gst_element_class_get_pad_template ()">gst_element_class_get_pad_template</a>
94
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *element_class</code></em>,
95
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
96
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <a class="link" href="GstElement.html#gst-element-class-get-pad-template-list" title="gst_element_class_get_pad_template_list ()">gst_element_class_get_pad_template_list</a>
97
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *element_class</code></em>);
98
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-class-install-std-props" title="gst_element_class_install_std_props ()">gst_element_class_install_std_props</a> (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
99
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_name</code></em>,
100
+ <em class="parameter"><code>...</code></em>);
101
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-class-set-details" title="gst_element_class_set_details ()">gst_element_class_set_details</a> (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
102
+ <em class="parameter"><code>const <a class="link" href="GstElementFactory.html#GstElementDetails" title="struct GstElementDetails"><span class="type">GstElementDetails</span></a> *details</code></em>);
103
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-class-set-details-simple" title="gst_element_class_set_details_simple ()">gst_element_class_set_details_simple</a>
104
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
105
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *longname</code></em>,
106
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *classification</code></em>,
107
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *description</code></em>,
108
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *author</code></em>);
109
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-class-set-documentation-uri" title="gst_element_class_set_documentation_uri ()">gst_element_class_set_documentation_uri</a>
110
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
111
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uri</code></em>);
112
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-class-set-icon-name" title="gst_element_class_set_icon_name ()">gst_element_class_set_icon_name</a> (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
113
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
114
+
115
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-add-pad" title="gst_element_add_pad ()">gst_element_add_pad</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
116
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>);
117
+ <a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * <a class="link" href="GstElement.html#gst-element-get-pad" title="gst_element_get_pad ()">gst_element_get_pad</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
118
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
119
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-create-all-pads" title="gst_element_create_all_pads ()">gst_element_create_all_pads</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
120
+ <a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * <a class="link" href="GstElement.html#gst-element-get-compatible-pad" title="gst_element_get_compatible_pad ()">gst_element_get_compatible_pad</a>
121
+ (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
122
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>,
123
+ <em class="parameter"><code>const <a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> *caps</code></em>);
124
+ <a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="returnvalue">GstPadTemplate</span></a> * <a class="link" href="GstElement.html#gst-element-get-compatible-pad-template" title="gst_element_get_compatible_pad_template ()">gst_element_get_compatible_pad_template</a>
125
+ (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
126
+ <em class="parameter"><code><a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> *compattempl</code></em>);
127
+ <a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * <a class="link" href="GstElement.html#gst-element-get-request-pad" title="gst_element_get_request_pad ()">gst_element_get_request_pad</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
128
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
129
+ <a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * <a class="link" href="GstElement.html#gst-element-get-static-pad" title="gst_element_get_static_pad ()">gst_element_get_static_pad</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
130
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
131
+ <a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * <a class="link" href="GstElement.html#gst-element-request-pad" title="gst_element_request_pad ()">gst_element_request_pad</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
132
+ <em class="parameter"><code><a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> *templ</code></em>,
133
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
134
+ <em class="parameter"><code>const <a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> *caps</code></em>);
135
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-no-more-pads" title="gst_element_no_more_pads ()">gst_element_no_more_pads</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
136
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-release-request-pad" title="gst_element_release_request_pad ()">gst_element_release_request_pad</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
137
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>);
138
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-remove-pad" title="gst_element_remove_pad ()">gst_element_remove_pad</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
139
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>);
140
+ <a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="returnvalue">GstIterator</span></a> * <a class="link" href="GstElement.html#gst-element-iterate-pads" title="gst_element_iterate_pads ()">gst_element_iterate_pads</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
141
+ <a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="returnvalue">GstIterator</span></a> * <a class="link" href="GstElement.html#gst-element-iterate-sink-pads" title="gst_element_iterate_sink_pads ()">gst_element_iterate_sink_pads</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
142
+ <a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="returnvalue">GstIterator</span></a> * <a class="link" href="GstElement.html#gst-element-iterate-src-pads" title="gst_element_iterate_src_pads ()">gst_element_iterate_src_pads</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
143
+
144
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-link" title="gst_element_link ()">gst_element_link</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
145
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>);
146
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-unlink" title="gst_element_unlink ()">gst_element_unlink</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
147
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>);
148
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-link-many" title="gst_element_link_many ()">gst_element_link_many</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element_1</code></em>,
149
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element_2</code></em>,
150
+ <em class="parameter"><code>...</code></em>);
151
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-unlink-many" title="gst_element_unlink_many ()">gst_element_unlink_many</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element_1</code></em>,
152
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element_2</code></em>,
153
+ <em class="parameter"><code>...</code></em>);
154
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-link-pads" title="gst_element_link_pads ()">gst_element_link_pads</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
155
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *srcpadname</code></em>,
156
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
157
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *destpadname</code></em>);
158
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-link-pads-full" title="gst_element_link_pads_full ()">gst_element_link_pads_full</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
159
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *srcpadname</code></em>,
160
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
161
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *destpadname</code></em>,
162
+ <em class="parameter"><code><a class="link" href="GstPad.html#GstPadLinkCheck" title="enum GstPadLinkCheck"><span class="type">GstPadLinkCheck</span></a> flags</code></em>);
163
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-unlink-pads" title="gst_element_unlink_pads ()">gst_element_unlink_pads</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
164
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *srcpadname</code></em>,
165
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
166
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *destpadname</code></em>);
167
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-link-pads-filtered" title="gst_element_link_pads_filtered ()">gst_element_link_pads_filtered</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
168
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *srcpadname</code></em>,
169
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
170
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *destpadname</code></em>,
171
+ <em class="parameter"><code><a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> *filter</code></em>);
172
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-link-filtered" title="gst_element_link_filtered ()">gst_element_link_filtered</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
173
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
174
+ <em class="parameter"><code><a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> *filter</code></em>);
175
+
176
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-set-base-time" title="gst_element_set_base_time ()">gst_element_set_base_time</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
177
+ <em class="parameter"><code><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> time</code></em>);
178
+ <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="returnvalue">GstClockTime</span></a> <a class="link" href="GstElement.html#gst-element-get-base-time" title="gst_element_get_base_time ()">gst_element_get_base_time</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
179
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-set-start-time" title="gst_element_set_start_time ()">gst_element_set_start_time</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
180
+ <em class="parameter"><code><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> time</code></em>);
181
+ <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="returnvalue">GstClockTime</span></a> <a class="link" href="GstElement.html#gst-element-get-start-time" title="gst_element_get_start_time ()">gst_element_get_start_time</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
182
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-set-bus" title="gst_element_set_bus ()">gst_element_set_bus</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
183
+ <em class="parameter"><code><a class="link" href="GstBus.html" title="GstBus"><span class="type">GstBus</span></a> *bus</code></em>);
184
+ <a class="link" href="GstBus.html" title="GstBus"><span class="returnvalue">GstBus</span></a> * <a class="link" href="GstElement.html#gst-element-get-bus" title="gst_element_get_bus ()">gst_element_get_bus</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
185
+ <a class="link" href="GstElementFactory.html" title="GstElementFactory"><span class="returnvalue">GstElementFactory</span></a> * <a class="link" href="GstElement.html#gst-element-get-factory" title="gst_element_get_factory ()">gst_element_get_factory</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
186
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-set-index" title="gst_element_set_index ()">gst_element_set_index</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
187
+ <em class="parameter"><code><a class="link" href="GstIndex.html" title="GstIndex"><span class="type">GstIndex</span></a> *index</code></em>);
188
+ <a class="link" href="GstIndex.html" title="GstIndex"><span class="returnvalue">GstIndex</span></a> * <a class="link" href="GstElement.html#gst-element-get-index" title="gst_element_get_index ()">gst_element_get_index</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
189
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-is-indexable" title="gst_element_is_indexable ()">gst_element_is_indexable</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
190
+ #define <a class="link" href="GstElement.html#gst-element-set-name" title="gst_element_set_name()">gst_element_set_name</a> (elem,
191
+ name)
192
+ #define <a class="link" href="GstElement.html#gst-element-get-name" title="gst_element_get_name()">gst_element_get_name</a> (elem)
193
+ #define <a class="link" href="GstElement.html#gst-element-set-parent" title="gst_element_set_parent()">gst_element_set_parent</a> (elem,
194
+ parent)
195
+ #define <a class="link" href="GstElement.html#gst-element-get-parent" title="gst_element_get_parent()">gst_element_get_parent</a> (elem)
196
+
197
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-requires-clock" title="gst_element_requires_clock ()">gst_element_requires_clock</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
198
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-set-clock" title="gst_element_set_clock ()">gst_element_set_clock</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
199
+ <em class="parameter"><code><a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> *clock</code></em>);
200
+ <a class="link" href="GstClock.html" title="GstClock"><span class="returnvalue">GstClock</span></a> * <a class="link" href="GstElement.html#gst-element-get-clock" title="gst_element_get_clock ()">gst_element_get_clock</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
201
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-provides-clock" title="gst_element_provides_clock ()">gst_element_provides_clock</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
202
+ <a class="link" href="GstClock.html" title="GstClock"><span class="returnvalue">GstClock</span></a> * <a class="link" href="GstElement.html#gst-element-provide-clock" title="gst_element_provide_clock ()">gst_element_provide_clock</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
203
+
204
+ <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="returnvalue">GstStateChangeReturn</span></a> <a class="link" href="GstElement.html#gst-element-set-state" title="gst_element_set_state ()">gst_element_set_state</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
205
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> state</code></em>);
206
+ <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="returnvalue">GstStateChangeReturn</span></a> <a class="link" href="GstElement.html#gst-element-get-state" title="gst_element_get_state ()">gst_element_get_state</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
207
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> *state</code></em>,
208
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> *pending</code></em>,
209
+ <em class="parameter"><code><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> timeout</code></em>);
210
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-set-locked-state" title="gst_element_set_locked_state ()">gst_element_set_locked_state</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
211
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> locked_state</code></em>);
212
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-is-locked-state" title="gst_element_is_locked_state ()">gst_element_is_locked_state</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
213
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-abort-state" title="gst_element_abort_state ()">gst_element_abort_state</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
214
+ <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="returnvalue">GstStateChangeReturn</span></a> <a class="link" href="GstElement.html#gst-element-continue-state" title="gst_element_continue_state ()">gst_element_continue_state</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
215
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a> ret</code></em>);
216
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-lost-state" title="gst_element_lost_state ()">gst_element_lost_state</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
217
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-lost-state-full" title="gst_element_lost_state_full ()">gst_element_lost_state_full</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
218
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> new_base_time</code></em>);
219
+ const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GstElement.html#gst-element-state-get-name" title="gst_element_state_get_name ()">gst_element_state_get_name</a> (<em class="parameter"><code><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> state</code></em>);
220
+ const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GstElement.html#gst-element-state-change-return-get-name" title="gst_element_state_change_return_get_name ()">gst_element_state_change_return_get_name</a>
221
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a> state_ret</code></em>);
222
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-sync-state-with-parent" title="gst_element_sync_state_with_parent ()">gst_element_sync_state_with_parent</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
223
+ <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="returnvalue">GstStateChangeReturn</span></a> <a class="link" href="GstElement.html#gst-element-change-state" title="gst_element_change_state ()">gst_element_change_state</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
224
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstStateChange" title="enum GstStateChange"><span class="type">GstStateChange</span></a> transition</code></em>);
225
+
226
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-found-tags" title="gst_element_found_tags ()">gst_element_found_tags</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
227
+ <em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);
228
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-found-tags-for-pad" title="gst_element_found_tags_for_pad ()">gst_element_found_tags_for_pad</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
229
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>,
230
+ <em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);
231
+
232
+ <span class="returnvalue">void</span> <a class="link" href="GstElement.html#gst-element-message-full" title="gst_element_message_full ()">gst_element_message_full</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
233
+ <em class="parameter"><code><a class="link" href="gstreamer-GstMessage.html#GstMessageType" title="enum GstMessageType"><span class="type">GstMessageType</span></a> type</code></em>,
234
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
235
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
236
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
237
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *debug</code></em>,
238
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
239
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
240
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>);
241
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-post-message" title="gst_element_post_message ()">gst_element_post_message</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
242
+ <em class="parameter"><code><a class="link" href="gstreamer-GstMessage.html#GstMessage" title="struct GstMessage"><span class="type">GstMessage</span></a> *message</code></em>);
243
+
244
+ const <a class="link" href="gstreamer-GstQuery.html#GstQueryType" title="enum GstQueryType"><span class="returnvalue">GstQueryType</span></a> * <a class="link" href="GstElement.html#gst-element-get-query-types" title="gst_element_get_query_types ()">gst_element_get_query_types</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);
245
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-query" title="gst_element_query ()">gst_element_query</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
246
+ <em class="parameter"><code><a class="link" href="gstreamer-GstQuery.html#GstQuery" title="struct GstQuery"><span class="type">GstQuery</span></a> *query</code></em>);
247
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-query-convert" title="gst_element_query_convert ()">gst_element_query_convert</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
248
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> src_format</code></em>,
249
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> src_val</code></em>,
250
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> *dest_format</code></em>,
251
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> *dest_val</code></em>);
252
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-query-position" title="gst_element_query_position ()">gst_element_query_position</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
253
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> *format</code></em>,
254
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> *cur</code></em>);
255
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-query-duration" title="gst_element_query_duration ()">gst_element_query_duration</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
256
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> *format</code></em>,
257
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> *duration</code></em>);
258
+
259
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-send-event" title="gst_element_send_event ()">gst_element_send_event</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
260
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstEvent" title="struct GstEvent"><span class="type">GstEvent</span></a> *event</code></em>);
261
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-seek-simple" title="gst_element_seek_simple ()">gst_element_seek_simple</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
262
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> format</code></em>,
263
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstSeekFlags" title="enum GstSeekFlags"><span class="type">GstSeekFlags</span></a> seek_flags</code></em>,
264
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> seek_pos</code></em>);
265
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GstElement.html#gst-element-seek" title="gst_element_seek ()">gst_element_seek</a> (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
266
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> rate</code></em>,
267
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> format</code></em>,
268
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstSeekFlags" title="enum GstSeekFlags"><span class="type">GstSeekFlags</span></a> flags</code></em>,
269
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstSeekType" title="enum GstSeekType"><span class="type">GstSeekType</span></a> cur_type</code></em>,
270
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> cur</code></em>,
271
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstSeekType" title="enum GstSeekType"><span class="type">GstSeekType</span></a> stop_type</code></em>,
272
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> stop</code></em>);
273
+ </pre>
274
+ </div>
275
+ <div class="refsect1">
276
+ <a name="GstElement.object-hierarchy"></a><h2>Object Hierarchy</h2>
277
+ <pre class="synopsis">
278
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
279
+ +----<a class="link" href="GstObject.html" title="GstObject">GstObject</a>
280
+ +----GstElement
281
+ +----<a class="link" href="GstBin.html" title="GstBin">GstBin</a>
282
+ </pre>
283
+ </div>
284
+ <div class="refsect1">
285
+ <a name="GstElement.derived-interfaces"></a><h2>Known Derived Interfaces</h2>
286
+ <p>
287
+ GstElement is required by
288
+ <a class="link" href="GstImplementsInterface.html" title="GstImplementsInterface">GstImplementsInterface</a> and <a class="link" href="GstTagSetter.html" title="GstTagSetter">GstTagSetter</a>.</p>
289
+ </div>
290
+ <div class="refsect1">
291
+ <a name="GstElement.signals"></a><h2>Signals</h2>
292
+ <pre class="synopsis">
293
+ "<a class="link" href="GstElement.html#GstElement-no-more-pads" title='The "no-more-pads" signal'>no-more-pads</a>" : <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
294
+ "<a class="link" href="GstElement.html#GstElement-pad-added" title='The "pad-added" signal'>pad-added</a>" : <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
295
+ "<a class="link" href="GstElement.html#GstElement-pad-removed" title='The "pad-removed" signal'>pad-removed</a>" : <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
296
+ </pre>
297
+ </div>
298
+ <div class="refsect1">
299
+ <a name="GstElement.description"></a><h2>Description</h2>
300
+ <p>
301
+ GstElement is the abstract base class needed to construct an element that
302
+ can be used in a GStreamer pipeline. Please refer to the plugin writers
303
+ guide for more information on creating <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> subclasses.
304
+ </p>
305
+ <p>
306
+ The name of a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> can be get with <a class="link" href="GstElement.html#gst-element-get-name" title="gst_element_get_name()"><code class="function">gst_element_get_name()</code></a> and set with
307
+ <a class="link" href="GstElement.html#gst-element-set-name" title="gst_element_set_name()"><code class="function">gst_element_set_name()</code></a>. For speed, <a class="link" href="GstElement.html#GST-ELEMENT-NAME:CAPS" title="GST_ELEMENT_NAME()"><code class="function">GST_ELEMENT_NAME()</code></a> can be used in the
308
+ core when using the appropriate locking. Do not use this in plug-ins or
309
+ applications in order to retain ABI compatibility.
310
+ </p>
311
+ <p>
312
+ All elements have pads (of the type <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a>). These pads link to pads on
313
+ other elements. <a class="link" href="gstreamer-GstBuffer.html#GstBuffer" title="struct GstBuffer"><span class="type">GstBuffer</span></a> flow between these linked pads.
314
+ A <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> has a <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> structures for all their input (or sink)
315
+ and output (or source) pads.
316
+ Core and plug-in writers can add and remove pads with <a class="link" href="GstElement.html#gst-element-add-pad" title="gst_element_add_pad ()"><code class="function">gst_element_add_pad()</code></a>
317
+ and <a class="link" href="GstElement.html#gst-element-remove-pad" title="gst_element_remove_pad ()"><code class="function">gst_element_remove_pad()</code></a>.
318
+ </p>
319
+ <p>
320
+ A pad of an element can be retrieved by name with <a class="link" href="GstElement.html#gst-element-get-pad" title="gst_element_get_pad ()"><code class="function">gst_element_get_pad()</code></a>.
321
+ An iterator of all pads can be retrieved with <a class="link" href="GstElement.html#gst-element-iterate-pads" title="gst_element_iterate_pads ()"><code class="function">gst_element_iterate_pads()</code></a>.
322
+ </p>
323
+ <p>
324
+ Elements can be linked through their pads.
325
+ If the link is straightforward, use the <a class="link" href="GstElement.html#gst-element-link" title="gst_element_link ()"><code class="function">gst_element_link()</code></a>
326
+ convenience function to link two elements, or <a class="link" href="GstElement.html#gst-element-link-many" title="gst_element_link_many ()"><code class="function">gst_element_link_many()</code></a>
327
+ for more elements in a row.
328
+ Use <a class="link" href="GstElement.html#gst-element-link-filtered" title="gst_element_link_filtered ()"><code class="function">gst_element_link_filtered()</code></a> to link two elements constrained by
329
+ a specified set of <a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a>.
330
+ For finer control, use <a class="link" href="GstElement.html#gst-element-link-pads" title="gst_element_link_pads ()"><code class="function">gst_element_link_pads()</code></a> and
331
+ <a class="link" href="GstElement.html#gst-element-link-pads-filtered" title="gst_element_link_pads_filtered ()"><code class="function">gst_element_link_pads_filtered()</code></a> to specify the pads to link on
332
+ each element by name.
333
+ </p>
334
+ <p>
335
+ Each element has a state (see <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a>). You can get and set the state
336
+ of an element with <a class="link" href="GstElement.html#gst-element-get-state" title="gst_element_get_state ()"><code class="function">gst_element_get_state()</code></a> and <a class="link" href="GstElement.html#gst-element-set-state" title="gst_element_set_state ()"><code class="function">gst_element_set_state()</code></a>.
337
+ Setting a state triggers a <a class="link" href="GstElement.html#GstStateChange" title="enum GstStateChange"><span class="type">GstStateChange</span></a>. To get a string representation
338
+ of a <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a>, use <a class="link" href="GstElement.html#gst-element-state-get-name" title="gst_element_state_get_name ()"><code class="function">gst_element_state_get_name()</code></a>.
339
+ </p>
340
+ <p>
341
+ You can get and set a <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> on an element using <a class="link" href="GstElement.html#gst-element-get-clock" title="gst_element_get_clock ()"><code class="function">gst_element_get_clock()</code></a>
342
+ and <a class="link" href="GstElement.html#gst-element-set-clock" title="gst_element_set_clock ()"><code class="function">gst_element_set_clock()</code></a>.
343
+ Some elements can provide a clock for the pipeline if
344
+ <a class="link" href="GstElement.html#gst-element-provides-clock" title="gst_element_provides_clock ()"><code class="function">gst_element_provides_clock()</code></a> returns <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>. With the
345
+ <a class="link" href="GstElement.html#gst-element-provide-clock" title="gst_element_provide_clock ()"><code class="function">gst_element_provide_clock()</code></a> method one can retrieve the clock provided by
346
+ such an element.
347
+ Not all elements require a clock to operate correctly. If
348
+ <a class="link" href="GstElement.html#gst-element-requires-clock" title="gst_element_requires_clock ()"><code class="function">gst_element_requires_clock()</code></a> returns <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, a clock should be set on the
349
+ element with <a class="link" href="GstElement.html#gst-element-set-clock" title="gst_element_set_clock ()"><code class="function">gst_element_set_clock()</code></a>.
350
+ </p>
351
+ <p>
352
+ Note that clock slection and distribution is normally handled by the
353
+ toplevel <a class="link" href="GstPipeline.html" title="GstPipeline"><span class="type">GstPipeline</span></a> so the clock functions are only to be used in very
354
+ specific situations.
355
+ </p>
356
+ <p>
357
+ Last reviewed on 2009-05-29 (0.10.24)
358
+ </p>
359
+ </div>
360
+ <div class="refsect1">
361
+ <a name="GstElement.details"></a><h2>Details</h2>
362
+ <div class="refsect2">
363
+ <a name="GstElement-struct"></a><h3>struct GstElement</h3>
364
+ <pre class="programlisting">struct GstElement {
365
+ GStaticRecMutex *state_lock;
366
+
367
+ /* element state */
368
+ GCond *state_cond;
369
+ guint32 state_cookie;
370
+ GstState current_state;
371
+ GstState next_state;
372
+ GstState pending_state;
373
+ GstStateChangeReturn last_return;
374
+
375
+ GstBus *bus;
376
+
377
+ /* allocated clock */
378
+ GstClock *clock;
379
+ GstClockTimeDiff base_time; /* NULL/READY: 0 - PAUSED: current time - PLAYING: difference to clock */
380
+
381
+ /* element pads, these lists can only be iterated while holding
382
+ * the LOCK or checking the cookie after each LOCK. */
383
+ guint16 numpads;
384
+ GList *pads;
385
+ guint16 numsrcpads;
386
+ GList *srcpads;
387
+ guint16 numsinkpads;
388
+ GList *sinkpads;
389
+ guint32 pads_cookie;
390
+ };
391
+ </pre>
392
+ <p>
393
+ GStreamer element abstract base class.
394
+ </p>
395
+ <div class="variablelist"><table border="0">
396
+ <col align="left" valign="top">
397
+ <tbody>
398
+ <tr>
399
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Threads.html#GStaticRecMutex"><span class="type">GStaticRecMutex</span></a> *<em class="structfield"><code><a name="GstElement-struct.state-lock"></a>state_lock</code></em>;</span></p></td>
400
+ <td>Used to serialize execution of <a class="link" href="GstElement.html#gst-element-set-state" title="gst_element_set_state ()"><code class="function">gst_element_set_state()</code></a>
401
+ </td>
402
+ </tr>
403
+ <tr>
404
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Threads.html#GCond"><span class="type">GCond</span></a> *<em class="structfield"><code><a name="GstElement-struct.state-cond"></a>state_cond</code></em>;</span></p></td>
405
+ <td>Used to signal completion of a state change</td>
406
+ </tr>
407
+ <tr>
408
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GstElement-struct.state-cookie"></a>state_cookie</code></em>;</span></p></td>
409
+ <td>Used to detect concurrent execution of
410
+ <a class="link" href="GstElement.html#gst-element-set-state" title="gst_element_set_state ()"><code class="function">gst_element_set_state()</code></a> and <a class="link" href="GstElement.html#gst-element-get-state" title="gst_element_get_state ()"><code class="function">gst_element_get_state()</code></a>
411
+ </td>
412
+ </tr>
413
+ <tr>
414
+ <td><p><span class="term"><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> <em class="structfield"><code><a name="GstElement-struct.current-state"></a>current_state</code></em>;</span></p></td>
415
+ <td>the current state of an element</td>
416
+ </tr>
417
+ <tr>
418
+ <td><p><span class="term"><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> <em class="structfield"><code><a name="GstElement-struct.next-state"></a>next_state</code></em>;</span></p></td>
419
+ <td>the next state of an element, can be <a class="link" href="GstElement.html#GST-STATE-VOID-PENDING:CAPS"><span class="type">GST_STATE_VOID_PENDING</span></a> if
420
+ the element is in the correct state.</td>
421
+ </tr>
422
+ <tr>
423
+ <td><p><span class="term"><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> <em class="structfield"><code><a name="GstElement-struct.pending-state"></a>pending_state</code></em>;</span></p></td>
424
+ <td>the final state the element should go to, can be
425
+ <a class="link" href="GstElement.html#GST-STATE-VOID-PENDING:CAPS"><span class="type">GST_STATE_VOID_PENDING</span></a> if the element is in the correct state</td>
426
+ </tr>
427
+ <tr>
428
+ <td><p><span class="term"><a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a> <em class="structfield"><code><a name="GstElement-struct.last-return"></a>last_return</code></em>;</span></p></td>
429
+ <td>the last return value of an element state change</td>
430
+ </tr>
431
+ <tr>
432
+ <td><p><span class="term"><a class="link" href="GstBus.html" title="GstBus"><span class="type">GstBus</span></a> *<em class="structfield"><code><a name="GstElement-struct.bus"></a>bus</code></em>;</span></p></td>
433
+ <td>the bus of the element. This bus is provided to the element by the
434
+ parent element or the application. A <a class="link" href="GstPipeline.html" title="GstPipeline"><span class="type">GstPipeline</span></a> has a bus of its own.</td>
435
+ </tr>
436
+ <tr>
437
+ <td><p><span class="term"><a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> *<em class="structfield"><code><a name="GstElement-struct.clock"></a>clock</code></em>;</span></p></td>
438
+ <td>the clock of the element. This clock is usually provided to the
439
+ element by the toplevel <a class="link" href="GstPipeline.html" title="GstPipeline"><span class="type">GstPipeline</span></a>.</td>
440
+ </tr>
441
+ <tr>
442
+ <td><p><span class="term"><a class="link" href="GstClock.html#GstClockTimeDiff" title="GstClockTimeDiff"><span class="type">GstClockTimeDiff</span></a> <em class="structfield"><code><a name="GstElement-struct.base-time"></a>base_time</code></em>;</span></p></td>
443
+ <td>the time of the clock right before the element is set to
444
+ PLAYING. Subtracting <em class="parameter"><code>base_time</code></em> from the current clock time in the PLAYING
445
+ state will yield the running_time against the clock.</td>
446
+ </tr>
447
+ <tr>
448
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="GstElement-struct.numpads"></a>numpads</code></em>;</span></p></td>
449
+ <td>number of pads of the element, includes both source and sink pads.</td>
450
+ </tr>
451
+ <tr>
452
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *<em class="structfield"><code><a name="GstElement-struct.pads"></a>pads</code></em>;</span></p></td>
453
+ <td>list of pads</td>
454
+ </tr>
455
+ <tr>
456
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="GstElement-struct.numsrcpads"></a>numsrcpads</code></em>;</span></p></td>
457
+ <td>number of source pads of the element.</td>
458
+ </tr>
459
+ <tr>
460
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *<em class="structfield"><code><a name="GstElement-struct.srcpads"></a>srcpads</code></em>;</span></p></td>
461
+ <td>list of source pads</td>
462
+ </tr>
463
+ <tr>
464
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="GstElement-struct.numsinkpads"></a>numsinkpads</code></em>;</span></p></td>
465
+ <td>number of sink pads of the element.</td>
466
+ </tr>
467
+ <tr>
468
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *<em class="structfield"><code><a name="GstElement-struct.sinkpads"></a>sinkpads</code></em>;</span></p></td>
469
+ <td>list of sink pads</td>
470
+ </tr>
471
+ <tr>
472
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GstElement-struct.pads-cookie"></a>pads_cookie</code></em>;</span></p></td>
473
+ <td>updated whenever the a pad is added or removed</td>
474
+ </tr>
475
+ </tbody>
476
+ </table></div>
477
+ </div>
478
+ <hr>
479
+ <div class="refsect2">
480
+ <a name="GstElementClass"></a><h3>struct GstElementClass</h3>
481
+ <pre class="programlisting">struct GstElementClass {
482
+ GstObjectClass parent_class;
483
+
484
+ /* the element details */
485
+ /* FIXME-0.11: deprecate this in favour of meta_data */
486
+ GstElementDetails details;
487
+
488
+ /* factory that the element was created from */
489
+ GstElementFactory *elementfactory;
490
+
491
+ /* templates for our pads */
492
+ GList *padtemplates;
493
+ gint numpadtemplates;
494
+ guint32 pad_templ_cookie;
495
+
496
+ /* virtual methods for subclasses */
497
+
498
+ /* request/release pads */
499
+ GstPad* (*request_new_pad) (GstElement *element, GstPadTemplate *templ, const gchar* name);
500
+ void (*release_pad) (GstElement *element, GstPad *pad);
501
+
502
+ /* state changes */
503
+ GstStateChangeReturn (*get_state) (GstElement * element, GstState * state,
504
+ GstState * pending, GstClockTime timeout);
505
+ GstStateChangeReturn (*set_state) (GstElement *element, GstState state);
506
+ GstStateChangeReturn (*change_state) (GstElement *element, GstStateChange transition);
507
+
508
+ /* bus */
509
+ void (*set_bus) (GstElement * element, GstBus * bus);
510
+
511
+ /* set/get clocks */
512
+ GstClock* (*provide_clock) (GstElement *element);
513
+ gboolean (*set_clock) (GstElement *element, GstClock *clock);
514
+
515
+ /* index */
516
+ GstIndex* (*get_index) (GstElement *element);
517
+ void (*set_index) (GstElement *element, GstIndex *index);
518
+
519
+ /* query functions */
520
+ gboolean (*send_event) (GstElement *element, GstEvent *event);
521
+
522
+ const GstQueryType* (*get_query_types) (GstElement *element);
523
+ gboolean (*query) (GstElement *element, GstQuery *query);
524
+
525
+ /* Virtual method for subclasses (additions) */
526
+ /* FIXME-0.11 Make this the default behaviour */
527
+ GstPad* (*request_new_pad_full) (GstElement *element, GstPadTemplate *templ,
528
+ const gchar* name, const GstCaps *caps);
529
+ };
530
+ </pre>
531
+ <p>
532
+ GStreamer element class. Override the vmethods to implement the element
533
+ functionality.
534
+ </p>
535
+ <div class="variablelist"><table border="0">
536
+ <col align="left" valign="top">
537
+ <tbody>
538
+ <tr>
539
+ <td><p><span class="term"><a class="link" href="GstObject.html#GstObjectClass" title="struct GstObjectClass"><span class="type">GstObjectClass</span></a> <em class="structfield"><code><a name="GstElementClass.parent-class"></a>parent_class</code></em>;</span></p></td>
540
+ <td>the parent class structure</td>
541
+ </tr>
542
+ <tr>
543
+ <td><p><span class="term"><a class="link" href="GstElementFactory.html#GstElementDetails" title="struct GstElementDetails"><span class="type">GstElementDetails</span></a> <em class="structfield"><code><a name="GstElementClass.details"></a>details</code></em>;</span></p></td>
544
+ <td>
545
+ <a class="link" href="GstElementFactory.html#GstElementDetails" title="struct GstElementDetails"><span class="type">GstElementDetails</span></a> for elements of this class</td>
546
+ </tr>
547
+ <tr>
548
+ <td><p><span class="term"><a class="link" href="GstElementFactory.html" title="GstElementFactory"><span class="type">GstElementFactory</span></a> *<em class="structfield"><code><a name="GstElementClass.elementfactory"></a>elementfactory</code></em>;</span></p></td>
549
+ <td>the <a class="link" href="GstElementFactory.html" title="GstElementFactory"><span class="type">GstElementFactory</span></a> that creates these elements</td>
550
+ </tr>
551
+ <tr>
552
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *<em class="structfield"><code><a name="GstElementClass.padtemplates"></a>padtemplates</code></em>;</span></p></td>
553
+ <td>a <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a>
554
+ </td>
555
+ </tr>
556
+ <tr>
557
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GstElementClass.numpadtemplates"></a>numpadtemplates</code></em>;</span></p></td>
558
+ <td>the number of padtemplates</td>
559
+ </tr>
560
+ <tr>
561
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GstElementClass.pad-templ-cookie"></a>pad_templ_cookie</code></em>;</span></p></td>
562
+ <td>changed whenever the padtemplates change</td>
563
+ </tr>
564
+ <tr>
565
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.request-new-pad"></a>request_new_pad</code></em> ()</span></p></td>
566
+ <td>called when a new pad is requested</td>
567
+ </tr>
568
+ <tr>
569
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.release-pad"></a>release_pad</code></em> ()</span></p></td>
570
+ <td>called when a request pad is to be released</td>
571
+ </tr>
572
+ <tr>
573
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.get-state"></a>get_state</code></em> ()</span></p></td>
574
+ <td>get the state of the element</td>
575
+ </tr>
576
+ <tr>
577
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.set-state"></a>set_state</code></em> ()</span></p></td>
578
+ <td>set a new state on the element</td>
579
+ </tr>
580
+ <tr>
581
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.change-state"></a>change_state</code></em> ()</span></p></td>
582
+ <td>called by <em class="parameter"><code>set_state</code></em> to perform an incremental state change</td>
583
+ </tr>
584
+ <tr>
585
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.set-bus"></a>set_bus</code></em> ()</span></p></td>
586
+ <td>set a <a class="link" href="GstBus.html" title="GstBus"><span class="type">GstBus</span></a> on the element</td>
587
+ </tr>
588
+ <tr>
589
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.provide-clock"></a>provide_clock</code></em> ()</span></p></td>
590
+ <td>gets the <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> provided by the element</td>
591
+ </tr>
592
+ <tr>
593
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.set-clock"></a>set_clock</code></em> ()</span></p></td>
594
+ <td>set the <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> on the element</td>
595
+ </tr>
596
+ <tr>
597
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.get-index"></a>get_index</code></em> ()</span></p></td>
598
+ <td>set a <a class="link" href="GstIndex.html" title="GstIndex"><span class="type">GstIndex</span></a> on the element</td>
599
+ </tr>
600
+ <tr>
601
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.set-index"></a>set_index</code></em> ()</span></p></td>
602
+ <td>get the <a class="link" href="GstIndex.html" title="GstIndex"><span class="type">GstIndex</span></a> of an element</td>
603
+ </tr>
604
+ <tr>
605
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.send-event"></a>send_event</code></em> ()</span></p></td>
606
+ <td>send a <a class="link" href="gstreamer-GstEvent.html#GstEvent" title="struct GstEvent"><span class="type">GstEvent</span></a> to the element</td>
607
+ </tr>
608
+ <tr>
609
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.get-query-types"></a>get_query_types</code></em> ()</span></p></td>
610
+ <td>get the supported <a class="link" href="gstreamer-GstQuery.html#GstQueryType" title="enum GstQueryType"><span class="type">GstQueryType</span></a> of this element</td>
611
+ </tr>
612
+ <tr>
613
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.query"></a>query</code></em> ()</span></p></td>
614
+ <td>perform a <a class="link" href="gstreamer-GstQuery.html#GstQuery" title="struct GstQuery"><span class="type">GstQuery</span></a> on the element</td>
615
+ </tr>
616
+ <tr>
617
+ <td><p><span class="term"><em class="structfield"><code><a name="GstElementClass.request-new-pad-full"></a>request_new_pad_full</code></em> ()</span></p></td>
618
+ <td>called when a new pad is requested. Since: 0.10.32.</td>
619
+ </tr>
620
+ </tbody>
621
+ </table></div>
622
+ </div>
623
+ <hr>
624
+ <div class="refsect2">
625
+ <a name="GstElementFlags"></a><h3>enum GstElementFlags</h3>
626
+ <pre class="programlisting">typedef enum
627
+ {
628
+ GST_ELEMENT_LOCKED_STATE = (GST_OBJECT_FLAG_LAST &lt;&lt; 0),
629
+ GST_ELEMENT_IS_SINK = (GST_OBJECT_FLAG_LAST &lt;&lt; 1),
630
+ GST_ELEMENT_UNPARENTING = (GST_OBJECT_FLAG_LAST &lt;&lt; 2),
631
+ GST_ELEMENT_IS_SOURCE = (GST_OBJECT_FLAG_LAST &lt;&lt; 3),
632
+ /* padding */
633
+ GST_ELEMENT_FLAG_LAST = (GST_OBJECT_FLAG_LAST &lt;&lt; 16)
634
+ } GstElementFlags;
635
+ </pre>
636
+ <p>
637
+ The standard flags that an element may have.
638
+ </p>
639
+ <div class="variablelist"><table border="0">
640
+ <col align="left" valign="top">
641
+ <tbody>
642
+ <tr>
643
+ <td><p><a name="GST-ELEMENT-LOCKED-STATE:CAPS"></a><span class="term"><code class="literal">GST_ELEMENT_LOCKED_STATE</code></span></p></td>
644
+ <td>ignore state changes from parent
645
+ </td>
646
+ </tr>
647
+ <tr>
648
+ <td><p><a name="GST-ELEMENT-IS-SINK:CAPS"></a><span class="term"><code class="literal">GST_ELEMENT_IS_SINK</code></span></p></td>
649
+ <td>the element is a sink
650
+ </td>
651
+ </tr>
652
+ <tr>
653
+ <td><p><a name="GST-ELEMENT-UNPARENTING:CAPS"></a><span class="term"><code class="literal">GST_ELEMENT_UNPARENTING</code></span></p></td>
654
+ <td>Child is being removed from the parent bin.
655
+ <a class="link" href="GstBin.html#gst-bin-remove" title="gst_bin_remove ()"><code class="function">gst_bin_remove()</code></a> on a child already being removed immediately returns FALSE
656
+ </td>
657
+ </tr>
658
+ <tr>
659
+ <td><p><a name="GST-ELEMENT-IS-SOURCE:CAPS"></a><span class="term"><code class="literal">GST_ELEMENT_IS_SOURCE</code></span></p></td>
660
+ <td>the element is a source. Since 0.10.31
661
+ </td>
662
+ </tr>
663
+ <tr>
664
+ <td><p><a name="GST-ELEMENT-FLAG-LAST:CAPS"></a><span class="term"><code class="literal">GST_ELEMENT_FLAG_LAST</code></span></p></td>
665
+ <td>offset to define more flags
666
+ </td>
667
+ </tr>
668
+ </tbody>
669
+ </table></div>
670
+ </div>
671
+ <hr>
672
+ <div class="refsect2">
673
+ <a name="GstState"></a><h3>enum GstState</h3>
674
+ <pre class="programlisting">typedef enum {
675
+ GST_STATE_VOID_PENDING = 0,
676
+ GST_STATE_NULL = 1,
677
+ GST_STATE_READY = 2,
678
+ GST_STATE_PAUSED = 3,
679
+ GST_STATE_PLAYING = 4
680
+ } GstState;
681
+ </pre>
682
+ <p>
683
+ The possible states an element can be in. States can be changed using
684
+ <a class="link" href="GstElement.html#gst-element-set-state" title="gst_element_set_state ()"><code class="function">gst_element_set_state()</code></a> and checked using <a class="link" href="GstElement.html#gst-element-get-state" title="gst_element_get_state ()"><code class="function">gst_element_get_state()</code></a>.
685
+ </p>
686
+ <div class="variablelist"><table border="0">
687
+ <col align="left" valign="top">
688
+ <tbody>
689
+ <tr>
690
+ <td><p><a name="GST-STATE-VOID-PENDING:CAPS"></a><span class="term"><code class="literal">GST_STATE_VOID_PENDING</code></span></p></td>
691
+ <td>no pending state.
692
+ </td>
693
+ </tr>
694
+ <tr>
695
+ <td><p><a name="GST-STATE-NULL:CAPS"></a><span class="term"><code class="literal">GST_STATE_NULL</code></span></p></td>
696
+ <td>the NULL state or initial state of an element.
697
+ </td>
698
+ </tr>
699
+ <tr>
700
+ <td><p><a name="GST-STATE-READY:CAPS"></a><span class="term"><code class="literal">GST_STATE_READY</code></span></p></td>
701
+ <td>the element is ready to go to PAUSED.
702
+ </td>
703
+ </tr>
704
+ <tr>
705
+ <td><p><a name="GST-STATE-PAUSED:CAPS"></a><span class="term"><code class="literal">GST_STATE_PAUSED</code></span></p></td>
706
+ <td>the element is PAUSED, it is ready to accept and
707
+ process data. Sink elements however only accept one
708
+ buffer and then block.
709
+ </td>
710
+ </tr>
711
+ <tr>
712
+ <td><p><a name="GST-STATE-PLAYING:CAPS"></a><span class="term"><code class="literal">GST_STATE_PLAYING</code></span></p></td>
713
+ <td>the element is PLAYING, the <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> is running and
714
+ the data is flowing.
715
+ </td>
716
+ </tr>
717
+ </tbody>
718
+ </table></div>
719
+ </div>
720
+ <hr>
721
+ <div class="refsect2">
722
+ <a name="GstStateChange"></a><h3>enum GstStateChange</h3>
723
+ <pre class="programlisting">typedef enum /*&lt; flags=0 &gt;*/
724
+ {
725
+ GST_STATE_CHANGE_NULL_TO_READY = (GST_STATE_NULL&lt;&lt;3) | GST_STATE_READY,
726
+ GST_STATE_CHANGE_READY_TO_PAUSED = (GST_STATE_READY&lt;&lt;3) | GST_STATE_PAUSED,
727
+ GST_STATE_CHANGE_PAUSED_TO_PLAYING = (GST_STATE_PAUSED&lt;&lt;3) | GST_STATE_PLAYING,
728
+ GST_STATE_CHANGE_PLAYING_TO_PAUSED = (GST_STATE_PLAYING&lt;&lt;3) | GST_STATE_PAUSED,
729
+ GST_STATE_CHANGE_PAUSED_TO_READY = (GST_STATE_PAUSED&lt;&lt;3) | GST_STATE_READY,
730
+ GST_STATE_CHANGE_READY_TO_NULL = (GST_STATE_READY&lt;&lt;3) | GST_STATE_NULL
731
+ } GstStateChange;
732
+ </pre>
733
+ <p>
734
+ These are the different state changes an element goes through.
735
+ <a class="link" href="GstElement.html#GST-STATE-NULL:CAPS"><code class="literal">GST_STATE_NULL</code></a> ⇒ <a class="link" href="GstElement.html#GST-STATE-PLAYING:CAPS"><code class="literal">GST_STATE_PLAYING</code></a> is called an upwards state change
736
+ and <a class="link" href="GstElement.html#GST-STATE-PLAYING:CAPS"><code class="literal">GST_STATE_PLAYING</code></a> ⇒ <a class="link" href="GstElement.html#GST-STATE-NULL:CAPS"><code class="literal">GST_STATE_NULL</code></a> a downwards state change.
737
+ </p>
738
+ <div class="variablelist"><table border="0">
739
+ <col align="left" valign="top">
740
+ <tbody>
741
+ <tr>
742
+ <td><p><a name="GST-STATE-CHANGE-NULL-TO-READY:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_NULL_TO_READY</code></span></p></td>
743
+ <td>state change from NULL to READY.
744
+ <div class="itemizedlist"><ul class="itemizedlist" type="disc">
745
+ <li class="listitem"><p>
746
+ The element must check if the resources it needs are available. Device
747
+ sinks and -sources typically try to probe the device to constrain their
748
+ caps.
749
+ </p></li>
750
+ <li class="listitem"><p>
751
+ The element opens the device (in case feature need to be probed).
752
+ </p></li>
753
+ </ul></div>
754
+ </td>
755
+ </tr>
756
+ <tr>
757
+ <td><p><a name="GST-STATE-CHANGE-READY-TO-PAUSED:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_READY_TO_PAUSED</code></span></p></td>
758
+ <td>state change from READY to PAUSED.
759
+ <div class="itemizedlist"><ul class="itemizedlist" type="disc">
760
+ <li class="listitem"><p>
761
+ The element pads are activated in order to receive data in PAUSED.
762
+ Streaming threads are started.
763
+ </p></li>
764
+ <li class="listitem"><p>
765
+ Some elements might need to return ASYNC and complete the state change
766
+ when they have enough information. It is a requirement for sinks to
767
+ return ASYNC and complete the state change when they receive the first
768
+ buffer or EOS event (preroll). Sinks also block the dataflow when in
769
+ PAUSED.
770
+ </p></li>
771
+ <li class="listitem"><p>
772
+ A pipeline resets the running_time to 0.
773
+ </p></li>
774
+ <li class="listitem"><p>
775
+ Live sources return NO_PREROLL and don't generate data.
776
+ </p></li>
777
+ </ul></div>
778
+ </td>
779
+ </tr>
780
+ <tr>
781
+ <td><p><a name="GST-STATE-CHANGE-PAUSED-TO-PLAYING:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_PAUSED_TO_PLAYING</code></span></p></td>
782
+ <td>state change from PAUSED to PLAYING.
783
+ <div class="itemizedlist"><ul class="itemizedlist" type="disc">
784
+ <li class="listitem"><p>
785
+ Most elements ignore this state change.
786
+ </p></li>
787
+ <li class="listitem"><p>
788
+ The pipeline selects a clock and distributes this to all the children
789
+ before setting them to PLAYING. This means that it is only alowed to
790
+ synchronize on the clock in the PLAYING state.
791
+ </p></li>
792
+ <li class="listitem"><p>
793
+ The pipeline uses the clock and the running_time to calculate the
794
+ base_time. The base_time is distributed to all children when performing
795
+ the state change.
796
+ </p></li>
797
+ <li class="listitem"><p>
798
+ Sink elements stop blocking on the preroll buffer or event and start
799
+ rendering the data.
800
+ </p></li>
801
+ <li class="listitem"><p>
802
+ Sinks can post the EOS message in the PLAYING state. It is not allowed to
803
+ post EOS when not in the PLAYING state.
804
+ </p></li>
805
+ <li class="listitem"><p>
806
+ While streaming in PAUSED or PLAYING elements can create and remove
807
+ sometimes pads.
808
+ </p></li>
809
+ <li class="listitem"><p>
810
+ Live sources start generating data and return SUCCESS.
811
+ </p></li>
812
+ </ul></div>
813
+ </td>
814
+ </tr>
815
+ <tr>
816
+ <td><p><a name="GST-STATE-CHANGE-PLAYING-TO-PAUSED:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_PLAYING_TO_PAUSED</code></span></p></td>
817
+ <td>state change from PLAYING to PAUSED.
818
+ <div class="itemizedlist"><ul class="itemizedlist" type="disc">
819
+ <li class="listitem"><p>
820
+ Most elements ignore this state change.
821
+ </p></li>
822
+ <li class="listitem"><p>
823
+ The pipeline calculates the running_time based on the last selected clock
824
+ and the base_time. It stores this information to continue playback when
825
+ going back to the PLAYING state.
826
+ </p></li>
827
+ <li class="listitem"><p>
828
+ Sinks unblock any clock wait calls.
829
+ </p></li>
830
+ <li class="listitem"><p>
831
+ When a sink does not have a pending buffer to play, it returns ASYNC from
832
+ this state change and completes the state change when it receives a new
833
+ buffer or an EOS event.
834
+ </p></li>
835
+ <li class="listitem"><p>
836
+ Any queued EOS messages are removed since they will be reposted when going
837
+ back to the PLAYING state. The EOS messages are queued in GstBins.
838
+ </p></li>
839
+ <li class="listitem"><p>
840
+ Live sources stop generating data and return NO_PREROLL.
841
+ </p></li>
842
+ </ul></div>
843
+ </td>
844
+ </tr>
845
+ <tr>
846
+ <td><p><a name="GST-STATE-CHANGE-PAUSED-TO-READY:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_PAUSED_TO_READY</code></span></p></td>
847
+ <td>state change from PAUSED to READY.
848
+ <div class="itemizedlist"><ul class="itemizedlist" type="disc">
849
+ <li class="listitem"><p>
850
+ Sinks unblock any waits in the preroll.
851
+ </p></li>
852
+ <li class="listitem"><p>
853
+ Elements unblock any waits on devices
854
+ </p></li>
855
+ <li class="listitem"><p>
856
+ Chain or get_range functions return WRONG_STATE.
857
+ </p></li>
858
+ <li class="listitem"><p>
859
+ The element pads are deactivated so that streaming becomes impossible and
860
+ all streaming threads are stopped.
861
+ </p></li>
862
+ <li class="listitem"><p>
863
+ The sink forgets all negotiated formats
864
+ </p></li>
865
+ <li class="listitem"><p>
866
+ Elements remove all sometimes pads
867
+ </p></li>
868
+ </ul></div>
869
+ </td>
870
+ </tr>
871
+ <tr>
872
+ <td><p><a name="GST-STATE-CHANGE-READY-TO-NULL:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_READY_TO_NULL</code></span></p></td>
873
+ <td>state change from READY to NULL.
874
+ <div class="itemizedlist"><ul class="itemizedlist" type="disc">
875
+ <li class="listitem"><p>
876
+ Elements close devices
877
+ </p></li>
878
+ <li class="listitem"><p>
879
+ Elements reset any internal state.
880
+ </p></li>
881
+ </ul></div>
882
+ </td>
883
+ </tr>
884
+ </tbody>
885
+ </table></div>
886
+ </div>
887
+ <hr>
888
+ <div class="refsect2">
889
+ <a name="GstStateChangeReturn"></a><h3>enum GstStateChangeReturn</h3>
890
+ <pre class="programlisting">typedef enum {
891
+ GST_STATE_CHANGE_FAILURE = 0,
892
+ GST_STATE_CHANGE_SUCCESS = 1,
893
+ GST_STATE_CHANGE_ASYNC = 2,
894
+ GST_STATE_CHANGE_NO_PREROLL = 3
895
+ } GstStateChangeReturn;
896
+ </pre>
897
+ <p>
898
+ The possible return values from a state change function. Only
899
+ <em class="parameter"><code>GST_STATE_CHANGE_FAILURE</code></em> is a real failure.
900
+ </p>
901
+ <div class="variablelist"><table border="0">
902
+ <col align="left" valign="top">
903
+ <tbody>
904
+ <tr>
905
+ <td><p><a name="GST-STATE-CHANGE-FAILURE:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_FAILURE</code></span></p></td>
906
+ <td>the state change failed
907
+ </td>
908
+ </tr>
909
+ <tr>
910
+ <td><p><a name="GST-STATE-CHANGE-SUCCESS:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_SUCCESS</code></span></p></td>
911
+ <td>the state change succeeded
912
+ </td>
913
+ </tr>
914
+ <tr>
915
+ <td><p><a name="GST-STATE-CHANGE-ASYNC:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_ASYNC</code></span></p></td>
916
+ <td>the state change will happen asynchronously
917
+ </td>
918
+ </tr>
919
+ <tr>
920
+ <td><p><a name="GST-STATE-CHANGE-NO-PREROLL:CAPS"></a><span class="term"><code class="literal">GST_STATE_CHANGE_NO_PREROLL</code></span></p></td>
921
+ <td>the state change succeeded but the element
922
+ cannot produce data in <a class="link" href="GstElement.html#GST-STATE-PAUSED:CAPS"><code class="literal">GST_STATE_PAUSED</code></a>.
923
+ This typically happens with live sources.
924
+ </td>
925
+ </tr>
926
+ </tbody>
927
+ </table></div>
928
+ </div>
929
+ <hr>
930
+ <div class="refsect2">
931
+ <a name="GST-STATE:CAPS"></a><h3>GST_STATE()</h3>
932
+ <pre class="programlisting">#define GST_STATE(elem) (GST_ELEMENT_CAST(elem)-&gt;current_state)
933
+ </pre>
934
+ <p>
935
+ This macro returns the current <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> of the element.
936
+ </p>
937
+ <div class="variablelist"><table border="0">
938
+ <col align="left" valign="top">
939
+ <tbody><tr>
940
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
941
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to return state for.</td>
942
+ </tr></tbody>
943
+ </table></div>
944
+ </div>
945
+ <hr>
946
+ <div class="refsect2">
947
+ <a name="GST-STATE-GET-NEXT:CAPS"></a><h3>GST_STATE_GET_NEXT()</h3>
948
+ <pre class="programlisting">#define GST_STATE_GET_NEXT(cur,pending) ((cur) + __GST_SIGN ((gint)(pending) - (gint)(cur)))
949
+ </pre>
950
+ <p>
951
+ Given a current state <em class="parameter"><code>cur</code></em> and a target state <em class="parameter"><code>pending</code></em>, calculate the next (intermediate)
952
+ <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a>.
953
+ </p>
954
+ <div class="variablelist"><table border="0">
955
+ <col align="left" valign="top">
956
+ <tbody>
957
+ <tr>
958
+ <td><p><span class="term"><em class="parameter"><code>cur</code></em> :</span></p></td>
959
+ <td>A starting <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a>
960
+ </td>
961
+ </tr>
962
+ <tr>
963
+ <td><p><span class="term"><em class="parameter"><code>pending</code></em> :</span></p></td>
964
+ <td>A target <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a>
965
+ </td>
966
+ </tr>
967
+ </tbody>
968
+ </table></div>
969
+ </div>
970
+ <hr>
971
+ <div class="refsect2">
972
+ <a name="GST-STATE-NEXT:CAPS"></a><h3>GST_STATE_NEXT()</h3>
973
+ <pre class="programlisting">#define GST_STATE_NEXT(elem) (GST_ELEMENT_CAST(elem)-&gt;next_state)
974
+ </pre>
975
+ <p>
976
+ This macro returns the next <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> of the element.
977
+ </p>
978
+ <div class="variablelist"><table border="0">
979
+ <col align="left" valign="top">
980
+ <tbody><tr>
981
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
982
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to return the next state for.</td>
983
+ </tr></tbody>
984
+ </table></div>
985
+ </div>
986
+ <hr>
987
+ <div class="refsect2">
988
+ <a name="GST-STATE-PENDING:CAPS"></a><h3>GST_STATE_PENDING()</h3>
989
+ <pre class="programlisting">#define GST_STATE_PENDING(elem) (GST_ELEMENT_CAST(elem)-&gt;pending_state)
990
+ </pre>
991
+ <p>
992
+ This macro returns the currently pending <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> of the element.
993
+ </p>
994
+ <div class="variablelist"><table border="0">
995
+ <col align="left" valign="top">
996
+ <tbody><tr>
997
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
998
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to return the pending state for.</td>
999
+ </tr></tbody>
1000
+ </table></div>
1001
+ </div>
1002
+ <hr>
1003
+ <div class="refsect2">
1004
+ <a name="GST-STATE-RETURN:CAPS"></a><h3>GST_STATE_RETURN()</h3>
1005
+ <pre class="programlisting">#define GST_STATE_RETURN(elem) (GST_ELEMENT_CAST(elem)-&gt;last_return)
1006
+ </pre>
1007
+ <p>
1008
+ This macro returns the last <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a> value.
1009
+ </p>
1010
+ <div class="variablelist"><table border="0">
1011
+ <col align="left" valign="top">
1012
+ <tbody><tr>
1013
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1014
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to return the last state result for.</td>
1015
+ </tr></tbody>
1016
+ </table></div>
1017
+ </div>
1018
+ <hr>
1019
+ <div class="refsect2">
1020
+ <a name="GST-STATE-TARGET:CAPS"></a><h3>GST_STATE_TARGET()</h3>
1021
+ <pre class="programlisting">#define GST_STATE_TARGET(elem) (GST_ELEMENT_CAST(elem)-&gt;abidata.ABI.target_state)
1022
+ </pre>
1023
+ <p>
1024
+ This macro returns the target <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> of the element.
1025
+ </p>
1026
+ <div class="variablelist"><table border="0">
1027
+ <col align="left" valign="top">
1028
+ <tbody><tr>
1029
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1030
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to return the target state for.</td>
1031
+ </tr></tbody>
1032
+ </table></div>
1033
+ <p class="since">Since 0.10.13</p>
1034
+ </div>
1035
+ <hr>
1036
+ <div class="refsect2">
1037
+ <a name="GST-STATE-TRANSITION:CAPS"></a><h3>GST_STATE_TRANSITION()</h3>
1038
+ <pre class="programlisting">#define GST_STATE_TRANSITION(cur,next) ((GstStateChange)(((cur)&lt;&lt;3)|(next)))
1039
+ </pre>
1040
+ <p>
1041
+ Given a current state <em class="parameter"><code>cur</code></em> and a next state <em class="parameter"><code>next</code></em>, calculate the associated
1042
+ <a class="link" href="GstElement.html#GstStateChange" title="enum GstStateChange"><span class="type">GstStateChange</span></a> transition.
1043
+ </p>
1044
+ <div class="variablelist"><table border="0">
1045
+ <col align="left" valign="top">
1046
+ <tbody>
1047
+ <tr>
1048
+ <td><p><span class="term"><em class="parameter"><code>cur</code></em> :</span></p></td>
1049
+ <td>A current state</td>
1050
+ </tr>
1051
+ <tr>
1052
+ <td><p><span class="term"><em class="parameter"><code>next</code></em> :</span></p></td>
1053
+ <td>A next state</td>
1054
+ </tr>
1055
+ </tbody>
1056
+ </table></div>
1057
+ </div>
1058
+ <hr>
1059
+ <div class="refsect2">
1060
+ <a name="GST-STATE-TRANSITION-CURRENT:CAPS"></a><h3>GST_STATE_TRANSITION_CURRENT()</h3>
1061
+ <pre class="programlisting">#define GST_STATE_TRANSITION_CURRENT(trans) ((GstState)((trans)&gt;&gt;3))
1062
+ </pre>
1063
+ <p>
1064
+ Given a state transition <em class="parameter"><code>trans</code></em>, extract the current <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a>.
1065
+ </p>
1066
+ <div class="variablelist"><table border="0">
1067
+ <col align="left" valign="top">
1068
+ <tbody><tr>
1069
+ <td><p><span class="term"><em class="parameter"><code>trans</code></em> :</span></p></td>
1070
+ <td>A <a class="link" href="GstElement.html#GstStateChange" title="enum GstStateChange"><span class="type">GstStateChange</span></a>
1071
+ </td>
1072
+ </tr></tbody>
1073
+ </table></div>
1074
+ </div>
1075
+ <hr>
1076
+ <div class="refsect2">
1077
+ <a name="GST-STATE-TRANSITION-NEXT:CAPS"></a><h3>GST_STATE_TRANSITION_NEXT()</h3>
1078
+ <pre class="programlisting">#define GST_STATE_TRANSITION_NEXT(trans) ((GstState)((trans)&amp;0x7))
1079
+ </pre>
1080
+ <p>
1081
+ Given a state transition <em class="parameter"><code>trans</code></em>, extract the next <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a>.
1082
+ </p>
1083
+ <div class="variablelist"><table border="0">
1084
+ <col align="left" valign="top">
1085
+ <tbody><tr>
1086
+ <td><p><span class="term"><em class="parameter"><code>trans</code></em> :</span></p></td>
1087
+ <td>A <a class="link" href="GstElement.html#GstStateChange" title="enum GstStateChange"><span class="type">GstStateChange</span></a>
1088
+ </td>
1089
+ </tr></tbody>
1090
+ </table></div>
1091
+ </div>
1092
+ <hr>
1093
+ <div class="refsect2">
1094
+ <a name="GST-STATE-GET-LOCK:CAPS"></a><h3>GST_STATE_GET_LOCK()</h3>
1095
+ <pre class="programlisting">#define GST_STATE_GET_LOCK(elem) (GST_ELEMENT_CAST(elem)-&gt;state_lock)
1096
+ </pre>
1097
+ <p>
1098
+ Get a reference to the state lock of <em class="parameter"><code>elem</code></em>.
1099
+ This lock is used by the core. It is taken while getting or setting
1100
+ the state, during state changes, and while finalizing.
1101
+ </p>
1102
+ <div class="variablelist"><table border="0">
1103
+ <col align="left" valign="top">
1104
+ <tbody><tr>
1105
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1106
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>
1107
+ </td>
1108
+ </tr></tbody>
1109
+ </table></div>
1110
+ </div>
1111
+ <hr>
1112
+ <div class="refsect2">
1113
+ <a name="GST-STATE-GET-COND:CAPS"></a><h3>GST_STATE_GET_COND()</h3>
1114
+ <pre class="programlisting">#define GST_STATE_GET_COND(elem) (GST_ELEMENT_CAST(elem)-&gt;state_cond)
1115
+ </pre>
1116
+ <p>
1117
+ Get the conditional used to signal the completion of a state change.
1118
+ </p>
1119
+ <div class="variablelist"><table border="0">
1120
+ <col align="left" valign="top">
1121
+ <tbody><tr>
1122
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1123
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>
1124
+ </td>
1125
+ </tr></tbody>
1126
+ </table></div>
1127
+ </div>
1128
+ <hr>
1129
+ <div class="refsect2">
1130
+ <a name="GST-ELEMENT-NAME:CAPS"></a><h3>GST_ELEMENT_NAME()</h3>
1131
+ <pre class="programlisting">#define GST_ELEMENT_NAME(elem) (GST_OBJECT_NAME(elem))
1132
+ </pre>
1133
+ <p>
1134
+ Gets the name of this element. Use only in core as this is not
1135
+ ABI-compatible. Others use <a class="link" href="GstElement.html#gst-element-get-name" title="gst_element_get_name()"><code class="function">gst_element_get_name()</code></a>
1136
+ </p>
1137
+ <div class="variablelist"><table border="0">
1138
+ <col align="left" valign="top">
1139
+ <tbody><tr>
1140
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1141
+ <td>A <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
1142
+ </tr></tbody>
1143
+ </table></div>
1144
+ </div>
1145
+ <hr>
1146
+ <div class="refsect2">
1147
+ <a name="GST-ELEMENT-PARENT:CAPS"></a><h3>GST_ELEMENT_PARENT()</h3>
1148
+ <pre class="programlisting">#define GST_ELEMENT_PARENT(elem) (GST_ELEMENT_CAST(GST_OBJECT_PARENT(elem)))
1149
+ </pre>
1150
+ <p>
1151
+ Get the parent object of this element.
1152
+ </p>
1153
+ <div class="variablelist"><table border="0">
1154
+ <col align="left" valign="top">
1155
+ <tbody><tr>
1156
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1157
+ <td>A <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
1158
+ </tr></tbody>
1159
+ </table></div>
1160
+ </div>
1161
+ <hr>
1162
+ <div class="refsect2">
1163
+ <a name="GST-ELEMENT-BUS:CAPS"></a><h3>GST_ELEMENT_BUS()</h3>
1164
+ <pre class="programlisting">#define GST_ELEMENT_BUS(elem) (GST_ELEMENT_CAST(elem)-&gt;bus)
1165
+ </pre>
1166
+ <p>
1167
+ Get the message bus of this element.
1168
+ </p>
1169
+ <div class="variablelist"><table border="0">
1170
+ <col align="left" valign="top">
1171
+ <tbody><tr>
1172
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1173
+ <td>A <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
1174
+ </tr></tbody>
1175
+ </table></div>
1176
+ </div>
1177
+ <hr>
1178
+ <div class="refsect2">
1179
+ <a name="GST-ELEMENT-CLOCK:CAPS"></a><h3>GST_ELEMENT_CLOCK()</h3>
1180
+ <pre class="programlisting">#define GST_ELEMENT_CLOCK(elem) (GST_ELEMENT_CAST(elem)-&gt;clock)
1181
+ </pre>
1182
+ <p>
1183
+ Get the clock of this element
1184
+ </p>
1185
+ <div class="variablelist"><table border="0">
1186
+ <col align="left" valign="top">
1187
+ <tbody><tr>
1188
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1189
+ <td>A <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
1190
+ </tr></tbody>
1191
+ </table></div>
1192
+ </div>
1193
+ <hr>
1194
+ <div class="refsect2">
1195
+ <a name="GST-ELEMENT-PADS:CAPS"></a><h3>GST_ELEMENT_PADS()</h3>
1196
+ <pre class="programlisting">#define GST_ELEMENT_PADS(elem) (GST_ELEMENT_CAST(elem)-&gt;pads)
1197
+ </pre>
1198
+ <p>
1199
+ Get the pads of this elements.
1200
+ </p>
1201
+ <div class="variablelist"><table border="0">
1202
+ <col align="left" valign="top">
1203
+ <tbody><tr>
1204
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1205
+ <td>A <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
1206
+ </tr></tbody>
1207
+ </table></div>
1208
+ </div>
1209
+ <hr>
1210
+ <div class="refsect2">
1211
+ <a name="GST-ELEMENT-START-TIME:CAPS"></a><h3>GST_ELEMENT_START_TIME()</h3>
1212
+ <pre class="programlisting">#define GST_ELEMENT_START_TIME(elem) (GST_ELEMENT_CAST(elem)-&gt;abidata.ABI.start_time)
1213
+ </pre>
1214
+ <p>
1215
+ This macro returns the start_time of the <em class="parameter"><code>elem</code></em>. The start_time is the
1216
+ running_time of the pipeline when the element went to PAUSED.
1217
+ </p>
1218
+ <div class="variablelist"><table border="0">
1219
+ <col align="left" valign="top">
1220
+ <tbody><tr>
1221
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1222
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to return the start time for.</td>
1223
+ </tr></tbody>
1224
+ </table></div>
1225
+ <p class="since">Since 0.10.24</p>
1226
+ </div>
1227
+ <hr>
1228
+ <div class="refsect2">
1229
+ <a name="GST-ELEMENT-ERROR:CAPS"></a><h3>GST_ELEMENT_ERROR()</h3>
1230
+ <pre class="programlisting">#define GST_ELEMENT_ERROR(el, domain, code, text, debug)</pre>
1231
+ <p>
1232
+ Utility function that elements can use in case they encountered a fatal
1233
+ data processing error. The pipeline will post an error message and the
1234
+ application will be requested to stop further media processing.
1235
+ </p>
1236
+ <div class="variablelist"><table border="0">
1237
+ <col align="left" valign="top">
1238
+ <tbody>
1239
+ <tr>
1240
+ <td><p><span class="term"><em class="parameter"><code>el</code></em> :</span></p></td>
1241
+ <td>the element that generates the error</td>
1242
+ </tr>
1243
+ <tr>
1244
+ <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
1245
+ <td>like CORE, LIBRARY, RESOURCE or STREAM (see <a class="link" href="gstreamer-GstGError.html" title="GstGError"><span class="type">gstreamer-GstGError</span></a>)</td>
1246
+ </tr>
1247
+ <tr>
1248
+ <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
1249
+ <td>error code defined for that domain (see <a class="link" href="gstreamer-GstGError.html" title="GstGError"><span class="type">gstreamer-GstGError</span></a>)</td>
1250
+ </tr>
1251
+ <tr>
1252
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
1253
+ <td>the message to display (format string and args enclosed in
1254
+ parentheses)</td>
1255
+ </tr>
1256
+ <tr>
1257
+ <td><p><span class="term"><em class="parameter"><code>debug</code></em> :</span></p></td>
1258
+ <td>debugging information for the message (format string and args
1259
+ enclosed in parentheses)</td>
1260
+ </tr>
1261
+ </tbody>
1262
+ </table></div>
1263
+ </div>
1264
+ <hr>
1265
+ <div class="refsect2">
1266
+ <a name="GST-ELEMENT-WARNING:CAPS"></a><h3>GST_ELEMENT_WARNING()</h3>
1267
+ <pre class="programlisting">#define GST_ELEMENT_WARNING(el, domain, code, text, debug)</pre>
1268
+ <p>
1269
+ Utility function that elements can use in case they encountered a non-fatal
1270
+ data processing problem. The pipeline will post a warning message and the
1271
+ application will be informed.
1272
+ </p>
1273
+ <div class="variablelist"><table border="0">
1274
+ <col align="left" valign="top">
1275
+ <tbody>
1276
+ <tr>
1277
+ <td><p><span class="term"><em class="parameter"><code>el</code></em> :</span></p></td>
1278
+ <td>the element that generates the warning</td>
1279
+ </tr>
1280
+ <tr>
1281
+ <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
1282
+ <td>like CORE, LIBRARY, RESOURCE or STREAM (see <a class="link" href="gstreamer-GstGError.html" title="GstGError"><span class="type">gstreamer-GstGError</span></a>)</td>
1283
+ </tr>
1284
+ <tr>
1285
+ <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
1286
+ <td>error code defined for that domain (see <a class="link" href="gstreamer-GstGError.html" title="GstGError"><span class="type">gstreamer-GstGError</span></a>)</td>
1287
+ </tr>
1288
+ <tr>
1289
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
1290
+ <td>the message to display (format string and args enclosed in
1291
+ parentheses)</td>
1292
+ </tr>
1293
+ <tr>
1294
+ <td><p><span class="term"><em class="parameter"><code>debug</code></em> :</span></p></td>
1295
+ <td>debugging information for the message (format string and args
1296
+ enclosed in parentheses)</td>
1297
+ </tr>
1298
+ </tbody>
1299
+ </table></div>
1300
+ </div>
1301
+ <hr>
1302
+ <div class="refsect2">
1303
+ <a name="GST-ELEMENT-INFO:CAPS"></a><h3>GST_ELEMENT_INFO()</h3>
1304
+ <pre class="programlisting">#define GST_ELEMENT_INFO(el, domain, code, text, debug)</pre>
1305
+ <p>
1306
+ Utility function that elements can use in case they want to inform
1307
+ the application of something noteworthy that is not an error.
1308
+ The pipeline will post a info message and the
1309
+ application will be informed.
1310
+ </p>
1311
+ <div class="variablelist"><table border="0">
1312
+ <col align="left" valign="top">
1313
+ <tbody>
1314
+ <tr>
1315
+ <td><p><span class="term"><em class="parameter"><code>el</code></em> :</span></p></td>
1316
+ <td>the element that generates the information</td>
1317
+ </tr>
1318
+ <tr>
1319
+ <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
1320
+ <td>like CORE, LIBRARY, RESOURCE or STREAM (see <a class="link" href="gstreamer-GstGError.html" title="GstGError"><span class="type">gstreamer-GstGError</span></a>)</td>
1321
+ </tr>
1322
+ <tr>
1323
+ <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
1324
+ <td>error code defined for that domain (see <a class="link" href="gstreamer-GstGError.html" title="GstGError"><span class="type">gstreamer-GstGError</span></a>)</td>
1325
+ </tr>
1326
+ <tr>
1327
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
1328
+ <td>the message to display (format string and args enclosed in
1329
+ parentheses)</td>
1330
+ </tr>
1331
+ <tr>
1332
+ <td><p><span class="term"><em class="parameter"><code>debug</code></em> :</span></p></td>
1333
+ <td>debugging information for the message (format string and args
1334
+ enclosed in parentheses)</td>
1335
+ </tr>
1336
+ </tbody>
1337
+ </table></div>
1338
+ <p class="since">Since 0.10.12</p>
1339
+ </div>
1340
+ <hr>
1341
+ <div class="refsect2">
1342
+ <a name="GST-ELEMENT-IS-LOCKED-STATE:CAPS"></a><h3>GST_ELEMENT_IS_LOCKED_STATE()</h3>
1343
+ <pre class="programlisting">#define GST_ELEMENT_IS_LOCKED_STATE(elem) (GST_OBJECT_FLAG_IS_SET(elem,GST_ELEMENT_LOCKED_STATE))
1344
+ </pre>
1345
+ <p>
1346
+ Check if the element is in the locked state and therefore will ignore state
1347
+ changes from its parent object.
1348
+ </p>
1349
+ <div class="variablelist"><table border="0">
1350
+ <col align="left" valign="top">
1351
+ <tbody><tr>
1352
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
1353
+ <td>A <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
1354
+ </tr></tbody>
1355
+ </table></div>
1356
+ </div>
1357
+ <hr>
1358
+ <div class="refsect2">
1359
+ <a name="gst-element-class-add-pad-template"></a><h3>gst_element_class_add_pad_template ()</h3>
1360
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_class_add_pad_template (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
1361
+ <em class="parameter"><code><a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> *templ</code></em>);</pre>
1362
+ <p>
1363
+ Adds a padtemplate to an element class. This is mainly used in the _base_init
1364
+ functions of classes.
1365
+ </p>
1366
+ <div class="variablelist"><table border="0">
1367
+ <col align="left" valign="top">
1368
+ <tbody>
1369
+ <tr>
1370
+ <td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
1371
+ <td>the <a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> to add the pad template to.</td>
1372
+ </tr>
1373
+ <tr>
1374
+ <td><p><span class="term"><em class="parameter"><code>templ</code></em> :</span></p></td>
1375
+ <td>a <a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> to add to the element class. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1376
+ </td>
1377
+ </tr>
1378
+ </tbody>
1379
+ </table></div>
1380
+ </div>
1381
+ <hr>
1382
+ <div class="refsect2">
1383
+ <a name="gst-element-class-get-pad-template"></a><h3>gst_element_class_get_pad_template ()</h3>
1384
+ <pre class="programlisting"><a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="returnvalue">GstPadTemplate</span></a> * gst_element_class_get_pad_template
1385
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *element_class</code></em>,
1386
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1387
+ <p>
1388
+ Retrieves a padtemplate from <em class="parameter"><code>element_class</code></em> with the given name.
1389
+ </p>
1390
+ <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
1391
+ <h3 class="title">Note</h3>If you use this function in the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GInstanceInitFunc"><span class="type">GInstanceInitFunc</span></a> of an object class
1392
+ that has subclasses, make sure to pass the g_class parameter of the
1393
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GInstanceInitFunc"><span class="type">GInstanceInitFunc</span></a> here.</div>
1394
+ <p>
1395
+ </p>
1396
+ <div class="variablelist"><table border="0">
1397
+ <col align="left" valign="top">
1398
+ <tbody>
1399
+ <tr>
1400
+ <td><p><span class="term"><em class="parameter"><code>element_class</code></em> :</span></p></td>
1401
+ <td>a <a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> to get the pad template of.</td>
1402
+ </tr>
1403
+ <tr>
1404
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1405
+ <td>the name of the <a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> to get.</td>
1406
+ </tr>
1407
+ <tr>
1408
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1409
+ <td>the <a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> with the given name, or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1410
+ if none was found. No unreferencing is necessary. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1411
+ </td>
1412
+ </tr>
1413
+ </tbody>
1414
+ </table></div>
1415
+ </div>
1416
+ <hr>
1417
+ <div class="refsect2">
1418
+ <a name="gst-element-class-get-pad-template-list"></a><h3>gst_element_class_get_pad_template_list ()</h3>
1419
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gst_element_class_get_pad_template_list
1420
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *element_class</code></em>);</pre>
1421
+ <p>
1422
+ Retrieves a list of the pad templates associated with <em class="parameter"><code>element_class</code></em>. The
1423
+ list must not be modified by the calling code.
1424
+ </p>
1425
+ <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
1426
+ <h3 class="title">Note</h3>If you use this function in the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GInstanceInitFunc"><span class="type">GInstanceInitFunc</span></a> of an object class
1427
+ that has subclasses, make sure to pass the g_class parameter of the
1428
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GInstanceInitFunc"><span class="type">GInstanceInitFunc</span></a> here.</div>
1429
+ <p>
1430
+ </p>
1431
+ <div class="variablelist"><table border="0">
1432
+ <col align="left" valign="top">
1433
+ <tbody>
1434
+ <tr>
1435
+ <td><p><span class="term"><em class="parameter"><code>element_class</code></em> :</span></p></td>
1436
+ <td>a <a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> to get pad templates of.</td>
1437
+ </tr>
1438
+ <tr>
1439
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1440
+ <td>the <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of
1441
+ pad templates. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> Gst.PadTemplate]</span>
1442
+ </td>
1443
+ </tr>
1444
+ </tbody>
1445
+ </table></div>
1446
+ </div>
1447
+ <hr>
1448
+ <div class="refsect2">
1449
+ <a name="gst-element-class-install-std-props"></a><h3>gst_element_class_install_std_props ()</h3>
1450
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_class_install_std_props (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
1451
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_name</code></em>,
1452
+ <em class="parameter"><code>...</code></em>);</pre>
1453
+ <p>
1454
+ Adds a list of standardized properties with types to the <em class="parameter"><code>klass</code></em>.
1455
+ the id is for the property switch in your get_prop method, and
1456
+ the flags determine readability / writeability.
1457
+ </p>
1458
+ <div class="variablelist"><table border="0">
1459
+ <col align="left" valign="top">
1460
+ <tbody>
1461
+ <tr>
1462
+ <td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
1463
+ <td>the <a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> to add the properties to.</td>
1464
+ </tr>
1465
+ <tr>
1466
+ <td><p><span class="term"><em class="parameter"><code>first_name</code></em> :</span></p></td>
1467
+ <td>the name of the first property.
1468
+ in a NULL terminated</td>
1469
+ </tr>
1470
+ <tr>
1471
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
1472
+ <td>the id and flags of the first property, followed by
1473
+ further 'name', 'id', 'flags' triplets and terminated by NULL.</td>
1474
+ </tr>
1475
+ </tbody>
1476
+ </table></div>
1477
+ </div>
1478
+ <hr>
1479
+ <div class="refsect2">
1480
+ <a name="gst-element-class-set-details"></a><h3>gst_element_class_set_details ()</h3>
1481
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_class_set_details (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
1482
+ <em class="parameter"><code>const <a class="link" href="GstElementFactory.html#GstElementDetails" title="struct GstElementDetails"><span class="type">GstElementDetails</span></a> *details</code></em>);</pre>
1483
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1484
+ <h3 class="title">Warning</h3>
1485
+ <p><code class="literal">gst_element_class_set_details</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GstElement.html#gst-element-class-set-details-simple" title="gst_element_class_set_details_simple ()"><code class="function">gst_element_class_set_details_simple()</code></a> instead.</p>
1486
+ </div>
1487
+ <p>
1488
+ Sets the detailed information for a <a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a>.
1489
+ </p>
1490
+ <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
1491
+ <h3 class="title">Note</h3>This function is for use in _base_init functions only.</div>
1492
+ <p>
1493
+ </p>
1494
+ <p>
1495
+ The <em class="parameter"><code>details</code></em> are copied.
1496
+ </p>
1497
+ <div class="variablelist"><table border="0">
1498
+ <col align="left" valign="top">
1499
+ <tbody>
1500
+ <tr>
1501
+ <td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
1502
+ <td>class to set details for</td>
1503
+ </tr>
1504
+ <tr>
1505
+ <td><p><span class="term"><em class="parameter"><code>details</code></em> :</span></p></td>
1506
+ <td>details to set</td>
1507
+ </tr>
1508
+ </tbody>
1509
+ </table></div>
1510
+ </div>
1511
+ <hr>
1512
+ <div class="refsect2">
1513
+ <a name="gst-element-class-set-details-simple"></a><h3>gst_element_class_set_details_simple ()</h3>
1514
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_class_set_details_simple
1515
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
1516
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *longname</code></em>,
1517
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *classification</code></em>,
1518
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *description</code></em>,
1519
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *author</code></em>);</pre>
1520
+ <p>
1521
+ Sets the detailed information for a <a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a>. Simpler version of
1522
+ <a class="link" href="GstElement.html#gst-element-class-set-details" title="gst_element_class_set_details ()"><code class="function">gst_element_class_set_details()</code></a> that generates less linker overhead.
1523
+ </p>
1524
+ <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
1525
+ <h3 class="title">Note</h3>This function is for use in _base_init functions only.</div>
1526
+ <p>
1527
+ </p>
1528
+ <p>
1529
+ The detail parameter strings are copied into the <a class="link" href="GstElementFactory.html#GstElementDetails" title="struct GstElementDetails"><span class="type">GstElementDetails</span></a> for
1530
+ the element class.
1531
+ </p>
1532
+ <div class="variablelist"><table border="0">
1533
+ <col align="left" valign="top">
1534
+ <tbody>
1535
+ <tr>
1536
+ <td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
1537
+ <td>class to set details for</td>
1538
+ </tr>
1539
+ <tr>
1540
+ <td><p><span class="term"><em class="parameter"><code>longname</code></em> :</span></p></td>
1541
+ <td>The long English name of the element. E.g. "File Sink"</td>
1542
+ </tr>
1543
+ <tr>
1544
+ <td><p><span class="term"><em class="parameter"><code>classification</code></em> :</span></p></td>
1545
+ <td>String describing the type of element, as an unordered list
1546
+ separated with slashes ('/'). See draft-klass.txt of the design docs
1547
+ for more details and common types. E.g: "Sink/File"</td>
1548
+ </tr>
1549
+ <tr>
1550
+ <td><p><span class="term"><em class="parameter"><code>description</code></em> :</span></p></td>
1551
+ <td>Sentence describing the purpose of the element.
1552
+ E.g: "Write stream to a file"</td>
1553
+ </tr>
1554
+ <tr>
1555
+ <td><p><span class="term"><em class="parameter"><code>author</code></em> :</span></p></td>
1556
+ <td>Name and contact details of the author(s). Use \n to separate
1557
+ multiple author details. E.g: "Joe Bloggs &lt;joe.blogs at foo.com&gt;"</td>
1558
+ </tr>
1559
+ </tbody>
1560
+ </table></div>
1561
+ <p class="since">Since 0.10.14</p>
1562
+ </div>
1563
+ <hr>
1564
+ <div class="refsect2">
1565
+ <a name="gst-element-class-set-documentation-uri"></a><h3>gst_element_class_set_documentation_uri ()</h3>
1566
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_class_set_documentation_uri
1567
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
1568
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uri</code></em>);</pre>
1569
+ <p>
1570
+ Set uri pointing to user documentation. Applications can use this to show
1571
+ help for e.g. effects to users.
1572
+ </p>
1573
+ <div class="variablelist"><table border="0">
1574
+ <col align="left" valign="top">
1575
+ <tbody>
1576
+ <tr>
1577
+ <td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
1578
+ <td>class to set details for</td>
1579
+ </tr>
1580
+ <tr>
1581
+ <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
1582
+ <td>uri of element documentation</td>
1583
+ </tr>
1584
+ </tbody>
1585
+ </table></div>
1586
+ <p class="since">Since 0.10.31</p>
1587
+ </div>
1588
+ <hr>
1589
+ <div class="refsect2">
1590
+ <a name="gst-element-class-set-icon-name"></a><h3>gst_element_class_set_icon_name ()</h3>
1591
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_class_set_icon_name (<em class="parameter"><code><a class="link" href="GstElement.html#GstElementClass" title="struct GstElementClass"><span class="type">GstElementClass</span></a> *klass</code></em>,
1592
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1593
+ <p>
1594
+ Elements that bridge to certain other products can include an icon of that
1595
+ used product. Application can show the icon in menus/selectors to help
1596
+ identifying specific elements.
1597
+ </p>
1598
+ <div class="variablelist"><table border="0">
1599
+ <col align="left" valign="top">
1600
+ <tbody>
1601
+ <tr>
1602
+ <td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
1603
+ <td>class to set details for</td>
1604
+ </tr>
1605
+ <tr>
1606
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1607
+ <td>name of an icon</td>
1608
+ </tr>
1609
+ </tbody>
1610
+ </table></div>
1611
+ <p class="since">Since 0.10.31</p>
1612
+ </div>
1613
+ <hr>
1614
+ <div class="refsect2">
1615
+ <a name="gst-element-add-pad"></a><h3>gst_element_add_pad ()</h3>
1616
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_add_pad (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
1617
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>);</pre>
1618
+ <p>
1619
+ Adds a pad (link point) to <em class="parameter"><code>element</code></em>. <em class="parameter"><code>pad</code></em>'s parent will be set to <em class="parameter"><code>element</code></em>;
1620
+ see <a class="link" href="GstObject.html#gst-object-set-parent" title="gst_object_set_parent ()"><code class="function">gst_object_set_parent()</code></a> for refcounting information.
1621
+ </p>
1622
+ <p>
1623
+ Pads are not automatically activated so elements should perform the needed
1624
+ steps to activate the pad in case this pad is added in the PAUSED or PLAYING
1625
+ state. See <a class="link" href="GstPad.html#gst-pad-set-active" title="gst_pad_set_active ()"><code class="function">gst_pad_set_active()</code></a> for more information about activating pads.
1626
+ </p>
1627
+ <p>
1628
+ The pad and the element should be unlocked when calling this function.
1629
+ </p>
1630
+ <p>
1631
+ This function will emit the <a class="link" href="GstElement.html#GstElement-pad-added" title='The "pad-added" signal'><span class="type">"pad-added"</span></a> signal on the element.
1632
+ </p>
1633
+ <div class="variablelist"><table border="0">
1634
+ <col align="left" valign="top">
1635
+ <tbody>
1636
+ <tr>
1637
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1638
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to add the pad to.</td>
1639
+ </tr>
1640
+ <tr>
1641
+ <td><p><span class="term"><em class="parameter"><code>pad</code></em> :</span></p></td>
1642
+ <td>the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> to add to the element. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1643
+ </td>
1644
+ </tr>
1645
+ <tr>
1646
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1647
+ <td>
1648
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad could be added. This function can fail when
1649
+ a pad with the same name already existed or the pad already had another
1650
+ parent.
1651
+ MT safe.</td>
1652
+ </tr>
1653
+ </tbody>
1654
+ </table></div>
1655
+ </div>
1656
+ <hr>
1657
+ <div class="refsect2">
1658
+ <a name="gst-element-get-pad"></a><h3>gst_element_get_pad ()</h3>
1659
+ <pre class="programlisting"><a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * gst_element_get_pad (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
1660
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1661
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1662
+ <h3 class="title">Warning</h3>
1663
+ <p><code class="literal">gst_element_get_pad</code> is deprecated and should not be used in newly-written code. This function is deprecated as it's unclear if the reference
1664
+ to the result pad should be released with <a class="link" href="GstObject.html#gst-object-unref" title="gst_object_unref ()"><code class="function">gst_object_unref()</code></a> in case of a static pad
1665
+ or <a class="link" href="GstElement.html#gst-element-release-request-pad" title="gst_element_release_request_pad ()"><code class="function">gst_element_release_request_pad()</code></a> in case of a request pad.
1666
+ Use <a class="link" href="GstElement.html#gst-element-get-static-pad" title="gst_element_get_static_pad ()"><code class="function">gst_element_get_static_pad()</code></a> or <a class="link" href="GstElement.html#gst-element-get-request-pad" title="gst_element_get_request_pad ()"><code class="function">gst_element_get_request_pad()</code></a> instead.</p>
1667
+ </div>
1668
+ <p>
1669
+ Retrieves a pad from <em class="parameter"><code>element</code></em> by name. Tries <a class="link" href="GstElement.html#gst-element-get-static-pad" title="gst_element_get_static_pad ()"><code class="function">gst_element_get_static_pad()</code></a>
1670
+ first, then <a class="link" href="GstElement.html#gst-element-get-request-pad" title="gst_element_get_request_pad ()"><code class="function">gst_element_get_request_pad()</code></a>.
1671
+ </p>
1672
+ <div class="variablelist"><table border="0">
1673
+ <col align="left" valign="top">
1674
+ <tbody>
1675
+ <tr>
1676
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1677
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
1678
+ </tr>
1679
+ <tr>
1680
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1681
+ <td>the name of the pad to retrieve.</td>
1682
+ </tr>
1683
+ <tr>
1684
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1685
+ <td>the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> if found, otherwise <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Unref or Release after usage,
1686
+ depending on the type of the pad. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1687
+ </td>
1688
+ </tr>
1689
+ </tbody>
1690
+ </table></div>
1691
+ </div>
1692
+ <hr>
1693
+ <div class="refsect2">
1694
+ <a name="gst-element-create-all-pads"></a><h3>gst_element_create_all_pads ()</h3>
1695
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_create_all_pads (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
1696
+ <p>
1697
+ Creates a pad for each pad template that is always available.
1698
+ This function is only useful during object intialization of
1699
+ subclasses of <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.
1700
+ </p>
1701
+ <div class="variablelist"><table border="0">
1702
+ <col align="left" valign="top">
1703
+ <tbody><tr>
1704
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1705
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to create pads for. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1706
+ </td>
1707
+ </tr></tbody>
1708
+ </table></div>
1709
+ </div>
1710
+ <hr>
1711
+ <div class="refsect2">
1712
+ <a name="gst-element-get-compatible-pad"></a><h3>gst_element_get_compatible_pad ()</h3>
1713
+ <pre class="programlisting"><a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * gst_element_get_compatible_pad
1714
+ (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
1715
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>,
1716
+ <em class="parameter"><code>const <a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> *caps</code></em>);</pre>
1717
+ <p>
1718
+ Looks for an unlinked pad to which the given pad can link. It is not
1719
+ guaranteed that linking the pads will work, though it should work in most
1720
+ cases.
1721
+ </p>
1722
+ <p>
1723
+ This function will first attempt to find a compatible unlinked ALWAYS pad,
1724
+ and if none can be found, it will request a compatible REQUEST pad by looking
1725
+ at the templates of <em class="parameter"><code>element</code></em>.
1726
+ </p>
1727
+ <div class="variablelist"><table border="0">
1728
+ <col align="left" valign="top">
1729
+ <tbody>
1730
+ <tr>
1731
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1732
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> in which the pad should be found. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1733
+ </td>
1734
+ </tr>
1735
+ <tr>
1736
+ <td><p><span class="term"><em class="parameter"><code>pad</code></em> :</span></p></td>
1737
+ <td>the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> to find a compatible one for. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1738
+ </td>
1739
+ </tr>
1740
+ <tr>
1741
+ <td><p><span class="term"><em class="parameter"><code>caps</code></em> :</span></p></td>
1742
+ <td>the <a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> to use as a filter.</td>
1743
+ </tr>
1744
+ <tr>
1745
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1746
+ <td>the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> to which a link can be made, or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1747
+ if one cannot be found. <a class="link" href="GstObject.html#gst-object-unref" title="gst_object_unref ()"><code class="function">gst_object_unref()</code></a> after usage. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1748
+ </td>
1749
+ </tr>
1750
+ </tbody>
1751
+ </table></div>
1752
+ </div>
1753
+ <hr>
1754
+ <div class="refsect2">
1755
+ <a name="gst-element-get-compatible-pad-template"></a><h3>gst_element_get_compatible_pad_template ()</h3>
1756
+ <pre class="programlisting"><a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="returnvalue">GstPadTemplate</span></a> * gst_element_get_compatible_pad_template
1757
+ (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
1758
+ <em class="parameter"><code><a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> *compattempl</code></em>);</pre>
1759
+ <p>
1760
+ Retrieves a pad template from <em class="parameter"><code>element</code></em> that is compatible with <em class="parameter"><code>compattempl</code></em>.
1761
+ Pads from compatible templates can be linked together.
1762
+ </p>
1763
+ <div class="variablelist"><table border="0">
1764
+ <col align="left" valign="top">
1765
+ <tbody>
1766
+ <tr>
1767
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1768
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to get a compatible pad template for. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1769
+ </td>
1770
+ </tr>
1771
+ <tr>
1772
+ <td><p><span class="term"><em class="parameter"><code>compattempl</code></em> :</span></p></td>
1773
+ <td>the <a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> to find a compatible
1774
+ template for. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1775
+ </td>
1776
+ </tr>
1777
+ <tr>
1778
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1779
+ <td>a compatible <a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a>, or NULL if none
1780
+ was found. No unreferencing is necessary. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1781
+ </td>
1782
+ </tr>
1783
+ </tbody>
1784
+ </table></div>
1785
+ </div>
1786
+ <hr>
1787
+ <div class="refsect2">
1788
+ <a name="gst-element-get-request-pad"></a><h3>gst_element_get_request_pad ()</h3>
1789
+ <pre class="programlisting"><a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * gst_element_get_request_pad (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
1790
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1791
+ <p>
1792
+ Retrieves a pad from the element by name. This version only retrieves
1793
+ request pads. The pad should be released with
1794
+ <a class="link" href="GstElement.html#gst-element-release-request-pad" title="gst_element_release_request_pad ()"><code class="function">gst_element_release_request_pad()</code></a>.
1795
+ </p>
1796
+ <p>
1797
+ This method is slow and will be deprecated in the future. New code should
1798
+ use <a class="link" href="GstElement.html#gst-element-request-pad" title="gst_element_request_pad ()"><code class="function">gst_element_request_pad()</code></a> with the requested template.
1799
+ </p>
1800
+ <div class="variablelist"><table border="0">
1801
+ <col align="left" valign="top">
1802
+ <tbody>
1803
+ <tr>
1804
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1805
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to find a request pad of.</td>
1806
+ </tr>
1807
+ <tr>
1808
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1809
+ <td>the name of the request <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> to retrieve.</td>
1810
+ </tr>
1811
+ <tr>
1812
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1813
+ <td>requested <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> if found, otherwise <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
1814
+ Release after usage. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1815
+ </td>
1816
+ </tr>
1817
+ </tbody>
1818
+ </table></div>
1819
+ </div>
1820
+ <hr>
1821
+ <div class="refsect2">
1822
+ <a name="gst-element-get-static-pad"></a><h3>gst_element_get_static_pad ()</h3>
1823
+ <pre class="programlisting"><a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * gst_element_get_static_pad (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
1824
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1825
+ <p>
1826
+ Retrieves a pad from <em class="parameter"><code>element</code></em> by name. This version only retrieves
1827
+ already-existing (i.e. 'static') pads.
1828
+ </p>
1829
+ <div class="variablelist"><table border="0">
1830
+ <col align="left" valign="top">
1831
+ <tbody>
1832
+ <tr>
1833
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1834
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to find a static pad of.</td>
1835
+ </tr>
1836
+ <tr>
1837
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1838
+ <td>the name of the static <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> to retrieve.</td>
1839
+ </tr>
1840
+ <tr>
1841
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1842
+ <td>the requested <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> if found, otherwise <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
1843
+ unref after usage.
1844
+ MT safe. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1845
+ </td>
1846
+ </tr>
1847
+ </tbody>
1848
+ </table></div>
1849
+ </div>
1850
+ <hr>
1851
+ <div class="refsect2">
1852
+ <a name="gst-element-request-pad"></a><h3>gst_element_request_pad ()</h3>
1853
+ <pre class="programlisting"><a class="link" href="GstPad.html" title="GstPad"><span class="returnvalue">GstPad</span></a> * gst_element_request_pad (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
1854
+ <em class="parameter"><code><a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> *templ</code></em>,
1855
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
1856
+ <em class="parameter"><code>const <a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> *caps</code></em>);</pre>
1857
+ <p>
1858
+ Retrieves a request pad from the element according to the provided template.
1859
+ </p>
1860
+ <p>
1861
+ If the <em class="parameter"><code>caps</code></em> are specified and the element implements thew new
1862
+ request_new_pad_full virtual method, the element will use them to select
1863
+ which pad to create.
1864
+ </p>
1865
+ <p>
1866
+ The pad should be released with <a class="link" href="GstElement.html#gst-element-release-request-pad" title="gst_element_release_request_pad ()"><code class="function">gst_element_release_request_pad()</code></a>.
1867
+ </p>
1868
+ <div class="variablelist"><table border="0">
1869
+ <col align="left" valign="top">
1870
+ <tbody>
1871
+ <tr>
1872
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1873
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to find a request pad of.</td>
1874
+ </tr>
1875
+ <tr>
1876
+ <td><p><span class="term"><em class="parameter"><code>templ</code></em> :</span></p></td>
1877
+ <td>a <a class="link" href="GstPadTemplate.html" title="GstPadTemplate"><span class="type">GstPadTemplate</span></a> of which we want a pad of.</td>
1878
+ </tr>
1879
+ <tr>
1880
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1881
+ <td>the name of the request <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a>
1882
+ to retrieve. Can be <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1883
+ </td>
1884
+ </tr>
1885
+ <tr>
1886
+ <td><p><span class="term"><em class="parameter"><code>caps</code></em> :</span></p></td>
1887
+ <td>the caps of the pad we want to
1888
+ request. Can be <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1889
+ </td>
1890
+ </tr>
1891
+ <tr>
1892
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1893
+ <td>requested <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> if found, otherwise <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
1894
+ Release after usage. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1895
+ </td>
1896
+ </tr>
1897
+ </tbody>
1898
+ </table></div>
1899
+ <p class="since">Since 0.10.32</p>
1900
+ </div>
1901
+ <hr>
1902
+ <div class="refsect2">
1903
+ <a name="gst-element-no-more-pads"></a><h3>gst_element_no_more_pads ()</h3>
1904
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_no_more_pads (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
1905
+ <p>
1906
+ Use this function to signal that the element does not expect any more pads
1907
+ to show up in the current pipeline. This function should be called whenever
1908
+ pads have been added by the element itself. Elements with <a class="link" href="GstPadTemplate.html#GST-PAD-SOMETIMES:CAPS"><span class="type">GST_PAD_SOMETIMES</span></a>
1909
+ pad templates use this in combination with autopluggers to figure out that
1910
+ the element is done initializing its pads.
1911
+ </p>
1912
+ <p>
1913
+ This function emits the <a class="link" href="GstElement.html#GstElement-no-more-pads" title='The "no-more-pads" signal'><span class="type">"no-more-pads"</span></a> signal.
1914
+ </p>
1915
+ <p>
1916
+ MT safe.
1917
+ </p>
1918
+ <div class="variablelist"><table border="0">
1919
+ <col align="left" valign="top">
1920
+ <tbody><tr>
1921
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1922
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>
1923
+ </td>
1924
+ </tr></tbody>
1925
+ </table></div>
1926
+ </div>
1927
+ <hr>
1928
+ <div class="refsect2">
1929
+ <a name="gst-element-release-request-pad"></a><h3>gst_element_release_request_pad ()</h3>
1930
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_release_request_pad (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
1931
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>);</pre>
1932
+ <p>
1933
+ Makes the element free the previously requested pad as obtained
1934
+ with <a class="link" href="GstElement.html#gst-element-get-request-pad" title="gst_element_get_request_pad ()"><code class="function">gst_element_get_request_pad()</code></a>.
1935
+ </p>
1936
+ <p>
1937
+ This does not unref the pad. If the pad was created by using
1938
+ <a class="link" href="GstElement.html#gst-element-get-request-pad" title="gst_element_get_request_pad ()"><code class="function">gst_element_get_request_pad()</code></a>, <a class="link" href="GstElement.html#gst-element-release-request-pad" title="gst_element_release_request_pad ()"><code class="function">gst_element_release_request_pad()</code></a> needs to be
1939
+ followed by <a class="link" href="GstObject.html#gst-object-unref" title="gst_object_unref ()"><code class="function">gst_object_unref()</code></a> to free the <em class="parameter"><code>pad</code></em>.
1940
+ </p>
1941
+ <p>
1942
+ MT safe.
1943
+ </p>
1944
+ <div class="variablelist"><table border="0">
1945
+ <col align="left" valign="top">
1946
+ <tbody>
1947
+ <tr>
1948
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1949
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to release the request pad of.</td>
1950
+ </tr>
1951
+ <tr>
1952
+ <td><p><span class="term"><em class="parameter"><code>pad</code></em> :</span></p></td>
1953
+ <td>the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> to release.</td>
1954
+ </tr>
1955
+ </tbody>
1956
+ </table></div>
1957
+ </div>
1958
+ <hr>
1959
+ <div class="refsect2">
1960
+ <a name="gst-element-remove-pad"></a><h3>gst_element_remove_pad ()</h3>
1961
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_remove_pad (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
1962
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>);</pre>
1963
+ <p>
1964
+ Removes <em class="parameter"><code>pad</code></em> from <em class="parameter"><code>element</code></em>. <em class="parameter"><code>pad</code></em> will be destroyed if it has not been
1965
+ referenced elsewhere using <a class="link" href="GstObject.html#gst-object-unparent" title="gst_object_unparent ()"><code class="function">gst_object_unparent()</code></a>.
1966
+ </p>
1967
+ <p>
1968
+ This function is used by plugin developers and should not be used
1969
+ by applications. Pads that were dynamically requested from elements
1970
+ with <a class="link" href="GstElement.html#gst-element-get-request-pad" title="gst_element_get_request_pad ()"><code class="function">gst_element_get_request_pad()</code></a> should be released with the
1971
+ <a class="link" href="GstElement.html#gst-element-release-request-pad" title="gst_element_release_request_pad ()"><code class="function">gst_element_release_request_pad()</code></a> function instead.
1972
+ </p>
1973
+ <p>
1974
+ Pads are not automatically deactivated so elements should perform the needed
1975
+ steps to deactivate the pad in case this pad is removed in the PAUSED or
1976
+ PLAYING state. See <a class="link" href="GstPad.html#gst-pad-set-active" title="gst_pad_set_active ()"><code class="function">gst_pad_set_active()</code></a> for more information about
1977
+ deactivating pads.
1978
+ </p>
1979
+ <p>
1980
+ The pad and the element should be unlocked when calling this function.
1981
+ </p>
1982
+ <p>
1983
+ This function will emit the <a class="link" href="GstElement.html#GstElement-pad-removed" title='The "pad-removed" signal'><span class="type">"pad-removed"</span></a> signal on the element.
1984
+ </p>
1985
+ <div class="variablelist"><table border="0">
1986
+ <col align="left" valign="top">
1987
+ <tbody>
1988
+ <tr>
1989
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
1990
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to remove pad from.</td>
1991
+ </tr>
1992
+ <tr>
1993
+ <td><p><span class="term"><em class="parameter"><code>pad</code></em> :</span></p></td>
1994
+ <td>the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> to remove from the element. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1995
+ </td>
1996
+ </tr>
1997
+ <tr>
1998
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1999
+ <td>
2000
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad could be removed. Can return <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the
2001
+ pad does not belong to the provided element.
2002
+ MT safe.</td>
2003
+ </tr>
2004
+ </tbody>
2005
+ </table></div>
2006
+ </div>
2007
+ <hr>
2008
+ <div class="refsect2">
2009
+ <a name="gst-element-iterate-pads"></a><h3>gst_element_iterate_pads ()</h3>
2010
+ <pre class="programlisting"><a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="returnvalue">GstIterator</span></a> * gst_element_iterate_pads (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2011
+ <p>
2012
+ Retrieves an iterattor of <em class="parameter"><code>element</code></em>'s pads. The iterator should
2013
+ be freed after usage.
2014
+ </p>
2015
+ <div class="variablelist"><table border="0">
2016
+ <col align="left" valign="top">
2017
+ <tbody>
2018
+ <tr>
2019
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2020
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to iterate pads of.</td>
2021
+ </tr>
2022
+ <tr>
2023
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2024
+ <td>the <a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="type">GstIterator</span></a> of <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a>. Unref each pad
2025
+ after use.
2026
+ MT safe. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2027
+ </td>
2028
+ </tr>
2029
+ </tbody>
2030
+ </table></div>
2031
+ </div>
2032
+ <hr>
2033
+ <div class="refsect2">
2034
+ <a name="gst-element-iterate-sink-pads"></a><h3>gst_element_iterate_sink_pads ()</h3>
2035
+ <pre class="programlisting"><a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="returnvalue">GstIterator</span></a> * gst_element_iterate_sink_pads (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2036
+ <p>
2037
+ Retrieves an iterator of <em class="parameter"><code>element</code></em>'s sink pads.
2038
+ </p>
2039
+ <div class="variablelist"><table border="0">
2040
+ <col align="left" valign="top">
2041
+ <tbody>
2042
+ <tr>
2043
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2044
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
2045
+ </tr>
2046
+ <tr>
2047
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2048
+ <td>the <a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="type">GstIterator</span></a> of <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a>. Unref each pad
2049
+ after use.
2050
+ MT safe. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2051
+ </td>
2052
+ </tr>
2053
+ </tbody>
2054
+ </table></div>
2055
+ </div>
2056
+ <hr>
2057
+ <div class="refsect2">
2058
+ <a name="gst-element-iterate-src-pads"></a><h3>gst_element_iterate_src_pads ()</h3>
2059
+ <pre class="programlisting"><a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="returnvalue">GstIterator</span></a> * gst_element_iterate_src_pads (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2060
+ <p>
2061
+ Retrieves an iterator of <em class="parameter"><code>element</code></em>'s source pads.
2062
+ </p>
2063
+ <div class="variablelist"><table border="0">
2064
+ <col align="left" valign="top">
2065
+ <tbody>
2066
+ <tr>
2067
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2068
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
2069
+ </tr>
2070
+ <tr>
2071
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2072
+ <td>the <a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="type">GstIterator</span></a> of <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a>. Unref each pad
2073
+ after use.
2074
+ MT safe. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2075
+ </td>
2076
+ </tr>
2077
+ </tbody>
2078
+ </table></div>
2079
+ </div>
2080
+ <hr>
2081
+ <div class="refsect2">
2082
+ <a name="gst-element-link"></a><h3>gst_element_link ()</h3>
2083
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_link (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
2084
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>);</pre>
2085
+ <p>
2086
+ Links <em class="parameter"><code>src</code></em> to <em class="parameter"><code>dest</code></em>. The link must be from source to
2087
+ destination; the other direction will not be tried. The function looks for
2088
+ existing pads that aren't linked yet. It will request new pads if necessary.
2089
+ Such pads need to be released manualy when unlinking.
2090
+ If multiple links are possible, only one is established.
2091
+ </p>
2092
+ <p>
2093
+ Make sure you have added your elements to a bin or pipeline with
2094
+ <a class="link" href="GstBin.html#gst-bin-add" title="gst_bin_add ()"><code class="function">gst_bin_add()</code></a> before trying to link them.
2095
+ </p>
2096
+ <div class="variablelist"><table border="0">
2097
+ <col align="left" valign="top">
2098
+ <tbody>
2099
+ <tr>
2100
+ <td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
2101
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the source pad. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2102
+ </td>
2103
+ </tr>
2104
+ <tr>
2105
+ <td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
2106
+ <td>the <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the destination pad. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2107
+ </td>
2108
+ </tr>
2109
+ <tr>
2110
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2111
+ <td>TRUE if the elements could be linked, FALSE otherwise.</td>
2112
+ </tr>
2113
+ </tbody>
2114
+ </table></div>
2115
+ </div>
2116
+ <hr>
2117
+ <div class="refsect2">
2118
+ <a name="gst-element-unlink"></a><h3>gst_element_unlink ()</h3>
2119
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_unlink (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
2120
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>);</pre>
2121
+ <p>
2122
+ Unlinks all source pads of the source element with all sink pads
2123
+ of the sink element to which they are linked.
2124
+ </p>
2125
+ <p>
2126
+ If the link has been made using <a class="link" href="GstElement.html#gst-element-link" title="gst_element_link ()"><code class="function">gst_element_link()</code></a>, it could have created an
2127
+ requestpad, which has to be released using <a class="link" href="GstElement.html#gst-element-release-request-pad" title="gst_element_release_request_pad ()"><code class="function">gst_element_release_request_pad()</code></a>.
2128
+ </p>
2129
+ <div class="variablelist"><table border="0">
2130
+ <col align="left" valign="top">
2131
+ <tbody>
2132
+ <tr>
2133
+ <td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
2134
+ <td>the source <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to unlink. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2135
+ </td>
2136
+ </tr>
2137
+ <tr>
2138
+ <td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
2139
+ <td>the sink <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to unlink. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2140
+ </td>
2141
+ </tr>
2142
+ </tbody>
2143
+ </table></div>
2144
+ </div>
2145
+ <hr>
2146
+ <div class="refsect2">
2147
+ <a name="gst-element-link-many"></a><h3>gst_element_link_many ()</h3>
2148
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_link_many (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element_1</code></em>,
2149
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element_2</code></em>,
2150
+ <em class="parameter"><code>...</code></em>);</pre>
2151
+ <p>
2152
+ Chain together a series of elements. Uses <a class="link" href="GstElement.html#gst-element-link" title="gst_element_link ()"><code class="function">gst_element_link()</code></a>.
2153
+ Make sure you have added your elements to a bin or pipeline with
2154
+ <a class="link" href="GstBin.html#gst-bin-add" title="gst_bin_add ()"><code class="function">gst_bin_add()</code></a> before trying to link them.
2155
+ </p>
2156
+ <div class="variablelist"><table border="0">
2157
+ <col align="left" valign="top">
2158
+ <tbody>
2159
+ <tr>
2160
+ <td><p><span class="term"><em class="parameter"><code>element_1</code></em> :</span></p></td>
2161
+ <td>the first <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> in the link chain. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2162
+ </td>
2163
+ </tr>
2164
+ <tr>
2165
+ <td><p><span class="term"><em class="parameter"><code>element_2</code></em> :</span></p></td>
2166
+ <td>the second <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> in the link chain. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2167
+ </td>
2168
+ </tr>
2169
+ <tr>
2170
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
2171
+ <td>the NULL-terminated list of elements to link in order.</td>
2172
+ </tr>
2173
+ <tr>
2174
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2175
+ <td>TRUE on success, FALSE otherwise.</td>
2176
+ </tr>
2177
+ </tbody>
2178
+ </table></div>
2179
+ </div>
2180
+ <hr>
2181
+ <div class="refsect2">
2182
+ <a name="gst-element-unlink-many"></a><h3>gst_element_unlink_many ()</h3>
2183
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_unlink_many (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element_1</code></em>,
2184
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element_2</code></em>,
2185
+ <em class="parameter"><code>...</code></em>);</pre>
2186
+ <p>
2187
+ Unlinks a series of elements. Uses <a class="link" href="GstElement.html#gst-element-unlink" title="gst_element_unlink ()"><code class="function">gst_element_unlink()</code></a>.
2188
+ </p>
2189
+ <div class="variablelist"><table border="0">
2190
+ <col align="left" valign="top">
2191
+ <tbody>
2192
+ <tr>
2193
+ <td><p><span class="term"><em class="parameter"><code>element_1</code></em> :</span></p></td>
2194
+ <td>the first <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> in the link chain. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2195
+ </td>
2196
+ </tr>
2197
+ <tr>
2198
+ <td><p><span class="term"><em class="parameter"><code>element_2</code></em> :</span></p></td>
2199
+ <td>the second <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> in the link chain. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2200
+ </td>
2201
+ </tr>
2202
+ <tr>
2203
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
2204
+ <td>the NULL-terminated list of elements to unlink in order.</td>
2205
+ </tr>
2206
+ </tbody>
2207
+ </table></div>
2208
+ </div>
2209
+ <hr>
2210
+ <div class="refsect2">
2211
+ <a name="gst-element-link-pads"></a><h3>gst_element_link_pads ()</h3>
2212
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_link_pads (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
2213
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *srcpadname</code></em>,
2214
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
2215
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *destpadname</code></em>);</pre>
2216
+ <p>
2217
+ Links the two named pads of the source and destination elements.
2218
+ Side effect is that if one of the pads has no parent, it becomes a
2219
+ child of the parent of the other element. If they have different
2220
+ parents, the link fails.
2221
+ </p>
2222
+ <div class="variablelist"><table border="0">
2223
+ <col align="left" valign="top">
2224
+ <tbody>
2225
+ <tr>
2226
+ <td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
2227
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the source pad.</td>
2228
+ </tr>
2229
+ <tr>
2230
+ <td><p><span class="term"><em class="parameter"><code>srcpadname</code></em> :</span></p></td>
2231
+ <td>the name of the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> in source element
2232
+ or NULL for any pad. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2233
+ </td>
2234
+ </tr>
2235
+ <tr>
2236
+ <td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
2237
+ <td>the <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the destination pad. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2238
+ </td>
2239
+ </tr>
2240
+ <tr>
2241
+ <td><p><span class="term"><em class="parameter"><code>destpadname</code></em> :</span></p></td>
2242
+ <td>the name of the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> in destination element,
2243
+ or NULL for any pad. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2244
+ </td>
2245
+ </tr>
2246
+ <tr>
2247
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2248
+ <td>TRUE if the pads could be linked, FALSE otherwise.</td>
2249
+ </tr>
2250
+ </tbody>
2251
+ </table></div>
2252
+ </div>
2253
+ <hr>
2254
+ <div class="refsect2">
2255
+ <a name="gst-element-link-pads-full"></a><h3>gst_element_link_pads_full ()</h3>
2256
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_link_pads_full (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
2257
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *srcpadname</code></em>,
2258
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
2259
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *destpadname</code></em>,
2260
+ <em class="parameter"><code><a class="link" href="GstPad.html#GstPadLinkCheck" title="enum GstPadLinkCheck"><span class="type">GstPadLinkCheck</span></a> flags</code></em>);</pre>
2261
+ <p>
2262
+ Links the two named pads of the source and destination elements.
2263
+ Side effect is that if one of the pads has no parent, it becomes a
2264
+ child of the parent of the other element. If they have different
2265
+ parents, the link fails.
2266
+ </p>
2267
+ <p>
2268
+ Calling <a class="link" href="GstElement.html#gst-element-link-pads-full" title="gst_element_link_pads_full ()"><code class="function">gst_element_link_pads_full()</code></a> with <em class="parameter"><code>flags</code></em> == <a class="link" href="GstPad.html#GST-PAD-LINK-CHECK-DEFAULT:CAPS" title="GST_PAD_LINK_CHECK_DEFAULT"><code class="literal">GST_PAD_LINK_CHECK_DEFAULT</code></a>
2269
+ is the same as calling <a class="link" href="GstElement.html#gst-element-link-pads" title="gst_element_link_pads ()"><code class="function">gst_element_link_pads()</code></a> and the recommended way of
2270
+ linking pads with safety checks applied.
2271
+ </p>
2272
+ <p>
2273
+ This is a convenience function for <a class="link" href="GstPad.html#gst-pad-link-full" title="gst_pad_link_full ()"><code class="function">gst_pad_link_full()</code></a>.
2274
+ </p>
2275
+ <div class="variablelist"><table border="0">
2276
+ <col align="left" valign="top">
2277
+ <tbody>
2278
+ <tr>
2279
+ <td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
2280
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the source pad.</td>
2281
+ </tr>
2282
+ <tr>
2283
+ <td><p><span class="term"><em class="parameter"><code>srcpadname</code></em> :</span></p></td>
2284
+ <td>the name of the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> in source element
2285
+ or NULL for any pad. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2286
+ </td>
2287
+ </tr>
2288
+ <tr>
2289
+ <td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
2290
+ <td>the <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the destination pad. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2291
+ </td>
2292
+ </tr>
2293
+ <tr>
2294
+ <td><p><span class="term"><em class="parameter"><code>destpadname</code></em> :</span></p></td>
2295
+ <td>the name of the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> in destination element,
2296
+ or NULL for any pad. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2297
+ </td>
2298
+ </tr>
2299
+ <tr>
2300
+ <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
2301
+ <td>the <a class="link" href="GstPad.html#GstPadLinkCheck" title="enum GstPadLinkCheck"><span class="type">GstPadLinkCheck</span></a> to be performed when linking pads.</td>
2302
+ </tr>
2303
+ <tr>
2304
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2305
+ <td>TRUE if the pads could be linked, FALSE otherwise.</td>
2306
+ </tr>
2307
+ </tbody>
2308
+ </table></div>
2309
+ <p class="since">Since 0.10.30</p>
2310
+ </div>
2311
+ <hr>
2312
+ <div class="refsect2">
2313
+ <a name="gst-element-unlink-pads"></a><h3>gst_element_unlink_pads ()</h3>
2314
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_unlink_pads (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
2315
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *srcpadname</code></em>,
2316
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
2317
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *destpadname</code></em>);</pre>
2318
+ <p>
2319
+ Unlinks the two named pads of the source and destination elements.
2320
+ </p>
2321
+ <p>
2322
+ This is a convenience function for <a class="link" href="GstPad.html#gst-pad-unlink" title="gst_pad_unlink ()"><code class="function">gst_pad_unlink()</code></a>.
2323
+ </p>
2324
+ <div class="variablelist"><table border="0">
2325
+ <col align="left" valign="top">
2326
+ <tbody>
2327
+ <tr>
2328
+ <td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
2329
+ <td>a (transfer none): <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the source pad.</td>
2330
+ </tr>
2331
+ <tr>
2332
+ <td><p><span class="term"><em class="parameter"><code>srcpadname</code></em> :</span></p></td>
2333
+ <td>the name of the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> in source element.</td>
2334
+ </tr>
2335
+ <tr>
2336
+ <td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
2337
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the destination pad. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2338
+ </td>
2339
+ </tr>
2340
+ <tr>
2341
+ <td><p><span class="term"><em class="parameter"><code>destpadname</code></em> :</span></p></td>
2342
+ <td>the name of the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> in destination element.</td>
2343
+ </tr>
2344
+ </tbody>
2345
+ </table></div>
2346
+ </div>
2347
+ <hr>
2348
+ <div class="refsect2">
2349
+ <a name="gst-element-link-pads-filtered"></a><h3>gst_element_link_pads_filtered ()</h3>
2350
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_link_pads_filtered (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
2351
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *srcpadname</code></em>,
2352
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
2353
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *destpadname</code></em>,
2354
+ <em class="parameter"><code><a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> *filter</code></em>);</pre>
2355
+ <p>
2356
+ Links the two named pads of the source and destination elements. Side effect
2357
+ is that if one of the pads has no parent, it becomes a child of the parent of
2358
+ the other element. If they have different parents, the link fails. If <em class="parameter"><code>caps</code></em>
2359
+ is not <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>, makes sure that the caps of the link is a subset of <em class="parameter"><code>caps</code></em>.
2360
+ </p>
2361
+ <div class="variablelist"><table border="0">
2362
+ <col align="left" valign="top">
2363
+ <tbody>
2364
+ <tr>
2365
+ <td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
2366
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the source pad.</td>
2367
+ </tr>
2368
+ <tr>
2369
+ <td><p><span class="term"><em class="parameter"><code>srcpadname</code></em> :</span></p></td>
2370
+ <td>the name of the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> in source element
2371
+ or NULL for any pad. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2372
+ </td>
2373
+ </tr>
2374
+ <tr>
2375
+ <td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
2376
+ <td>the <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the destination pad. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2377
+ </td>
2378
+ </tr>
2379
+ <tr>
2380
+ <td><p><span class="term"><em class="parameter"><code>destpadname</code></em> :</span></p></td>
2381
+ <td>the name of the <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> in destination element
2382
+ or NULL for any pad. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2383
+ </td>
2384
+ </tr>
2385
+ <tr>
2386
+ <td><p><span class="term"><em class="parameter"><code>filter</code></em> :</span></p></td>
2387
+ <td>the <a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> to filter the link,
2388
+ or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a> for no filter. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2389
+ </td>
2390
+ </tr>
2391
+ <tr>
2392
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2393
+ <td>TRUE if the pads could be linked, FALSE otherwise.</td>
2394
+ </tr>
2395
+ </tbody>
2396
+ </table></div>
2397
+ </div>
2398
+ <hr>
2399
+ <div class="refsect2">
2400
+ <a name="gst-element-link-filtered"></a><h3>gst_element_link_filtered ()</h3>
2401
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_link_filtered (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *src</code></em>,
2402
+ <em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *dest</code></em>,
2403
+ <em class="parameter"><code><a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> *filter</code></em>);</pre>
2404
+ <p>
2405
+ Links <em class="parameter"><code>src</code></em> to <em class="parameter"><code>dest</code></em> using the given caps as filtercaps.
2406
+ The link must be from source to
2407
+ destination; the other direction will not be tried. The function looks for
2408
+ existing pads that aren't linked yet. It will request new pads if necessary.
2409
+ If multiple links are possible, only one is established.
2410
+ </p>
2411
+ <p>
2412
+ Make sure you have added your elements to a bin or pipeline with
2413
+ <a class="link" href="GstBin.html#gst-bin-add" title="gst_bin_add ()"><code class="function">gst_bin_add()</code></a> before trying to link them.
2414
+ </p>
2415
+ <div class="variablelist"><table border="0">
2416
+ <col align="left" valign="top">
2417
+ <tbody>
2418
+ <tr>
2419
+ <td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
2420
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the source pad.</td>
2421
+ </tr>
2422
+ <tr>
2423
+ <td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
2424
+ <td>the <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> containing the destination pad. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2425
+ </td>
2426
+ </tr>
2427
+ <tr>
2428
+ <td><p><span class="term"><em class="parameter"><code>filter</code></em> :</span></p></td>
2429
+ <td>the <a class="link" href="gstreamer-GstCaps.html#GstCaps" title="struct GstCaps"><span class="type">GstCaps</span></a> to filter the link,
2430
+ or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a> for no filter. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2431
+ </td>
2432
+ </tr>
2433
+ <tr>
2434
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2435
+ <td>TRUE if the pads could be linked, FALSE otherwise.</td>
2436
+ </tr>
2437
+ </tbody>
2438
+ </table></div>
2439
+ </div>
2440
+ <hr>
2441
+ <div class="refsect2">
2442
+ <a name="gst-element-set-base-time"></a><h3>gst_element_set_base_time ()</h3>
2443
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_set_base_time (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
2444
+ <em class="parameter"><code><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> time</code></em>);</pre>
2445
+ <p>
2446
+ Set the base time of an element. See <a class="link" href="GstElement.html#gst-element-get-base-time" title="gst_element_get_base_time ()"><code class="function">gst_element_get_base_time()</code></a>.
2447
+ </p>
2448
+ <p>
2449
+ MT safe.
2450
+ </p>
2451
+ <div class="variablelist"><table border="0">
2452
+ <col align="left" valign="top">
2453
+ <tbody>
2454
+ <tr>
2455
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2456
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
2457
+ </tr>
2458
+ <tr>
2459
+ <td><p><span class="term"><em class="parameter"><code>time</code></em> :</span></p></td>
2460
+ <td>the base time to set.</td>
2461
+ </tr>
2462
+ </tbody>
2463
+ </table></div>
2464
+ </div>
2465
+ <hr>
2466
+ <div class="refsect2">
2467
+ <a name="gst-element-get-base-time"></a><h3>gst_element_get_base_time ()</h3>
2468
+ <pre class="programlisting"><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="returnvalue">GstClockTime</span></a> gst_element_get_base_time (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2469
+ <p>
2470
+ Returns the base time of the element. The base time is the
2471
+ absolute time of the clock when this element was last put to
2472
+ PLAYING. Subtracting the base time from the clock time gives
2473
+ the running time of the element.
2474
+ </p>
2475
+ <div class="variablelist"><table border="0">
2476
+ <col align="left" valign="top">
2477
+ <tbody>
2478
+ <tr>
2479
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2480
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
2481
+ </tr>
2482
+ <tr>
2483
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2484
+ <td>the base time of the element.
2485
+ MT safe.</td>
2486
+ </tr>
2487
+ </tbody>
2488
+ </table></div>
2489
+ </div>
2490
+ <hr>
2491
+ <div class="refsect2">
2492
+ <a name="gst-element-set-start-time"></a><h3>gst_element_set_start_time ()</h3>
2493
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_set_start_time (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
2494
+ <em class="parameter"><code><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> time</code></em>);</pre>
2495
+ <p>
2496
+ Set the start time of an element. The start time of the element is the
2497
+ running time of the element when it last went to the PAUSED state. In READY
2498
+ or after a flushing seek, it is set to 0.
2499
+ </p>
2500
+ <p>
2501
+ Toplevel elements like <a class="link" href="GstPipeline.html" title="GstPipeline"><span class="type">GstPipeline</span></a> will manage the start_time and
2502
+ base_time on its children. Setting the start_time to <a class="link" href="GstClock.html#GST-CLOCK-TIME-NONE:CAPS" title="GST_CLOCK_TIME_NONE"><span class="type">GST_CLOCK_TIME_NONE</span></a>
2503
+ on such a toplevel element will disable the distribution of the base_time to
2504
+ the children and can be useful if the application manages the base_time
2505
+ itself, for example if you want to synchronize capture from multiple
2506
+ pipelines, and you can also ensure that the pipelines have the same clock.
2507
+ </p>
2508
+ <p>
2509
+ MT safe.
2510
+ </p>
2511
+ <div class="variablelist"><table border="0">
2512
+ <col align="left" valign="top">
2513
+ <tbody>
2514
+ <tr>
2515
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2516
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
2517
+ </tr>
2518
+ <tr>
2519
+ <td><p><span class="term"><em class="parameter"><code>time</code></em> :</span></p></td>
2520
+ <td>the base time to set.</td>
2521
+ </tr>
2522
+ </tbody>
2523
+ </table></div>
2524
+ <p class="since">Since 0.10.24</p>
2525
+ </div>
2526
+ <hr>
2527
+ <div class="refsect2">
2528
+ <a name="gst-element-get-start-time"></a><h3>gst_element_get_start_time ()</h3>
2529
+ <pre class="programlisting"><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="returnvalue">GstClockTime</span></a> gst_element_get_start_time (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2530
+ <p>
2531
+ Returns the start time of the element. The start time is the
2532
+ running time of the clock when this element was last put to PAUSED.
2533
+ </p>
2534
+ <p>
2535
+ Usually the start_time is managed by a toplevel element such as
2536
+ <a class="link" href="GstPipeline.html" title="GstPipeline"><span class="type">GstPipeline</span></a>.
2537
+ </p>
2538
+ <p>
2539
+ MT safe.
2540
+ </p>
2541
+ <div class="variablelist"><table border="0">
2542
+ <col align="left" valign="top">
2543
+ <tbody>
2544
+ <tr>
2545
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2546
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
2547
+ </tr>
2548
+ <tr>
2549
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2550
+ <td>the start time of the element.</td>
2551
+ </tr>
2552
+ </tbody>
2553
+ </table></div>
2554
+ <p class="since">Since 0.10.24</p>
2555
+ </div>
2556
+ <hr>
2557
+ <div class="refsect2">
2558
+ <a name="gst-element-set-bus"></a><h3>gst_element_set_bus ()</h3>
2559
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_set_bus (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
2560
+ <em class="parameter"><code><a class="link" href="GstBus.html" title="GstBus"><span class="type">GstBus</span></a> *bus</code></em>);</pre>
2561
+ <p>
2562
+ Sets the bus of the element. Increases the refcount on the bus.
2563
+ For internal use only, unless you're testing elements.
2564
+ </p>
2565
+ <p>
2566
+ MT safe.
2567
+ </p>
2568
+ <div class="variablelist"><table border="0">
2569
+ <col align="left" valign="top">
2570
+ <tbody>
2571
+ <tr>
2572
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2573
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to set the bus of.</td>
2574
+ </tr>
2575
+ <tr>
2576
+ <td><p><span class="term"><em class="parameter"><code>bus</code></em> :</span></p></td>
2577
+ <td>the <a class="link" href="GstBus.html" title="GstBus"><span class="type">GstBus</span></a> to set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2578
+ </td>
2579
+ </tr>
2580
+ </tbody>
2581
+ </table></div>
2582
+ </div>
2583
+ <hr>
2584
+ <div class="refsect2">
2585
+ <a name="gst-element-get-bus"></a><h3>gst_element_get_bus ()</h3>
2586
+ <pre class="programlisting"><a class="link" href="GstBus.html" title="GstBus"><span class="returnvalue">GstBus</span></a> * gst_element_get_bus (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2587
+ <p>
2588
+ Returns the bus of the element. Note that only a <a class="link" href="GstPipeline.html" title="GstPipeline"><span class="type">GstPipeline</span></a> will provide a
2589
+ bus for the application.
2590
+ </p>
2591
+ <div class="variablelist"><table border="0">
2592
+ <col align="left" valign="top">
2593
+ <tbody>
2594
+ <tr>
2595
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2596
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to get the bus of.</td>
2597
+ </tr>
2598
+ <tr>
2599
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2600
+ <td>the element's <a class="link" href="GstBus.html" title="GstBus"><span class="type">GstBus</span></a>. unref after usage.
2601
+ MT safe. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2602
+ </td>
2603
+ </tr>
2604
+ </tbody>
2605
+ </table></div>
2606
+ </div>
2607
+ <hr>
2608
+ <div class="refsect2">
2609
+ <a name="gst-element-get-factory"></a><h3>gst_element_get_factory ()</h3>
2610
+ <pre class="programlisting"><a class="link" href="GstElementFactory.html" title="GstElementFactory"><span class="returnvalue">GstElementFactory</span></a> * gst_element_get_factory (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2611
+ <p>
2612
+ Retrieves the factory that was used to create this element.
2613
+ </p>
2614
+ <div class="variablelist"><table border="0">
2615
+ <col align="left" valign="top">
2616
+ <tbody>
2617
+ <tr>
2618
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2619
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to request the element factory of.</td>
2620
+ </tr>
2621
+ <tr>
2622
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2623
+ <td>the <a class="link" href="GstElementFactory.html" title="GstElementFactory"><span class="type">GstElementFactory</span></a> used for creating this
2624
+ element. no refcounting is needed. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2625
+ </td>
2626
+ </tr>
2627
+ </tbody>
2628
+ </table></div>
2629
+ </div>
2630
+ <hr>
2631
+ <div class="refsect2">
2632
+ <a name="gst-element-set-index"></a><h3>gst_element_set_index ()</h3>
2633
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_set_index (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
2634
+ <em class="parameter"><code><a class="link" href="GstIndex.html" title="GstIndex"><span class="type">GstIndex</span></a> *index</code></em>);</pre>
2635
+ <p>
2636
+ Set <em class="parameter"><code>index</code></em> on the element. The refcount of the index
2637
+ will be increased, any previously set index is unreffed.
2638
+ </p>
2639
+ <p>
2640
+ MT safe.
2641
+ </p>
2642
+ <div class="variablelist"><table border="0">
2643
+ <col align="left" valign="top">
2644
+ <tbody>
2645
+ <tr>
2646
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2647
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
2648
+ </tr>
2649
+ <tr>
2650
+ <td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
2651
+ <td>a <a class="link" href="GstIndex.html" title="GstIndex"><span class="type">GstIndex</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2652
+ </td>
2653
+ </tr>
2654
+ </tbody>
2655
+ </table></div>
2656
+ </div>
2657
+ <hr>
2658
+ <div class="refsect2">
2659
+ <a name="gst-element-get-index"></a><h3>gst_element_get_index ()</h3>
2660
+ <pre class="programlisting"><a class="link" href="GstIndex.html" title="GstIndex"><span class="returnvalue">GstIndex</span></a> * gst_element_get_index (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2661
+ <p>
2662
+ Gets the index from the element.
2663
+ </p>
2664
+ <div class="variablelist"><table border="0">
2665
+ <col align="left" valign="top">
2666
+ <tbody>
2667
+ <tr>
2668
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2669
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
2670
+ </tr>
2671
+ <tr>
2672
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2673
+ <td>a <a class="link" href="GstIndex.html" title="GstIndex"><span class="type">GstIndex</span></a> or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> when no index was set on the
2674
+ element. unref after usage.
2675
+ MT safe. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2676
+ </td>
2677
+ </tr>
2678
+ </tbody>
2679
+ </table></div>
2680
+ </div>
2681
+ <hr>
2682
+ <div class="refsect2">
2683
+ <a name="gst-element-is-indexable"></a><h3>gst_element_is_indexable ()</h3>
2684
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_is_indexable (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2685
+ <p>
2686
+ Queries if the element can be indexed.
2687
+ </p>
2688
+ <div class="variablelist"><table border="0">
2689
+ <col align="left" valign="top">
2690
+ <tbody>
2691
+ <tr>
2692
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2693
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
2694
+ </tr>
2695
+ <tr>
2696
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2697
+ <td>TRUE if the element can be indexed.
2698
+ MT safe.</td>
2699
+ </tr>
2700
+ </tbody>
2701
+ </table></div>
2702
+ </div>
2703
+ <hr>
2704
+ <div class="refsect2">
2705
+ <a name="gst-element-set-name"></a><h3>gst_element_set_name()</h3>
2706
+ <pre class="programlisting">#define gst_element_set_name(elem,name) gst_object_set_name(GST_OBJECT_CAST(elem),name)
2707
+ </pre>
2708
+ <p>
2709
+ Sets the name of the element, getting rid of the old name if there was one.
2710
+ </p>
2711
+ <div class="variablelist"><table border="0">
2712
+ <col align="left" valign="top">
2713
+ <tbody>
2714
+ <tr>
2715
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
2716
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to set the name of.</td>
2717
+ </tr>
2718
+ <tr>
2719
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
2720
+ <td>the new name</td>
2721
+ </tr>
2722
+ </tbody>
2723
+ </table></div>
2724
+ </div>
2725
+ <hr>
2726
+ <div class="refsect2">
2727
+ <a name="gst-element-get-name"></a><h3>gst_element_get_name()</h3>
2728
+ <pre class="programlisting">#define gst_element_get_name(elem) gst_object_get_name(GST_OBJECT_CAST(elem))
2729
+ </pre>
2730
+ <p>
2731
+ Returns a copy of the name of <em class="parameter"><code>elem</code></em>.
2732
+ Caller should <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> the return value after usage.
2733
+ For a nameless element, this returns NULL, which you can safely <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>
2734
+ as well.
2735
+ </p>
2736
+ <div class="variablelist"><table border="0">
2737
+ <col align="left" valign="top">
2738
+ <tbody>
2739
+ <tr>
2740
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
2741
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to get the name of <em class="parameter"><code>elem</code></em>.</td>
2742
+ </tr>
2743
+ <tr>
2744
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2745
+ <td>the name of <em class="parameter"><code>elem</code></em>. <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> after usage. MT safe. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2746
+ </td>
2747
+ </tr>
2748
+ </tbody>
2749
+ </table></div>
2750
+ </div>
2751
+ <hr>
2752
+ <div class="refsect2">
2753
+ <a name="gst-element-set-parent"></a><h3>gst_element_set_parent()</h3>
2754
+ <pre class="programlisting">#define gst_element_set_parent(elem,parent) gst_object_set_parent(GST_OBJECT_CAST(elem),parent)
2755
+ </pre>
2756
+ <p>
2757
+ Sets the parent of an element.
2758
+ </p>
2759
+ <div class="variablelist"><table border="0">
2760
+ <col align="left" valign="top">
2761
+ <tbody>
2762
+ <tr>
2763
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
2764
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to set the parent of.</td>
2765
+ </tr>
2766
+ <tr>
2767
+ <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
2768
+ <td>the new parent <a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> of the element.</td>
2769
+ </tr>
2770
+ </tbody>
2771
+ </table></div>
2772
+ </div>
2773
+ <hr>
2774
+ <div class="refsect2">
2775
+ <a name="gst-element-get-parent"></a><h3>gst_element_get_parent()</h3>
2776
+ <pre class="programlisting">#define gst_element_get_parent(elem) gst_object_get_parent(GST_OBJECT_CAST(elem))
2777
+ </pre>
2778
+ <p>
2779
+ Get the parent of an element.
2780
+ </p>
2781
+ <div class="variablelist"><table border="0">
2782
+ <col align="left" valign="top">
2783
+ <tbody>
2784
+ <tr>
2785
+ <td><p><span class="term"><em class="parameter"><code>elem</code></em> :</span></p></td>
2786
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to get the parent of.</td>
2787
+ </tr>
2788
+ <tr>
2789
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2790
+ <td>the parent of an element. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2791
+ </td>
2792
+ </tr>
2793
+ </tbody>
2794
+ </table></div>
2795
+ </div>
2796
+ <hr>
2797
+ <div class="refsect2">
2798
+ <a name="gst-element-requires-clock"></a><h3>gst_element_requires_clock ()</h3>
2799
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_requires_clock (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2800
+ <p>
2801
+ Query if the element requires a clock.
2802
+ </p>
2803
+ <div class="variablelist"><table border="0">
2804
+ <col align="left" valign="top">
2805
+ <tbody>
2806
+ <tr>
2807
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2808
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
2809
+ </tr>
2810
+ <tr>
2811
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2812
+ <td>
2813
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the element requires a clock
2814
+ MT safe.</td>
2815
+ </tr>
2816
+ </tbody>
2817
+ </table></div>
2818
+ </div>
2819
+ <hr>
2820
+ <div class="refsect2">
2821
+ <a name="gst-element-set-clock"></a><h3>gst_element_set_clock ()</h3>
2822
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_set_clock (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
2823
+ <em class="parameter"><code><a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> *clock</code></em>);</pre>
2824
+ <p>
2825
+ Sets the clock for the element. This function increases the
2826
+ refcount on the clock. Any previously set clock on the object
2827
+ is unreffed.
2828
+ </p>
2829
+ <div class="variablelist"><table border="0">
2830
+ <col align="left" valign="top">
2831
+ <tbody>
2832
+ <tr>
2833
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2834
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to set the clock for.</td>
2835
+ </tr>
2836
+ <tr>
2837
+ <td><p><span class="term"><em class="parameter"><code>clock</code></em> :</span></p></td>
2838
+ <td>the <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> to set for the element.</td>
2839
+ </tr>
2840
+ <tr>
2841
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2842
+ <td>
2843
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the element accepted the clock. An element can refuse a
2844
+ clock when it, for example, is not able to slave its internal clock to the
2845
+ <em class="parameter"><code>clock</code></em> or when it requires a specific clock to operate.
2846
+ MT safe.</td>
2847
+ </tr>
2848
+ </tbody>
2849
+ </table></div>
2850
+ </div>
2851
+ <hr>
2852
+ <div class="refsect2">
2853
+ <a name="gst-element-get-clock"></a><h3>gst_element_get_clock ()</h3>
2854
+ <pre class="programlisting"><a class="link" href="GstClock.html" title="GstClock"><span class="returnvalue">GstClock</span></a> * gst_element_get_clock (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2855
+ <p>
2856
+ Gets the currently configured clock of the element. This is the clock as was
2857
+ last set with <a class="link" href="GstElement.html#gst-element-set-clock" title="gst_element_set_clock ()"><code class="function">gst_element_set_clock()</code></a>.
2858
+ </p>
2859
+ <div class="variablelist"><table border="0">
2860
+ <col align="left" valign="top">
2861
+ <tbody>
2862
+ <tr>
2863
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2864
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to get the clock of.</td>
2865
+ </tr>
2866
+ <tr>
2867
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2868
+ <td>the <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> of the element. unref after usage.
2869
+ MT safe. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2870
+ </td>
2871
+ </tr>
2872
+ </tbody>
2873
+ </table></div>
2874
+ </div>
2875
+ <hr>
2876
+ <div class="refsect2">
2877
+ <a name="gst-element-provides-clock"></a><h3>gst_element_provides_clock ()</h3>
2878
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_provides_clock (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2879
+ <p>
2880
+ Query if the element provides a clock. A <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> provided by an
2881
+ element can be used as the global <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> for the pipeline.
2882
+ An element that can provide a clock is only required to do so in the PAUSED
2883
+ state, this means when it is fully negotiated and has allocated the resources
2884
+ to operate the clock.
2885
+ </p>
2886
+ <div class="variablelist"><table border="0">
2887
+ <col align="left" valign="top">
2888
+ <tbody>
2889
+ <tr>
2890
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2891
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
2892
+ </tr>
2893
+ <tr>
2894
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2895
+ <td>
2896
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the element provides a clock
2897
+ MT safe.</td>
2898
+ </tr>
2899
+ </tbody>
2900
+ </table></div>
2901
+ </div>
2902
+ <hr>
2903
+ <div class="refsect2">
2904
+ <a name="gst-element-provide-clock"></a><h3>gst_element_provide_clock ()</h3>
2905
+ <pre class="programlisting"><a class="link" href="GstClock.html" title="GstClock"><span class="returnvalue">GstClock</span></a> * gst_element_provide_clock (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
2906
+ <p>
2907
+ Get the clock provided by the given element.
2908
+ </p>
2909
+ <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
2910
+ <h3 class="title">Note</h3>An element is only required to provide a clock in the PAUSED
2911
+ state. Some elements can provide a clock in other states.</div>
2912
+ <p>
2913
+ </p>
2914
+ <div class="variablelist"><table border="0">
2915
+ <col align="left" valign="top">
2916
+ <tbody>
2917
+ <tr>
2918
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2919
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
2920
+ </tr>
2921
+ <tr>
2922
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2923
+ <td>the GstClock provided by the element or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
2924
+ if no clock could be provided. Unref after usage.
2925
+ MT safe. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2926
+ </td>
2927
+ </tr>
2928
+ </tbody>
2929
+ </table></div>
2930
+ </div>
2931
+ <hr>
2932
+ <div class="refsect2">
2933
+ <a name="gst-element-set-state"></a><h3>gst_element_set_state ()</h3>
2934
+ <pre class="programlisting"><a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="returnvalue">GstStateChangeReturn</span></a> gst_element_set_state (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
2935
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> state</code></em>);</pre>
2936
+ <p>
2937
+ Sets the state of the element. This function will try to set the
2938
+ requested state by going through all the intermediary states and calling
2939
+ the class's state change function for each.
2940
+ </p>
2941
+ <p>
2942
+ This function can return <a class="link" href="GstElement.html#GST-STATE-CHANGE-ASYNC:CAPS"><span class="type">GST_STATE_CHANGE_ASYNC</span></a>, in which case the
2943
+ element will perform the remainder of the state change asynchronously in
2944
+ another thread.
2945
+ An application can use <a class="link" href="GstElement.html#gst-element-get-state" title="gst_element_get_state ()"><code class="function">gst_element_get_state()</code></a> to wait for the completion
2946
+ of the state change or it can wait for a state change message on the bus.
2947
+ </p>
2948
+ <p>
2949
+ State changes to <a class="link" href="GstElement.html#GST-STATE-READY:CAPS"><code class="literal">GST_STATE_READY</code></a> or <a class="link" href="GstElement.html#GST-STATE-NULL:CAPS"><code class="literal">GST_STATE_NULL</code></a> never return
2950
+ <a class="link" href="GstElement.html#GST-STATE-CHANGE-ASYNC:CAPS"><span class="type">GST_STATE_CHANGE_ASYNC</span></a>.
2951
+ </p>
2952
+ <div class="variablelist"><table border="0">
2953
+ <col align="left" valign="top">
2954
+ <tbody>
2955
+ <tr>
2956
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
2957
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to change state of.</td>
2958
+ </tr>
2959
+ <tr>
2960
+ <td><p><span class="term"><em class="parameter"><code>state</code></em> :</span></p></td>
2961
+ <td>the element's new <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a>.</td>
2962
+ </tr>
2963
+ <tr>
2964
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2965
+ <td>Result of the state change using <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a>.
2966
+ MT safe.</td>
2967
+ </tr>
2968
+ </tbody>
2969
+ </table></div>
2970
+ </div>
2971
+ <hr>
2972
+ <div class="refsect2">
2973
+ <a name="gst-element-get-state"></a><h3>gst_element_get_state ()</h3>
2974
+ <pre class="programlisting"><a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="returnvalue">GstStateChangeReturn</span></a> gst_element_get_state (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
2975
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> *state</code></em>,
2976
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> *pending</code></em>,
2977
+ <em class="parameter"><code><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> timeout</code></em>);</pre>
2978
+ <p>
2979
+ Gets the state of the element.
2980
+ </p>
2981
+ <p>
2982
+ For elements that performed an ASYNC state change, as reported by
2983
+ <a class="link" href="GstElement.html#gst-element-set-state" title="gst_element_set_state ()"><code class="function">gst_element_set_state()</code></a>, this function will block up to the
2984
+ specified timeout value for the state change to complete.
2985
+ If the element completes the state change or goes into
2986
+ an error, this function returns immediately with a return value of
2987
+ <a class="link" href="GstElement.html#GST-STATE-CHANGE-SUCCESS:CAPS"><code class="literal">GST_STATE_CHANGE_SUCCESS</code></a> or <a class="link" href="GstElement.html#GST-STATE-CHANGE-FAILURE:CAPS"><code class="literal">GST_STATE_CHANGE_FAILURE</code></a> respectively.
2988
+ </p>
2989
+ <p>
2990
+ For elements that did not return <a class="link" href="GstElement.html#GST-STATE-CHANGE-ASYNC:CAPS"><code class="literal">GST_STATE_CHANGE_ASYNC</code></a>, this function
2991
+ returns the current and pending state immediately.
2992
+ </p>
2993
+ <p>
2994
+ This function returns <a class="link" href="GstElement.html#GST-STATE-CHANGE-NO-PREROLL:CAPS"><code class="literal">GST_STATE_CHANGE_NO_PREROLL</code></a> if the element
2995
+ successfully changed its state but is not able to provide data yet.
2996
+ This mostly happens for live sources that only produce data in
2997
+ <a class="link" href="GstElement.html#GST-STATE-PLAYING:CAPS"><code class="literal">GST_STATE_PLAYING</code></a>. While the state change return is equivalent to
2998
+ <a class="link" href="GstElement.html#GST-STATE-CHANGE-SUCCESS:CAPS"><code class="literal">GST_STATE_CHANGE_SUCCESS</code></a>, it is returned to the application to signal that
2999
+ some sink elements might not be able to complete their state change because
3000
+ an element is not producing data to complete the preroll. When setting the
3001
+ element to playing, the preroll will complete and playback will start.
3002
+ </p>
3003
+ <div class="variablelist"><table border="0">
3004
+ <col align="left" valign="top">
3005
+ <tbody>
3006
+ <tr>
3007
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3008
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to get the state of.</td>
3009
+ </tr>
3010
+ <tr>
3011
+ <td><p><span class="term"><em class="parameter"><code>state</code></em> :</span></p></td>
3012
+ <td>a pointer to <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> to hold the state.
3013
+ Can be <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3014
+ </td>
3015
+ </tr>
3016
+ <tr>
3017
+ <td><p><span class="term"><em class="parameter"><code>pending</code></em> :</span></p></td>
3018
+ <td>a pointer to <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> to hold the pending
3019
+ state. Can be <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3020
+ </td>
3021
+ </tr>
3022
+ <tr>
3023
+ <td><p><span class="term"><em class="parameter"><code>timeout</code></em> :</span></p></td>
3024
+ <td>a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> to specify the timeout for an async
3025
+ state change or <a class="link" href="GstClock.html#GST-CLOCK-TIME-NONE:CAPS" title="GST_CLOCK_TIME_NONE"><code class="literal">GST_CLOCK_TIME_NONE</code></a> for infinite timeout.</td>
3026
+ </tr>
3027
+ <tr>
3028
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3029
+ <td>
3030
+ <a class="link" href="GstElement.html#GST-STATE-CHANGE-SUCCESS:CAPS"><code class="literal">GST_STATE_CHANGE_SUCCESS</code></a> if the element has no more pending state
3031
+ and the last state change succeeded, <a class="link" href="GstElement.html#GST-STATE-CHANGE-ASYNC:CAPS"><code class="literal">GST_STATE_CHANGE_ASYNC</code></a> if the
3032
+ element is still performing a state change or
3033
+ <a class="link" href="GstElement.html#GST-STATE-CHANGE-FAILURE:CAPS"><code class="literal">GST_STATE_CHANGE_FAILURE</code></a> if the last state change failed.
3034
+ MT safe.</td>
3035
+ </tr>
3036
+ </tbody>
3037
+ </table></div>
3038
+ </div>
3039
+ <hr>
3040
+ <div class="refsect2">
3041
+ <a name="gst-element-set-locked-state"></a><h3>gst_element_set_locked_state ()</h3>
3042
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_set_locked_state (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3043
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> locked_state</code></em>);</pre>
3044
+ <p>
3045
+ Locks the state of an element, so state changes of the parent don't affect
3046
+ this element anymore.
3047
+ </p>
3048
+ <p>
3049
+ MT safe.
3050
+ </p>
3051
+ <div class="variablelist"><table border="0">
3052
+ <col align="left" valign="top">
3053
+ <tbody>
3054
+ <tr>
3055
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3056
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>
3057
+ </td>
3058
+ </tr>
3059
+ <tr>
3060
+ <td><p><span class="term"><em class="parameter"><code>locked_state</code></em> :</span></p></td>
3061
+ <td>TRUE to lock the element's state</td>
3062
+ </tr>
3063
+ <tr>
3064
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3065
+ <td>TRUE if the state was changed, FALSE if bad parameters were given
3066
+ or the elements state-locking needed no change.</td>
3067
+ </tr>
3068
+ </tbody>
3069
+ </table></div>
3070
+ </div>
3071
+ <hr>
3072
+ <div class="refsect2">
3073
+ <a name="gst-element-is-locked-state"></a><h3>gst_element_is_locked_state ()</h3>
3074
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_is_locked_state (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
3075
+ <p>
3076
+ Checks if the state of an element is locked.
3077
+ If the state of an element is locked, state changes of the parent don't
3078
+ affect the element.
3079
+ This way you can leave currently unused elements inside bins. Just lock their
3080
+ state before changing the state from <a class="link" href="GstElement.html#GST-STATE-NULL:CAPS"><span class="type">GST_STATE_NULL</span></a>.
3081
+ </p>
3082
+ <p>
3083
+ MT safe.
3084
+ </p>
3085
+ <div class="variablelist"><table border="0">
3086
+ <col align="left" valign="top">
3087
+ <tbody>
3088
+ <tr>
3089
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3090
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
3091
+ </tr>
3092
+ <tr>
3093
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3094
+ <td>TRUE, if the element's state is locked.</td>
3095
+ </tr>
3096
+ </tbody>
3097
+ </table></div>
3098
+ </div>
3099
+ <hr>
3100
+ <div class="refsect2">
3101
+ <a name="gst-element-abort-state"></a><h3>gst_element_abort_state ()</h3>
3102
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_abort_state (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
3103
+ <p>
3104
+ Abort the state change of the element. This function is used
3105
+ by elements that do asynchronous state changes and find out
3106
+ something is wrong.
3107
+ </p>
3108
+ <p>
3109
+ This function should be called with the STATE_LOCK held.
3110
+ </p>
3111
+ <p>
3112
+ MT safe.
3113
+ </p>
3114
+ <div class="variablelist"><table border="0">
3115
+ <col align="left" valign="top">
3116
+ <tbody><tr>
3117
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3118
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to abort the state of.</td>
3119
+ </tr></tbody>
3120
+ </table></div>
3121
+ </div>
3122
+ <hr>
3123
+ <div class="refsect2">
3124
+ <a name="gst-element-continue-state"></a><h3>gst_element_continue_state ()</h3>
3125
+ <pre class="programlisting"><a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="returnvalue">GstStateChangeReturn</span></a> gst_element_continue_state (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3126
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a> ret</code></em>);</pre>
3127
+ <p>
3128
+ Commit the state change of the element and proceed to the next
3129
+ pending state if any. This function is used
3130
+ by elements that do asynchronous state changes.
3131
+ The core will normally call this method automatically when an
3132
+ element returned <a class="link" href="GstElement.html#GST-STATE-CHANGE-SUCCESS:CAPS"><code class="literal">GST_STATE_CHANGE_SUCCESS</code></a> from the state change function.
3133
+ </p>
3134
+ <p>
3135
+ If after calling this method the element still has not reached
3136
+ the pending state, the next state change is performed.
3137
+ </p>
3138
+ <p>
3139
+ This method is used internally and should normally not be called by plugins
3140
+ or applications.
3141
+ </p>
3142
+ <div class="variablelist"><table border="0">
3143
+ <col align="left" valign="top">
3144
+ <tbody>
3145
+ <tr>
3146
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3147
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to continue the state change of.</td>
3148
+ </tr>
3149
+ <tr>
3150
+ <td><p><span class="term"><em class="parameter"><code>ret</code></em> :</span></p></td>
3151
+ <td>The previous state return value</td>
3152
+ </tr>
3153
+ <tr>
3154
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3155
+ <td>The result of the commit state change.
3156
+ MT safe.</td>
3157
+ </tr>
3158
+ </tbody>
3159
+ </table></div>
3160
+ </div>
3161
+ <hr>
3162
+ <div class="refsect2">
3163
+ <a name="gst-element-lost-state"></a><h3>gst_element_lost_state ()</h3>
3164
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_lost_state (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
3165
+ <p>
3166
+ Brings the element to the lost state. This function calls
3167
+ <a class="link" href="GstElement.html#gst-element-lost-state-full" title="gst_element_lost_state_full ()"><code class="function">gst_element_lost_state_full()</code></a> with the new_base_time set to <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.
3168
+ </p>
3169
+ <p>
3170
+ This function is used internally and should normally not be called from
3171
+ plugins or applications.
3172
+ </p>
3173
+ <p>
3174
+ MT safe.
3175
+ </p>
3176
+ <div class="variablelist"><table border="0">
3177
+ <col align="left" valign="top">
3178
+ <tbody><tr>
3179
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3180
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> the state is lost of</td>
3181
+ </tr></tbody>
3182
+ </table></div>
3183
+ </div>
3184
+ <hr>
3185
+ <div class="refsect2">
3186
+ <a name="gst-element-lost-state-full"></a><h3>gst_element_lost_state_full ()</h3>
3187
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_lost_state_full (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3188
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> new_base_time</code></em>);</pre>
3189
+ <p>
3190
+ Brings the element to the lost state. The current state of the
3191
+ element is copied to the pending state so that any call to
3192
+ <a class="link" href="GstElement.html#gst-element-get-state" title="gst_element_get_state ()"><code class="function">gst_element_get_state()</code></a> will return <a class="link" href="GstElement.html#GST-STATE-CHANGE-ASYNC:CAPS"><code class="literal">GST_STATE_CHANGE_ASYNC</code></a>.
3193
+ </p>
3194
+ <p>
3195
+ An ASYNC_START message is posted with indication to distribute a new
3196
+ base_time to the element when <em class="parameter"><code>new_base_time</code></em> is <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.
3197
+ If the element was PLAYING, it will go to PAUSED. The element
3198
+ will be restored to its PLAYING state by the parent pipeline when it
3199
+ prerolls again.
3200
+ </p>
3201
+ <p>
3202
+ This is mostly used for elements that lost their preroll buffer
3203
+ in the <a class="link" href="GstElement.html#GST-STATE-PAUSED:CAPS"><code class="literal">GST_STATE_PAUSED</code></a> or <a class="link" href="GstElement.html#GST-STATE-PLAYING:CAPS"><code class="literal">GST_STATE_PLAYING</code></a> state after a flush,
3204
+ they will go to their pending state again when a new preroll buffer is
3205
+ queued. This function can only be called when the element is currently
3206
+ not in error or an async state change.
3207
+ </p>
3208
+ <p>
3209
+ This function is used internally and should normally not be called from
3210
+ plugins or applications.
3211
+ </p>
3212
+ <p>
3213
+ MT safe.
3214
+ </p>
3215
+ <div class="variablelist"><table border="0">
3216
+ <col align="left" valign="top">
3217
+ <tbody>
3218
+ <tr>
3219
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3220
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> the state is lost of</td>
3221
+ </tr>
3222
+ <tr>
3223
+ <td><p><span class="term"><em class="parameter"><code>new_base_time</code></em> :</span></p></td>
3224
+ <td>if a new base time should be distributed</td>
3225
+ </tr>
3226
+ </tbody>
3227
+ </table></div>
3228
+ <p class="since">Since 0.10.24</p>
3229
+ </div>
3230
+ <hr>
3231
+ <div class="refsect2">
3232
+ <a name="gst-element-state-get-name"></a><h3>gst_element_state_get_name ()</h3>
3233
+ <pre class="programlisting">const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gst_element_state_get_name (<em class="parameter"><code><a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> state</code></em>);</pre>
3234
+ <p>
3235
+ Gets a string representing the given state.
3236
+ </p>
3237
+ <div class="variablelist"><table border="0">
3238
+ <col align="left" valign="top">
3239
+ <tbody>
3240
+ <tr>
3241
+ <td><p><span class="term"><em class="parameter"><code>state</code></em> :</span></p></td>
3242
+ <td>a <a class="link" href="GstElement.html#GstState" title="enum GstState"><span class="type">GstState</span></a> to get the name of.</td>
3243
+ </tr>
3244
+ <tr>
3245
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3246
+ <td>a string with the name of the state. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
3247
+ </td>
3248
+ </tr>
3249
+ </tbody>
3250
+ </table></div>
3251
+ </div>
3252
+ <hr>
3253
+ <div class="refsect2">
3254
+ <a name="gst-element-state-change-return-get-name"></a><h3>gst_element_state_change_return_get_name ()</h3>
3255
+ <pre class="programlisting">const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gst_element_state_change_return_get_name
3256
+ (<em class="parameter"><code><a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a> state_ret</code></em>);</pre>
3257
+ <p>
3258
+ Gets a string representing the given state change result.
3259
+ </p>
3260
+ <div class="variablelist"><table border="0">
3261
+ <col align="left" valign="top">
3262
+ <tbody>
3263
+ <tr>
3264
+ <td><p><span class="term"><em class="parameter"><code>state_ret</code></em> :</span></p></td>
3265
+ <td>a <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a> to get the name of.</td>
3266
+ </tr>
3267
+ <tr>
3268
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3269
+ <td>a string with the name of the state
3270
+ result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
3271
+ </td>
3272
+ </tr>
3273
+ </tbody>
3274
+ </table></div>
3275
+ <p class="since">Since 0.10.11</p>
3276
+ </div>
3277
+ <hr>
3278
+ <div class="refsect2">
3279
+ <a name="gst-element-sync-state-with-parent"></a><h3>gst_element_sync_state_with_parent ()</h3>
3280
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_sync_state_with_parent (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
3281
+ <p>
3282
+ Tries to change the state of the element to the same as its parent.
3283
+ If this function returns FALSE, the state of element is undefined.
3284
+ </p>
3285
+ <div class="variablelist"><table border="0">
3286
+ <col align="left" valign="top">
3287
+ <tbody>
3288
+ <tr>
3289
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3290
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>.</td>
3291
+ </tr>
3292
+ <tr>
3293
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3294
+ <td>TRUE, if the element's state could be synced to the parent's state.
3295
+ MT safe.</td>
3296
+ </tr>
3297
+ </tbody>
3298
+ </table></div>
3299
+ </div>
3300
+ <hr>
3301
+ <div class="refsect2">
3302
+ <a name="gst-element-change-state"></a><h3>gst_element_change_state ()</h3>
3303
+ <pre class="programlisting"><a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="returnvalue">GstStateChangeReturn</span></a> gst_element_change_state (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3304
+ <em class="parameter"><code><a class="link" href="GstElement.html#GstStateChange" title="enum GstStateChange"><span class="type">GstStateChange</span></a> transition</code></em>);</pre>
3305
+ <p>
3306
+ Perform <em class="parameter"><code>transition</code></em> on <em class="parameter"><code>element</code></em>.
3307
+ </p>
3308
+ <p>
3309
+ This function must be called with STATE_LOCK held and is mainly used
3310
+ internally.
3311
+ </p>
3312
+ <div class="variablelist"><table border="0">
3313
+ <col align="left" valign="top">
3314
+ <tbody>
3315
+ <tr>
3316
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3317
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a>
3318
+ </td>
3319
+ </tr>
3320
+ <tr>
3321
+ <td><p><span class="term"><em class="parameter"><code>transition</code></em> :</span></p></td>
3322
+ <td>the requested transition</td>
3323
+ </tr>
3324
+ <tr>
3325
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3326
+ <td>the <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a> of the state transition.</td>
3327
+ </tr>
3328
+ </tbody>
3329
+ </table></div>
3330
+ </div>
3331
+ <hr>
3332
+ <div class="refsect2">
3333
+ <a name="gst-element-found-tags"></a><h3>gst_element_found_tags ()</h3>
3334
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_found_tags (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3335
+ <em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);</pre>
3336
+ <p>
3337
+ Posts a message to the bus that new tags were found, and pushes an event
3338
+ to all sourcepads. Takes ownership of the <em class="parameter"><code>list</code></em>.
3339
+ </p>
3340
+ <p>
3341
+ This is a utility method for elements. Applications should use the
3342
+ <a class="link" href="GstTagSetter.html" title="GstTagSetter"><span class="type">GstTagSetter</span></a> interface.
3343
+ </p>
3344
+ <div class="variablelist"><table border="0">
3345
+ <col align="left" valign="top">
3346
+ <tbody>
3347
+ <tr>
3348
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3349
+ <td>element for which we found the tags.</td>
3350
+ </tr>
3351
+ <tr>
3352
+ <td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
3353
+ <td>list of tags. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
3354
+ </td>
3355
+ </tr>
3356
+ </tbody>
3357
+ </table></div>
3358
+ </div>
3359
+ <hr>
3360
+ <div class="refsect2">
3361
+ <a name="gst-element-found-tags-for-pad"></a><h3>gst_element_found_tags_for_pad ()</h3>
3362
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_found_tags_for_pad (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3363
+ <em class="parameter"><code><a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *pad</code></em>,
3364
+ <em class="parameter"><code><a class="link" href="gstreamer-GstTagList.html#GstTagList" title="GstTagList"><span class="type">GstTagList</span></a> *list</code></em>);</pre>
3365
+ <p>
3366
+ Posts a message to the bus that new tags were found and pushes the
3367
+ tags as event. Takes ownership of the <em class="parameter"><code>list</code></em>.
3368
+ </p>
3369
+ <p>
3370
+ This is a utility method for elements. Applications should use the
3371
+ <a class="link" href="GstTagSetter.html" title="GstTagSetter"><span class="type">GstTagSetter</span></a> interface.
3372
+ </p>
3373
+ <div class="variablelist"><table border="0">
3374
+ <col align="left" valign="top">
3375
+ <tbody>
3376
+ <tr>
3377
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3378
+ <td>element for which to post taglist to bus.</td>
3379
+ </tr>
3380
+ <tr>
3381
+ <td><p><span class="term"><em class="parameter"><code>pad</code></em> :</span></p></td>
3382
+ <td>pad on which to push tag-event. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
3383
+ </td>
3384
+ </tr>
3385
+ <tr>
3386
+ <td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
3387
+ <td>the taglist to post on the bus and create event from. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
3388
+ </td>
3389
+ </tr>
3390
+ </tbody>
3391
+ </table></div>
3392
+ </div>
3393
+ <hr>
3394
+ <div class="refsect2">
3395
+ <a name="gst-element-message-full"></a><h3>gst_element_message_full ()</h3>
3396
+ <pre class="programlisting"><span class="returnvalue">void</span> gst_element_message_full (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3397
+ <em class="parameter"><code><a class="link" href="gstreamer-GstMessage.html#GstMessageType" title="enum GstMessageType"><span class="type">GstMessageType</span></a> type</code></em>,
3398
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
3399
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
3400
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
3401
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *debug</code></em>,
3402
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *file</code></em>,
3403
+ <em class="parameter"><code>const <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *function</code></em>,
3404
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line</code></em>);</pre>
3405
+ <p>
3406
+ Post an error, warning or info message on the bus from inside an element.
3407
+ </p>
3408
+ <p>
3409
+ <em class="parameter"><code>type</code></em> must be of <a class="link" href="gstreamer-GstMessage.html#GST-MESSAGE-ERROR:CAPS"><span class="type">GST_MESSAGE_ERROR</span></a>, <a class="link" href="gstreamer-GstMessage.html#GST-MESSAGE-WARNING:CAPS"><span class="type">GST_MESSAGE_WARNING</span></a> or
3410
+ <a class="link" href="gstreamer-GstMessage.html#GST-MESSAGE-INFO:CAPS"><span class="type">GST_MESSAGE_INFO</span></a>.
3411
+ </p>
3412
+ <p>
3413
+ MT safe.
3414
+ </p>
3415
+ <div class="variablelist"><table border="0">
3416
+ <col align="left" valign="top">
3417
+ <tbody>
3418
+ <tr>
3419
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3420
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to send message from</td>
3421
+ </tr>
3422
+ <tr>
3423
+ <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
3424
+ <td>the <a class="link" href="gstreamer-GstMessage.html#GstMessageType" title="enum GstMessageType"><span class="type">GstMessageType</span></a>
3425
+ </td>
3426
+ </tr>
3427
+ <tr>
3428
+ <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
3429
+ <td>the GStreamer GError domain this message belongs to</td>
3430
+ </tr>
3431
+ <tr>
3432
+ <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
3433
+ <td>the GError code belonging to the domain</td>
3434
+ </tr>
3435
+ <tr>
3436
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
3437
+ <td>an allocated text string to be used
3438
+ as a replacement for the default message connected to code,
3439
+ or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
3440
+ </td>
3441
+ </tr>
3442
+ <tr>
3443
+ <td><p><span class="term"><em class="parameter"><code>debug</code></em> :</span></p></td>
3444
+ <td>an allocated debug message to be
3445
+ used as a replacement for the default debugging information,
3446
+ or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
3447
+ </td>
3448
+ </tr>
3449
+ <tr>
3450
+ <td><p><span class="term"><em class="parameter"><code>file</code></em> :</span></p></td>
3451
+ <td>the source code file where the error was generated</td>
3452
+ </tr>
3453
+ <tr>
3454
+ <td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
3455
+ <td>the source code function where the error was generated</td>
3456
+ </tr>
3457
+ <tr>
3458
+ <td><p><span class="term"><em class="parameter"><code>line</code></em> :</span></p></td>
3459
+ <td>the source code line where the error was generated</td>
3460
+ </tr>
3461
+ </tbody>
3462
+ </table></div>
3463
+ </div>
3464
+ <hr>
3465
+ <div class="refsect2">
3466
+ <a name="gst-element-post-message"></a><h3>gst_element_post_message ()</h3>
3467
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_post_message (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3468
+ <em class="parameter"><code><a class="link" href="gstreamer-GstMessage.html#GstMessage" title="struct GstMessage"><span class="type">GstMessage</span></a> *message</code></em>);</pre>
3469
+ <p>
3470
+ Post a message on the element's <a class="link" href="GstBus.html" title="GstBus"><span class="type">GstBus</span></a>. This function takes ownership of the
3471
+ message; if you want to access the message after this call, you should add an
3472
+ additional reference before calling.
3473
+ </p>
3474
+ <div class="variablelist"><table border="0">
3475
+ <col align="left" valign="top">
3476
+ <tbody>
3477
+ <tr>
3478
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3479
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> posting the message</td>
3480
+ </tr>
3481
+ <tr>
3482
+ <td><p><span class="term"><em class="parameter"><code>message</code></em> :</span></p></td>
3483
+ <td>a <a class="link" href="gstreamer-GstMessage.html#GstMessage" title="struct GstMessage"><span class="type">GstMessage</span></a> to post. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
3484
+ </td>
3485
+ </tr>
3486
+ <tr>
3487
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3488
+ <td>
3489
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the message was successfully posted. The function returns
3490
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the element did not have a bus.
3491
+ MT safe.</td>
3492
+ </tr>
3493
+ </tbody>
3494
+ </table></div>
3495
+ </div>
3496
+ <hr>
3497
+ <div class="refsect2">
3498
+ <a name="gst-element-get-query-types"></a><h3>gst_element_get_query_types ()</h3>
3499
+ <pre class="programlisting">const <a class="link" href="gstreamer-GstQuery.html#GstQueryType" title="enum GstQueryType"><span class="returnvalue">GstQueryType</span></a> * gst_element_get_query_types (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>);</pre>
3500
+ <p>
3501
+ Get an array of query types from the element.
3502
+ If the element doesn't implement a query types function,
3503
+ the query will be forwarded to the peer of a random linked sink pad.
3504
+ </p>
3505
+ <div class="variablelist"><table border="0">
3506
+ <col align="left" valign="top">
3507
+ <tbody>
3508
+ <tr>
3509
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3510
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to query</td>
3511
+ </tr>
3512
+ <tr>
3513
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3514
+ <td>An array of <a class="link" href="gstreamer-GstQuery.html#GstQueryType" title="enum GstQueryType"><span class="type">GstQueryType</span></a> elements that should not
3515
+ be freed or modified.
3516
+ MT safe.</td>
3517
+ </tr>
3518
+ </tbody>
3519
+ </table></div>
3520
+ </div>
3521
+ <hr>
3522
+ <div class="refsect2">
3523
+ <a name="gst-element-query"></a><h3>gst_element_query ()</h3>
3524
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_query (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3525
+ <em class="parameter"><code><a class="link" href="gstreamer-GstQuery.html#GstQuery" title="struct GstQuery"><span class="type">GstQuery</span></a> *query</code></em>);</pre>
3526
+ <p>
3527
+ Performs a query on the given element.
3528
+ </p>
3529
+ <p>
3530
+ For elements that don't implement a query handler, this function
3531
+ forwards the query to a random srcpad or to the peer of a
3532
+ random linked sinkpad of this element.
3533
+ </p>
3534
+ <p>
3535
+ Please note that some queries might need a running pipeline to work.
3536
+ </p>
3537
+ <div class="variablelist"><table border="0">
3538
+ <col align="left" valign="top">
3539
+ <tbody>
3540
+ <tr>
3541
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3542
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to perform the query on.</td>
3543
+ </tr>
3544
+ <tr>
3545
+ <td><p><span class="term"><em class="parameter"><code>query</code></em> :</span></p></td>
3546
+ <td>the <a class="link" href="gstreamer-GstQuery.html#GstQuery" title="struct GstQuery"><span class="type">GstQuery</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
3547
+ </td>
3548
+ </tr>
3549
+ <tr>
3550
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3551
+ <td>TRUE if the query could be performed.
3552
+ MT safe.</td>
3553
+ </tr>
3554
+ </tbody>
3555
+ </table></div>
3556
+ </div>
3557
+ <hr>
3558
+ <div class="refsect2">
3559
+ <a name="gst-element-query-convert"></a><h3>gst_element_query_convert ()</h3>
3560
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_query_convert (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3561
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> src_format</code></em>,
3562
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> src_val</code></em>,
3563
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> *dest_format</code></em>,
3564
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> *dest_val</code></em>);</pre>
3565
+ <p>
3566
+ Queries an element to convert <em class="parameter"><code>src_val</code></em> in <em class="parameter"><code>src_format</code></em> to <em class="parameter"><code>dest_format</code></em>.
3567
+ </p>
3568
+ <div class="variablelist"><table border="0">
3569
+ <col align="left" valign="top">
3570
+ <tbody>
3571
+ <tr>
3572
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3573
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to invoke the convert query on.</td>
3574
+ </tr>
3575
+ <tr>
3576
+ <td><p><span class="term"><em class="parameter"><code>src_format</code></em> :</span></p></td>
3577
+ <td>a <a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> to convert from. <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
3578
+ </td>
3579
+ </tr>
3580
+ <tr>
3581
+ <td><p><span class="term"><em class="parameter"><code>src_val</code></em> :</span></p></td>
3582
+ <td>a value to convert.</td>
3583
+ </tr>
3584
+ <tr>
3585
+ <td><p><span class="term"><em class="parameter"><code>dest_format</code></em> :</span></p></td>
3586
+ <td>a pointer to the <a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> to convert to. <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
3587
+ </td>
3588
+ </tr>
3589
+ <tr>
3590
+ <td><p><span class="term"><em class="parameter"><code>dest_val</code></em> :</span></p></td>
3591
+ <td>a pointer to the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
3592
+ </td>
3593
+ </tr>
3594
+ <tr>
3595
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3596
+ <td>TRUE if the query could be performed.</td>
3597
+ </tr>
3598
+ </tbody>
3599
+ </table></div>
3600
+ </div>
3601
+ <hr>
3602
+ <div class="refsect2">
3603
+ <a name="gst-element-query-position"></a><h3>gst_element_query_position ()</h3>
3604
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_query_position (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3605
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> *format</code></em>,
3606
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> *cur</code></em>);</pre>
3607
+ <p>
3608
+ Queries an element for the stream position. If one repeatedly calls this
3609
+ function one can also create and reuse it in <a class="link" href="GstElement.html#gst-element-query" title="gst_element_query ()"><code class="function">gst_element_query()</code></a>.
3610
+ </p>
3611
+ <div class="variablelist"><table border="0">
3612
+ <col align="left" valign="top">
3613
+ <tbody>
3614
+ <tr>
3615
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3616
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to invoke the position query on.</td>
3617
+ </tr>
3618
+ <tr>
3619
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
3620
+ <td>a pointer to the <a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> asked for.
3621
+ On return contains the <a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> used. <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
3622
+ </td>
3623
+ </tr>
3624
+ <tr>
3625
+ <td><p><span class="term"><em class="parameter"><code>cur</code></em> :</span></p></td>
3626
+ <td>a location in which to store the current
3627
+ position, or NULL. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3628
+ </td>
3629
+ </tr>
3630
+ <tr>
3631
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3632
+ <td>TRUE if the query could be performed.</td>
3633
+ </tr>
3634
+ </tbody>
3635
+ </table></div>
3636
+ </div>
3637
+ <hr>
3638
+ <div class="refsect2">
3639
+ <a name="gst-element-query-duration"></a><h3>gst_element_query_duration ()</h3>
3640
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_query_duration (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3641
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> *format</code></em>,
3642
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> *duration</code></em>);</pre>
3643
+ <p>
3644
+ Queries an element for the total stream duration.
3645
+ </p>
3646
+ <div class="variablelist"><table border="0">
3647
+ <col align="left" valign="top">
3648
+ <tbody>
3649
+ <tr>
3650
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3651
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to invoke the duration query on.</td>
3652
+ </tr>
3653
+ <tr>
3654
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
3655
+ <td>a pointer to the <a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> asked for.
3656
+ On return contains the <a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> used. <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
3657
+ </td>
3658
+ </tr>
3659
+ <tr>
3660
+ <td><p><span class="term"><em class="parameter"><code>duration</code></em> :</span></p></td>
3661
+ <td>A location in which to store the total duration, or NULL. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
3662
+ </td>
3663
+ </tr>
3664
+ <tr>
3665
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3666
+ <td>TRUE if the query could be performed.</td>
3667
+ </tr>
3668
+ </tbody>
3669
+ </table></div>
3670
+ </div>
3671
+ <hr>
3672
+ <div class="refsect2">
3673
+ <a name="gst-element-send-event"></a><h3>gst_element_send_event ()</h3>
3674
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_send_event (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3675
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstEvent" title="struct GstEvent"><span class="type">GstEvent</span></a> *event</code></em>);</pre>
3676
+ <p>
3677
+ Sends an event to an element. If the element doesn't implement an
3678
+ event handler, the event will be pushed on a random linked sink pad for
3679
+ upstream events or a random linked source pad for downstream events.
3680
+ </p>
3681
+ <p>
3682
+ This function takes owership of the provided event so you should
3683
+ <a class="link" href="gstreamer-GstEvent.html#gst-event-ref" title="gst_event_ref ()"><code class="function">gst_event_ref()</code></a> it if you want to reuse the event after this call.
3684
+ </p>
3685
+ <div class="variablelist"><table border="0">
3686
+ <col align="left" valign="top">
3687
+ <tbody>
3688
+ <tr>
3689
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3690
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to send the event to.</td>
3691
+ </tr>
3692
+ <tr>
3693
+ <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
3694
+ <td>the <a class="link" href="gstreamer-GstEvent.html#GstEvent" title="struct GstEvent"><span class="type">GstEvent</span></a> to send to the element. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
3695
+ </td>
3696
+ </tr>
3697
+ <tr>
3698
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3699
+ <td>
3700
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was handled.
3701
+ MT safe.</td>
3702
+ </tr>
3703
+ </tbody>
3704
+ </table></div>
3705
+ </div>
3706
+ <hr>
3707
+ <div class="refsect2">
3708
+ <a name="gst-element-seek-simple"></a><h3>gst_element_seek_simple ()</h3>
3709
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_seek_simple (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3710
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> format</code></em>,
3711
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstSeekFlags" title="enum GstSeekFlags"><span class="type">GstSeekFlags</span></a> seek_flags</code></em>,
3712
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> seek_pos</code></em>);</pre>
3713
+ <p>
3714
+ Simple API to perform a seek on the given element, meaning it just seeks
3715
+ to the given position relative to the start of the stream. For more complex
3716
+ operations like segment seeks (e.g. for looping) or changing the playback
3717
+ rate or seeking relative to the last configured playback segment you should
3718
+ use <a class="link" href="GstElement.html#gst-element-seek" title="gst_element_seek ()"><code class="function">gst_element_seek()</code></a>.
3719
+ </p>
3720
+ <p>
3721
+ In a completely prerolled PAUSED or PLAYING pipeline, seeking is always
3722
+ guaranteed to return <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on a seekable media type or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> when the media
3723
+ type is certainly not seekable (such as a live stream).
3724
+ </p>
3725
+ <p>
3726
+ Some elements allow for seeking in the READY state, in this
3727
+ case they will store the seek event and execute it when they are put to
3728
+ PAUSED. If the element supports seek in READY, it will always return <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when
3729
+ it receives the event in the READY state.
3730
+ </p>
3731
+ <div class="variablelist"><table border="0">
3732
+ <col align="left" valign="top">
3733
+ <tbody>
3734
+ <tr>
3735
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3736
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to seek on</td>
3737
+ </tr>
3738
+ <tr>
3739
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
3740
+ <td>a <a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> to execute the seek in, such as <a class="link" href="gstreamer-GstFormat.html#GST-FORMAT-TIME:CAPS"><span class="type">GST_FORMAT_TIME</span></a>
3741
+ </td>
3742
+ </tr>
3743
+ <tr>
3744
+ <td><p><span class="term"><em class="parameter"><code>seek_flags</code></em> :</span></p></td>
3745
+ <td>seek options; playback applications will usually want to use
3746
+ GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_KEY_UNIT here</td>
3747
+ </tr>
3748
+ <tr>
3749
+ <td><p><span class="term"><em class="parameter"><code>seek_pos</code></em> :</span></p></td>
3750
+ <td>position to seek to (relative to the start); if you are doing
3751
+ a seek in <a class="link" href="gstreamer-GstFormat.html#GST-FORMAT-TIME:CAPS"><span class="type">GST_FORMAT_TIME</span></a> this value is in nanoseconds -
3752
+ multiply with <a class="link" href="GstClock.html#GST-SECOND:CAPS" title="GST_SECOND"><span class="type">GST_SECOND</span></a> to convert seconds to nanoseconds or
3753
+ with <a class="link" href="GstClock.html#GST-MSECOND:CAPS" title="GST_MSECOND"><span class="type">GST_MSECOND</span></a> to convert milliseconds to nanoseconds.</td>
3754
+ </tr>
3755
+ <tr>
3756
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3757
+ <td>
3758
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the seek operation succeeded (the seek might not always be
3759
+ executed instantly though)</td>
3760
+ </tr>
3761
+ </tbody>
3762
+ </table></div>
3763
+ <p class="since">Since 0.10.7</p>
3764
+ </div>
3765
+ <hr>
3766
+ <div class="refsect2">
3767
+ <a name="gst-element-seek"></a><h3>gst_element_seek ()</h3>
3768
+ <pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gst_element_seek (<em class="parameter"><code><a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *element</code></em>,
3769
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> rate</code></em>,
3770
+ <em class="parameter"><code><a class="link" href="gstreamer-GstFormat.html#GstFormat" title="enum GstFormat"><span class="type">GstFormat</span></a> format</code></em>,
3771
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstSeekFlags" title="enum GstSeekFlags"><span class="type">GstSeekFlags</span></a> flags</code></em>,
3772
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstSeekType" title="enum GstSeekType"><span class="type">GstSeekType</span></a> cur_type</code></em>,
3773
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> cur</code></em>,
3774
+ <em class="parameter"><code><a class="link" href="gstreamer-GstEvent.html#GstSeekType" title="enum GstSeekType"><span class="type">GstSeekType</span></a> stop_type</code></em>,
3775
+ <em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> stop</code></em>);</pre>
3776
+ <p>
3777
+ Sends a seek event to an element. See <a class="link" href="gstreamer-GstEvent.html#gst-event-new-seek" title="gst_event_new_seek ()"><code class="function">gst_event_new_seek()</code></a> for the details of
3778
+ the parameters. The seek event is sent to the element using
3779
+ <a class="link" href="GstElement.html#gst-element-send-event" title="gst_element_send_event ()"><code class="function">gst_element_send_event()</code></a>.
3780
+ </p>
3781
+ <div class="variablelist"><table border="0">
3782
+ <col align="left" valign="top">
3783
+ <tbody>
3784
+ <tr>
3785
+ <td><p><span class="term"><em class="parameter"><code>element</code></em> :</span></p></td>
3786
+ <td>a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> to send the event to.</td>
3787
+ </tr>
3788
+ <tr>
3789
+ <td><p><span class="term"><em class="parameter"><code>rate</code></em> :</span></p></td>
3790
+ <td>The new playback rate</td>
3791
+ </tr>
3792
+ <tr>
3793
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
3794
+ <td>The format of the seek values</td>
3795
+ </tr>
3796
+ <tr>
3797
+ <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
3798
+ <td>The optional seek flags.</td>
3799
+ </tr>
3800
+ <tr>
3801
+ <td><p><span class="term"><em class="parameter"><code>cur_type</code></em> :</span></p></td>
3802
+ <td>The type and flags for the new current position</td>
3803
+ </tr>
3804
+ <tr>
3805
+ <td><p><span class="term"><em class="parameter"><code>cur</code></em> :</span></p></td>
3806
+ <td>The value of the new current position</td>
3807
+ </tr>
3808
+ <tr>
3809
+ <td><p><span class="term"><em class="parameter"><code>stop_type</code></em> :</span></p></td>
3810
+ <td>The type and flags for the new stop position</td>
3811
+ </tr>
3812
+ <tr>
3813
+ <td><p><span class="term"><em class="parameter"><code>stop</code></em> :</span></p></td>
3814
+ <td>The value of the new stop position</td>
3815
+ </tr>
3816
+ <tr>
3817
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3818
+ <td>
3819
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was handled.
3820
+ MT safe.</td>
3821
+ </tr>
3822
+ </tbody>
3823
+ </table></div>
3824
+ </div>
3825
+ </div>
3826
+ <div class="refsect1">
3827
+ <a name="GstElement.signal-details"></a><h2>Signal Details</h2>
3828
+ <div class="refsect2">
3829
+ <a name="GstElement-no-more-pads"></a><h3>The <code class="literal">"no-more-pads"</code> signal</h3>
3830
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *gstelement,
3831
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
3832
+ <p>
3833
+ This signals that the element will not generate more dynamic pads.
3834
+ Note that this signal will usually be emitted from the context of
3835
+ the streaming thread.
3836
+ </p>
3837
+ <div class="variablelist"><table border="0">
3838
+ <col align="left" valign="top">
3839
+ <tbody>
3840
+ <tr>
3841
+ <td><p><span class="term"><em class="parameter"><code>gstelement</code></em> :</span></p></td>
3842
+ <td>the object which received the signal</td>
3843
+ </tr>
3844
+ <tr>
3845
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3846
+ <td>user data set when the signal handler was connected.</td>
3847
+ </tr>
3848
+ </tbody>
3849
+ </table></div>
3850
+ </div>
3851
+ <hr>
3852
+ <div class="refsect2">
3853
+ <a name="GstElement-pad-added"></a><h3>The <code class="literal">"pad-added"</code> signal</h3>
3854
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *gstelement,
3855
+ <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *new_pad,
3856
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
3857
+ <p>
3858
+ a new <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> has been added to the element. Note that this signal will
3859
+ usually be emitted from the context of the streaming thread. Also keep in
3860
+ mind that if you add new elements to the pipeline in the signal handler
3861
+ you will need to set them to the desired target state with
3862
+ <a class="link" href="GstElement.html#gst-element-set-state" title="gst_element_set_state ()"><code class="function">gst_element_set_state()</code></a> or <a class="link" href="GstElement.html#gst-element-sync-state-with-parent" title="gst_element_sync_state_with_parent ()"><code class="function">gst_element_sync_state_with_parent()</code></a>.
3863
+ </p>
3864
+ <div class="variablelist"><table border="0">
3865
+ <col align="left" valign="top">
3866
+ <tbody>
3867
+ <tr>
3868
+ <td><p><span class="term"><em class="parameter"><code>gstelement</code></em> :</span></p></td>
3869
+ <td>the object which received the signal</td>
3870
+ </tr>
3871
+ <tr>
3872
+ <td><p><span class="term"><em class="parameter"><code>new_pad</code></em> :</span></p></td>
3873
+ <td>the pad that has been added</td>
3874
+ </tr>
3875
+ <tr>
3876
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3877
+ <td>user data set when the signal handler was connected.</td>
3878
+ </tr>
3879
+ </tbody>
3880
+ </table></div>
3881
+ </div>
3882
+ <hr>
3883
+ <div class="refsect2">
3884
+ <a name="GstElement-pad-removed"></a><h3>The <code class="literal">"pad-removed"</code> signal</h3>
3885
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> *gstelement,
3886
+ <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> *old_pad,
3887
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
3888
+ <p>
3889
+ a <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> has been removed from the element
3890
+ </p>
3891
+ <div class="variablelist"><table border="0">
3892
+ <col align="left" valign="top">
3893
+ <tbody>
3894
+ <tr>
3895
+ <td><p><span class="term"><em class="parameter"><code>gstelement</code></em> :</span></p></td>
3896
+ <td>the object which received the signal</td>
3897
+ </tr>
3898
+ <tr>
3899
+ <td><p><span class="term"><em class="parameter"><code>old_pad</code></em> :</span></p></td>
3900
+ <td>the pad that has been removed</td>
3901
+ </tr>
3902
+ <tr>
3903
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3904
+ <td>user data set when the signal handler was connected.</td>
3905
+ </tr>
3906
+ </tbody>
3907
+ </table></div>
3908
+ </div>
3909
+ </div>
3910
+ <div class="refsect1">
3911
+ <a name="GstElement.see-also"></a><h2>See Also</h2>
3912
+ <a class="link" href="GstElementFactory.html" title="GstElementFactory"><span class="type">GstElementFactory</span></a>, <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a>
3913
+ </div>
3914
+ </div>
3915
+ <div class="footer">
3916
+ <hr>
3917
+ Generated by GTK-Doc V1.17</div>
3918
+ </body>
3919
+ </html>