| /third_party/gstreamer/gstplugins_good/gst/rtp/ |
| D | gstrtp.c | 125 plugin_init (GstPlugin * plugin) in plugin_init() argument 134 if (!gst_rtp_ac3_depay_plugin_init (plugin)) in plugin_init() 137 if (!gst_rtp_ac3_pay_plugin_init (plugin)) in plugin_init() 140 if (!gst_rtp_bv_depay_plugin_init (plugin)) in plugin_init() 143 if (!gst_rtp_bv_pay_plugin_init (plugin)) in plugin_init() 146 if (!gst_rtp_celt_depay_plugin_init (plugin)) in plugin_init() 149 if (!gst_rtp_celt_pay_plugin_init (plugin)) in plugin_init() 152 if (!gst_rtp_dv_depay_plugin_init (plugin)) in plugin_init() 155 if (!gst_rtp_dv_pay_plugin_init (plugin)) in plugin_init() 158 if (!gst_rtp_gst_depay_plugin_init (plugin)) in plugin_init() [all …]
|
| /third_party/gstreamer/gstreamer/gst/ |
| D | gstplugin.c | 5 * gstplugin.c: Plugin subsystem for loading elements, types, and libs 30 * A plugin system can provide one or more of the basic 33 * A plugin should export a symbol <symbol>gst_plugin_desc</symbol> that is a 35 * the plugin loader will check the version of the core library the plugin was 45 * statically link plugins to an app or even use GStreamer without a plugin 46 * repository in which case gst_plugin_load() can be needed to bring the plugin 79 /* static variables for segfault handling of plugin loading */ 83 * One of these must be specified or the plugin won't be loaded 109 static GstPlugin *gst_plugin_register_func (GstPlugin * plugin, 119 gst_plugin_init (GstPlugin * plugin) in gst_plugin_init() argument [all …]
|
| D | gstplugin.h | 5 * gstplugin.h: Header for plugin subsystem 38 * The opaque plugin object 63 * @GST_PLUGIN_ERROR_MODULE: The plugin could not be loaded 64 * @GST_PLUGIN_ERROR_DEPENDENCIES: The plugin has unresolved dependencies 65 * @GST_PLUGIN_ERROR_NAME_MISMATCH: The plugin has already be loaded from a different file 67 * The plugin loading errors 79 * @GST_PLUGIN_FLAG_BLACKLISTED: The plugin won't be scanned (again) 81 * The plugin loading state 118 * @plugin: The plugin object 120 * A plugin should provide a pointer to a function of this type in the [all …]
|
| D | gstregistrychunks.c | 9 * plugin entries and features. 127 GST_ERROR ("unexpected NULL string in plugin or plugin feature data"); in gst_registry_chunks_save_const_string() 368 /* pack plugin feature strings */ in gst_registry_chunks_save_feature() 411 GST_LOG ("Saved external plugin dependency"); in gst_registry_chunks_save_plugin_dep() 424 GstPlugin * plugin) in _priv_gst_registry_chunks_save_plugin() argument 436 pe->file_size = plugin->file_size; in _priv_gst_registry_chunks_save_plugin() 437 pe->file_mtime = plugin->file_mtime; in _priv_gst_registry_chunks_save_plugin() 442 for (walk = plugin->priv->deps; walk != NULL; walk = walk->next) { in _priv_gst_registry_chunks_save_plugin() 444 GST_ERROR ("Could not save external plugin dependency, aborting."); in _priv_gst_registry_chunks_save_plugin() 450 /* pack plugin features */ in _priv_gst_registry_chunks_save_plugin() [all …]
|
| D | gstregistry.c | 38 * The primary source, at all times, of plugin information is each plugin file 39 * itself. Thus, if an application wants information about a particular plugin, 41 * means of doing so is to load every plugin and look at the resulting 46 * On startup, plugins are searched for in the plugin search path. The following 49 * * location from --gst-plugin-path commandline option. 64 * For each plugin that is found in the plugin search path, there could be 3 71 * In the first two cases, the plugin is loaded and the cache updated. In 209 * GstRegistry::plugin-added: in gst_registry_class_init() 211 * @plugin: the plugin that has been added in gst_registry_class_init() 213 * Signals that a plugin has been added to the registry (possibly in gst_registry_class_init() [all …]
|
| D | gstpluginfeature.c | 5 * gstpluginfeature.c: Abstract base class for all plugin features 69 if (feature->plugin != NULL) { in gst_plugin_feature_finalize() 70 g_object_remove_weak_pointer ((GObject *) feature->plugin, in gst_plugin_feature_finalize() 71 (gpointer *) & feature->plugin); in gst_plugin_feature_finalize() 79 * @feature: (transfer none): the plugin feature to check 81 * Loads the plugin containing @feature if it's not already loaded. @feature is 100 GstPlugin *plugin; in gst_plugin_feature_load() local 106 GST_DEBUG ("loading plugin for feature %p; '%s'", feature, in gst_plugin_feature_load() 111 GST_DEBUG ("loading plugin %s", feature->plugin_name); in gst_plugin_feature_load() 112 plugin = gst_plugin_load_by_name (feature->plugin_name); in gst_plugin_feature_load() [all …]
|
| /third_party/gstreamer/gstreamer/tests/check/gst/ |
| D | gstplugin.c | 31 register_check_elements (GstPlugin * plugin) in register_check_elements() argument 38 GstPlugin *plugin; in GST_START_TEST() local 45 plugin = g_object_new (GST_TYPE_PLUGIN, NULL); in GST_START_TEST() 47 gst_object_unref (plugin); in GST_START_TEST() 61 GstPlugin *plugin = GST_PLUGIN (g->data); in GST_START_TEST() local 64 GST_DEBUG ("Plugin refcount %d %s", GST_OBJECT_REFCOUNT_VALUE (plugin), in GST_START_TEST() 65 gst_plugin_get_name (plugin)); in GST_START_TEST() 66 ASSERT_OBJECT_REFCOUNT (plugin, "plugin in registry", 2); in GST_START_TEST() 68 gst_object_unref (plugin); in GST_START_TEST() 93 fail_if (unloaded_plugin == NULL, "Failed to find coreelements plugin"); in GST_START_TEST() [all …]
|
| D | gstregistry.c | 1 /* GStreamer unit tests for the plugin registry 44 print_plugin (const gchar * marker, GstRegistry * registry, GstPlugin * plugin) in print_plugin() argument 49 name = gst_plugin_get_name (plugin); in print_plugin() 51 GST_DEBUG ("%s: plugin %p %d %s file: %s", marker, plugin, in print_plugin() 52 GST_OBJECT_REFCOUNT (plugin), name, in print_plugin() 53 GST_STR_NULL (gst_plugin_get_filename (plugin))); in print_plugin() 84 fail_unless (old_identity != NULL, "Can't find plugin feature 'identity'"); in GST_START_TEST() 87 fail_unless (old_pipeline != NULL, "Can't find plugin feature 'pipeline'"); in GST_START_TEST() 93 GstPlugin *plugin; in GST_START_TEST() local 95 plugin = GST_PLUGIN (l->data); in GST_START_TEST() [all …]
|
| /third_party/gstreamer/gstplugins_bad/ |
| D | meson_options.txt | 70 …e : 'feature', value : 'auto', description : 'Wayland plugin/library, support in the Vulkan plugin… 74 option('aom', type : 'feature', value : 'auto', description : 'AOM AV1 video codec plugin') 77 …on('assrender', type : 'feature', value : 'auto', description : 'ASS/SSA subtitle renderer plugin') 78 … : 'feature', value : 'auto', description : 'Bluetooth audio A2DP/AVDTP sink, AVDTP source plugin') 79 …2b', type : 'feature', value : 'auto', description : 'Bauer stereophonic-to-binaural audio plugin') 80 …ion('bz2', type : 'feature', value : 'auto', description : 'bz2 stream encoder and decoder plugin') 81 …romaprint', type : 'feature', value : 'auto', description : 'Chromaprint fingerprint audio plugin') 82 …: 'feature', value : 'auto', description : 'Closed caption extractor, decoder, and overlay plugin') 83 …rmanagement', type : 'feature', value : 'auto', description : 'Color management correction plugin') 84 option('curl', type : 'feature', value : 'auto', description : 'cURL network source and sink plugin… [all …]
|
| /third_party/gstreamer/gstplugins_bad/docs/plugins/html/ |
| D | ch02.html | 10 <link rel="next" href="gst-plugins-bad-plugins-plugin-accurip.html" title="accurip"> 20 <td><a accesskey="n" href="gst-plugins-bad-plugins-plugin-accurip.html"><img src="right.png" width=… 27 <span class="refentrytitle"><a href="gst-plugins-bad-plugins-plugin-accurip.html">accurip</a></span… 30 <span class="refentrytitle"><a href="gst-plugins-bad-plugins-plugin-adpcmdec.html">adpcmdec</a></sp… 33 <span class="refentrytitle"><a href="gst-plugins-bad-plugins-plugin-adpcmenc.html">adpcmenc</a></sp… 36 <span class="refentrytitle"><a href="gst-plugins-bad-plugins-plugin-aiff.html">aiff</a></span><span… 39 …e"><a href="gst-plugins-bad-plugins-plugin-asfmux.html">asfmux</a></span><span class="refpurpose">… 42 <span class="refentrytitle"><a href="gst-plugins-bad-plugins-plugin-assrender.html">assrender</a></… 45 <span class="refentrytitle"><a href="gst-plugins-bad-plugins-plugin-audiobuffersplit.html">audiobuf… 48 <span class="refentrytitle"><a href="gst-plugins-bad-plugins-plugin-audiofxbad.html">audiofxbad</a>… [all …]
|
| /third_party/gstreamer/gstplugins_bad/docs/plugins/ |
| D | gst-plugins-bad-plugins-docs.sgml | 286 <xi:include href="xml/plugin-accurip.xml" /> 287 <xi:include href="xml/plugin-adpcmdec.xml" /> 288 <xi:include href="xml/plugin-adpcmenc.xml" /> 289 <xi:include href="xml/plugin-aiff.xml" /> 290 <xi:include href="xml/plugin-asfmux.xml" /> 291 <xi:include href="xml/plugin-assrender.xml" /> 292 <xi:include href="xml/plugin-audiobuffersplit.xml" /> 293 <xi:include href="xml/plugin-audiofxbad.xml" /> 294 <xi:include href="xml/plugin-audiolatency.xml" /> 295 <xi:include href="xml/plugin-audiomixmatrix.xml" /> [all …]
|
| /third_party/gstreamer/gstplugins_base/ext/gl/ |
| D | gstopengl.c | 25 * SECTION:plugin-opengl 28 * Cross-platform OpenGL plugin. 113 /* Register filters that make up the gstgl plugin */ 115 plugin_init (GstPlugin * plugin) in plugin_init() argument 129 if (!gst_element_register (plugin, "glimagesink", in plugin_init() 134 if (!gst_element_register (plugin, "glimagesinkelement", in plugin_init() 139 if (!gst_element_register (plugin, "glupload", in plugin_init() 144 if (!gst_element_register (plugin, "gldownload", in plugin_init() 149 if (!gst_element_register (plugin, "glcolorconvert", in plugin_init() 154 if (!gst_element_register (plugin, "glcolorbalance", in plugin_init() [all …]
|
| /third_party/node/deps/icu-small/source/common/unicode/ |
| D | icuplug.h | 20 * \brief C API: ICU Plugin API 22 * <h2>C API: ICU Plugin API</h2> 49 * <li>ENTRYPOINT is the short (undecorated) symbol name of the plugin's 53 * the plugin.</li> 64 * which cause ICU to be 'initialized'. If a plugin is low level but 65 * causes ICU to allocate memory or become initialized, that plugin is said 72 * <h3>Implementing a Plugin</h3> 77 * uplug_setPlugName(plug, "Simple Plugin"); 88 * <p>The UPlugData* is an opaque pointer to the plugin-specific data, and is 92 * <ol><li>The plugin MUST always return UPLUG_TOKEN as a return value- to [all …]
|
| /third_party/flutter/skia/third_party/externals/icu/source/common/unicode/ |
| D | icuplug.h | 20 * \brief C API: ICU Plugin API 22 * <h2>C API: ICU Plugin API</h2> 49 * <li>ENTRYPOINT is the short (undecorated) symbol name of the plugin's 53 * the plugin.</li> 64 * which cause ICU to be 'initialized'. If a plugin is low level but 65 * causes ICU to allocate memory or become initialized, that plugin is said 72 * <h3>Implementing a Plugin</h3> 77 * uplug_setPlugName(plug, "Simple Plugin"); 88 * <p>The UPlugData* is an opaque pointer to the plugin-specific data, and is 92 * <ol><li>The plugin MUST always return UPLUG_TOKEN as a return value- to [all …]
|
| /third_party/icu/icu4c/source/common/unicode/ |
| D | icuplug.h | 20 * \brief C API: ICU Plugin API 22 * <h2>C API: ICU Plugin API</h2> 49 * <li>ENTRYPOINT is the short (undecorated) symbol name of the plugin's 53 * the plugin.</li> 64 * which cause ICU to be 'initialized'. If a plugin is low level but 65 * causes ICU to allocate memory or become initialized, that plugin is said 72 * <h3>Implementing a Plugin</h3> 77 * uplug_setPlugName(plug, "Simple Plugin"); 88 * <p>The UPlugData* is an opaque pointer to the plugin-specific data, and is 92 * <ol><li>The plugin MUST always return UPLUG_TOKEN as a return value- to [all …]
|
| /third_party/gstreamer/gstplugins_good/docs/plugins/html/ |
| D | ch02.html | 10 <link rel="next" href="gst-plugins-good-plugins-plugin-1394.html" title="1394"> 20 <td><a accesskey="n" href="gst-plugins-good-plugins-plugin-1394.html"><img src="right.png" width="1… 27 <span class="refentrytitle"><a href="gst-plugins-good-plugins-plugin-1394.html">1394</a></span><spa… 30 <span class="refentrytitle"><a href="gst-plugins-good-plugins-plugin-aasink.html">aasink</a></span>… 33 <span class="refentrytitle"><a href="gst-plugins-good-plugins-plugin-alaw.html">alaw</a></span><spa… 36 <span class="refentrytitle"><a href="gst-plugins-good-plugins-plugin-alphacolor.html">alphacolor</a… 39 <span class="refentrytitle"><a href="gst-plugins-good-plugins-plugin-alpha.html">alpha</a></span><s… 42 <span class="refentrytitle"><a href="gst-plugins-good-plugins-plugin-apetag.html">apetag</a></span>… 45 …a href="gst-plugins-good-plugins-plugin-audiofx.html">audiofx</a></span><span class="refpurpose"> … 48 <span class="refentrytitle"><a href="gst-plugins-good-plugins-plugin-audioparsers.html">audioparser… [all …]
|
| /third_party/gstreamer/gstplugins_bad/ext/opencv/ |
| D | gstopencv.cpp | 4 * gstopencv.cpp: plugin registering 49 plugin_init (GstPlugin * plugin) in plugin_init() argument 51 if (!gst_cv_dilate_plugin_init (plugin)) in plugin_init() 54 if (!gst_cv_equalize_hist_plugin_init (plugin)) in plugin_init() 57 if (!gst_cv_erode_plugin_init (plugin)) in plugin_init() 60 if (!gst_cv_laplace_plugin_init (plugin)) in plugin_init() 63 if (!gst_cv_smooth_plugin_init (plugin)) in plugin_init() 66 if (!gst_cv_sobel_plugin_init (plugin)) in plugin_init() 69 if (!gst_edge_detect_plugin_init (plugin)) in plugin_init() 72 if (!gst_face_blur_plugin_init (plugin)) in plugin_init() [all …]
|
| /third_party/gstreamer/gstplugins_good/ |
| D | meson_options.txt | 47 …on('aalib', type : 'feature', value : 'auto', description : 'aalib text console video sink plugin') 48 …ion('bz2', type : 'feature', value : 'auto', description : 'libbz2 support in the matroska plugin') 49 option('cairo', type : 'feature', value : 'auto', description : 'Cairo overlay plugin') 50 …rectsound', type : 'feature', value : 'auto', description : 'Directsound audio source/sink plugin') 51 …n('dv', type : 'feature', value : 'auto', description : 'Digital video decoder and demuxer plugin') 52 …, type : 'feature', value : 'auto', description : 'Digital IEEE1394 interface video source plugin') 53 option('flac', type : 'feature', value : 'auto', description : 'FLAC audio codec plugin') 54 …pe : 'feature', value : 'auto', description : 'gdk-pixbuf image decoder, overlay, and sink plugin') 55 option('gtk3', type : 'feature', value : 'auto', description : 'GTK+ video sink plugin') 56 option('jack', type : 'feature', value : 'auto', description : 'JACK audio source/sink plugin') [all …]
|
| /third_party/boost/libs/dll/doc/ |
| D | tutorial.qbk | 16 [section Plugin basics] 18 The first thing to do when creating your own plugins is define the plugin interface. There is an ex… 19 of an abstract class that will be our plugin API: 24 Now let's make a DLL/DSO library that will holds implementation of plugin interface and exports it … 30 Simple application that loads plugin using the [funcref boost::dll::import] 39 Loading the plugin 41 plugin->calculate(1.5, 1.5) call: 3 57 [section Factory method in plugin] 59 In previous example we were importing from a plugin a single variable. Let's make a class 60 that uses our plugin API plugin and holds some state: [all …]
|
| /third_party/pulseaudio/src/modules/ |
| D | ladspa.h | 3 Linux Audio Developer's Simple Plugin API Version 1.1[LGPL]. 38 Developer's Simple Plugin API') attempts to give programmers the 39 ability to write simple `plugin' audio processors in C/C++ and link 41 It should be possible for any host and any plugin to communicate 54 control data and each plugin is `run' for a `block' corresponding 57 to be processed by the plugin in a single pass. Control data is 61 duration. The plugin may assume that all its input and output ports 67 `plugin types' that can be used to instantiate actual plugins 68 (sometimes known as `plugin instances') that can be connected 75 /* Fundamental data type passed in and out of plugin. This data type [all …]
|
| /third_party/gstreamer/gstreamer/plugins/elements/ |
| D | gstelements.c | 53 plugin_init (GstPlugin * plugin) in plugin_init() argument 55 if (!gst_element_register (plugin, "capsfilter", GST_RANK_NONE, in plugin_init() 58 if (!gst_element_register (plugin, "concat", GST_RANK_NONE, in plugin_init() 61 if (!gst_element_register (plugin, "dataurisrc", GST_RANK_PRIMARY, in plugin_init() 64 if (!gst_element_register (plugin, "downloadbuffer", GST_RANK_NONE, in plugin_init() 67 if (!gst_element_register (plugin, "fakesrc", GST_RANK_NONE, in plugin_init() 70 if (!gst_element_register (plugin, "fakesink", GST_RANK_NONE, in plugin_init() 74 if (!gst_element_register (plugin, "fdsrc", GST_RANK_NONE, in plugin_init() 77 if (!gst_element_register (plugin, "fdsink", GST_RANK_NONE, in plugin_init() 81 if (!gst_element_register (plugin, "filesrc", GST_RANK_PRIMARY, in plugin_init() [all …]
|
| /third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/engine/ |
| D | FlutterEnginePluginRegistry.java | 37 import io.flutter.plugin.platform.PlatformViewsController; 119 public void add(@NonNull FlutterPlugin plugin) { in add() argument 120 Log.v(TAG, "Adding plugin: " + plugin); in add() 121 // Add the plugin to our generic set of plugins and notify the plugin in add() 123 plugins.put(plugin.getClass(), plugin); in add() local 124 plugin.onAttachedToEngine(pluginBinding); in add() 126 // For ActivityAware plugins, add the plugin to our set of ActivityAware in add() 128 // notify the ActivityAware plugin that it is now attached to an Activity. in add() 129 if (plugin instanceof ActivityAware) { in add() 130 ActivityAware activityAware = (ActivityAware) plugin; in add() [all …]
|
| /third_party/gstreamer/gstplugins_base/docs/plugins/html/ |
| D | ch02.html | 10 <link rel="next" href="gst-plugins-base-plugins-plugin-adder.html" title="adder"> 20 <td><a accesskey="n" href="gst-plugins-base-plugins-plugin-adder.html"><img src="right.png" width="… 27 <span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-adder.html">adder</a></span><s… 30 …itle"><a href="gst-plugins-base-plugins-plugin-alsa.html">alsa</a></span><span class="refpurpose">… 33 <span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-app.html">app</a></span><span … 36 <span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audioconvert.html">audioconver… 39 <span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audiomixer.html">audiomixer</a… 42 <span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audiorate.html">audiorate</a><… 45 <span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audioresample.html">audioresam… 48 <span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audiotestsrc.html">audiotestsr… [all …]
|
| /third_party/jerryscript/tools/babel/ |
| D | .babelrc | 3 "@babel/plugin-transform-function-name", 4 "@babel/plugin-proposal-object-rest-spread", 5 "@babel/plugin-transform-block-scoping", 6 "@babel/plugin-transform-destructuring", 7 "@babel/plugin-transform-block-scoped-functions", 8 "@babel/plugin-transform-unicode-regex", 9 "@babel/plugin-transform-sticky-regex", 10 "@babel/plugin-transform-spread", 11 "@babel/plugin-transform-parameters", 12 "@babel/plugin-transform-object-super", [all …]
|
| /third_party/protobuf/java/ |
| D | pom.xml | 116 <plugin> 117 <artifactId>maven-compiler-plugin</artifactId> 123 </plugin> 124 <plugin> 125 <artifactId>maven-source-plugin</artifactId> 135 </plugin> 136 <plugin> 137 <artifactId>maven-javadoc-plugin</artifactId> 150 </plugin> 151 <plugin> [all …]
|