diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-29 14:04:43 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-29 14:04:43 +0000 |
commit | d6423b628bb7437529b2d9c4cf388fd9560886b7 (patch) | |
tree | 2434750b73e2ee057962f2e3ca1ca419eaea4db4 /src/post/goom/xine_goom.c | |
parent | 50aa894a408172bcd2c31dd8fa1ce5b445fccc48 (diff) | |
download | xine-lib-d6423b628bb7437529b2d9c4cf388fd9560886b7.tar.gz xine-lib-d6423b628bb7437529b2d9c4cf388fd9560886b7.tar.bz2 |
- new post plugin property: type
- include post plugins in plugin catalog
CVS patchset: 3716
CVS date: 2002/12/29 14:04:43
Diffstat (limited to 'src/post/goom/xine_goom.c')
-rw-r--r-- | src/post/goom/xine_goom.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/post/goom/xine_goom.c b/src/post/goom/xine_goom.c index 59ebfede5..7c31ec502 100644 --- a/src/post/goom/xine_goom.c +++ b/src/post/goom/xine_goom.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_goom.c,v 1.4 2002/12/27 23:25:16 tmattern Exp $ + * $Id: xine_goom.c,v 1.5 2002/12/29 14:04:43 mroi Exp $ * * GOOM post plugin. * @@ -70,9 +70,11 @@ static void *goom_init_plugin(xine_t *xine, void *); /* plugin catalog information */ +post_info_t goom_special_info = { XINE_POST_TYPE_AUDIO_VISUALIZATION }; + plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 1, "goom", XINE_VERSION_CODE, NULL, &goom_init_plugin }, + { PLUGIN_POST, 2, "goom", XINE_VERSION_CODE, &goom_special_info, &goom_init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |