diff options
author | Tim Champagne <tchamp@users.sourceforge.net> | 2003-05-06 14:02:24 +0000 |
---|---|---|
committer | Tim Champagne <tchamp@users.sourceforge.net> | 2003-05-06 14:02:24 +0000 |
commit | 883cc45e4791c8f796de86e31fe72e5a6deae709 (patch) | |
tree | 6a72b90346d9ce418d140588b78e9674ccc2f321 /src/demuxers/demux_cdda.c | |
parent | 476abbd3d2c89c3951d9144f2f483e9d9e551a75 (diff) | |
download | xine-lib-883cc45e4791c8f796de86e31fe72e5a6deae709.tar.gz xine-lib-883cc45e4791c8f796de86e31fe72e5a6deae709.tar.bz2 |
This is some general Win32 cleanup and getting ready for DVD support.
CVS patchset: 4779
CVS date: 2003/05/06 14:02:24
Diffstat (limited to 'src/demuxers/demux_cdda.c')
-rw-r--r-- | src/demuxers/demux_cdda.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/demuxers/demux_cdda.c b/src/demuxers/demux_cdda.c index b8ed0bf5c..028443f35 100644 --- a/src/demuxers/demux_cdda.c +++ b/src/demuxers/demux_cdda.c @@ -22,7 +22,7 @@ * linear PCM "decoder" (which in turn sends them directly to the audio * output target; this is a really fancy CD-playing architecture). * - * $Id: demux_cdda.c,v 1.5 2003/03/07 12:51:47 guenter Exp $ + * $Id: demux_cdda.c,v 1.6 2003/05/06 14:02:25 tchamp Exp $ * */ @@ -282,3 +282,13 @@ void *demux_cdda_init_plugin (xine_t *xine, void *data) { return this; } + +/* + * exported plugin catalog entry + */ + +plugin_info_t xine_plugin_info[] = { + /* type, API, "name", version, special_info, init_function */ + { PLUGIN_DEMUX, 21, "cdda", XINE_VERSION_CODE, NULL, demux_cdda_init_plugin }, + { PLUGIN_NONE, 0, "", 0, NULL, NULL } +}; |