diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-01 15:10:04 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-01 15:10:04 +0000 |
commit | b160989dd4f95b0aa4d12862e0bbf91b501c1236 (patch) | |
tree | c07d518b0098bd040673f22324b7bb90053e7191 /src/xine-engine/plugin_catalog.h | |
parent | 613eb16d4ab070f768c5dfc59980a7f968f80a75 (diff) | |
download | xine-lib-b160989dd4f95b0aa4d12862e0bbf91b501c1236.tar.gz xine-lib-b160989dd4f95b0aa4d12862e0bbf91b501c1236.tar.bz2 |
- add post plugins to the plugin catalog
- fix some bugs in plugin loader that prevented it from traversing subdirs
- implement some public API functions for post plugin handling here
CVS patchset: 3403
CVS date: 2002/12/01 15:10:04
Diffstat (limited to 'src/xine-engine/plugin_catalog.h')
-rw-r--r-- | src/xine-engine/plugin_catalog.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/plugin_catalog.h b/src/xine-engine/plugin_catalog.h index fd0581488..0790b410f 100644 --- a/src/xine-engine/plugin_catalog.h +++ b/src/xine-engine/plugin_catalog.h @@ -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: plugin_catalog.h,v 1.6 2002/10/14 15:47:39 guenter Exp $ + * $Id: plugin_catalog.h,v 1.7 2002/12/01 15:10:04 mroi Exp $ * * xine-internal header: Definitions for plugin lists * @@ -50,6 +50,7 @@ struct plugin_catalog_s { xine_list_t *video; xine_list_t *aout; xine_list_t *vout; + xine_list_t *post; plugin_node_t *audio_decoder_map[DECODER_MAX][PLUGINS_PER_TYPE]; plugin_node_t *video_decoder_map[DECODER_MAX][PLUGINS_PER_TYPE]; |