diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-01-07 19:52:42 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-01-07 19:52:42 +0000 |
commit | 5e25dd8a73f15e8116da5ce8fda14f8f671473ce (patch) | |
tree | d47d0a7c256fe25905f4fcd66302dbee68c5faa9 /src/post/visualizations/visualizations.c | |
parent | 6f75f546fd6e928245911e8ebcea680a7c9046b6 (diff) | |
download | xine-lib-5e25dd8a73f15e8116da5ce8fda14f8f671473ce.tar.gz xine-lib-5e25dd8a73f15e8116da5ce8fda14f8f671473ce.tar.bz2 |
the new, refined post plugin architecture
* post plugins are now much safer (fewer races/inconsistencies) and easier to write
* all post plugins are ported to the new architecture (and should work)
* ports can now be opened and closed with a NULL stream
CVS patchset: 6007
CVS date: 2004/01/07 19:52:42
Diffstat (limited to 'src/post/visualizations/visualizations.c')
-rw-r--r-- | src/post/visualizations/visualizations.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/post/visualizations/visualizations.c b/src/post/visualizations/visualizations.c index 64f17c570..92a5df1fa 100644 --- a/src/post/visualizations/visualizations.c +++ b/src/post/visualizations/visualizations.c @@ -19,7 +19,7 @@ * * This file contains plugin entries for several visualization post plugins. * - * $Id: visualizations.c,v 1.9 2003/12/14 22:13:25 siggi Exp $ + * $Id: visualizations.c,v 1.10 2004/01/07 19:52:42 mroi Exp $ */ #ifdef HAVE_CONFIG_H @@ -48,8 +48,8 @@ post_info_t fftgraph_special_info = { XINE_POST_TYPE_AUDIO_VISUALIZATION }; plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 7, "oscope", XINE_VERSION_CODE, &oscope_special_info, &oscope_init_plugin }, - { PLUGIN_POST, 7, "fftscope", XINE_VERSION_CODE, &fftscope_special_info, &fftscope_init_plugin }, - { PLUGIN_POST, 7, "fftgraph", XINE_VERSION_CODE, &fftgraph_special_info, &fftgraph_init_plugin }, + { PLUGIN_POST, 8, "oscope", XINE_VERSION_CODE, &oscope_special_info, &oscope_init_plugin }, + { PLUGIN_POST, 8, "fftscope", XINE_VERSION_CODE, &fftscope_special_info, &fftscope_init_plugin }, + { PLUGIN_POST, 8, "fftgraph", XINE_VERSION_CODE, &fftgraph_special_info, &fftgraph_init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |