Revision 21005,
447 bytes
checked in by ghudson, 20 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r21004,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | |
---|
2 | #include <gst/gst.h> |
---|
3 | |
---|
4 | int |
---|
5 | main (int argc, char *argv[]) |
---|
6 | { |
---|
7 | GstPlugin *plugin; |
---|
8 | |
---|
9 | gst_init (&argc, &argv); |
---|
10 | |
---|
11 | plugin = gst_registry_pool_find_plugin ("testplugin"); |
---|
12 | g_assert (plugin != NULL); |
---|
13 | |
---|
14 | g_print ("testplugin: %p %s\n", plugin, gst_plugin_get_name (plugin)); |
---|
15 | |
---|
16 | plugin = gst_registry_pool_find_plugin ("testplugin2"); |
---|
17 | g_assert (plugin != NULL); |
---|
18 | |
---|
19 | g_print ("testplugin2: %p %s\n", plugin, gst_plugin_get_name (plugin)); |
---|
20 | |
---|
21 | return 0; |
---|
22 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.