diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 22:18:50 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 22:18:50 +0000 |
commit | c0178b0e481332c8aa9ab2b1226d64426eeed9fd (patch) | |
tree | 62183313777b7b3b1b504dc7ca74ea99f7ed59c8 /src/input/input_dvd.c | |
parent | 08eb3436712ed19ac471cd0ddcc6d8ab1c30e4e7 (diff) | |
download | xine-lib-c0178b0e481332c8aa9ab2b1226d64426eeed9fd.tar.gz xine-lib-c0178b0e481332c8aa9ab2b1226d64426eeed9fd.tar.bz2 |
remove plugin's private priority and interface members
adapt some more decoders
CVS patchset: 2618
CVS date: 2002/09/05 22:18:50
Diffstat (limited to 'src/input/input_dvd.c')
-rw-r--r-- | src/input/input_dvd.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index cadc69e0d..76aaab973 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -18,7 +18,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: input_dvd.c,v 1.75 2002/09/05 20:44:39 mroi Exp $ + * $Id: input_dvd.c,v 1.76 2002/09/05 22:18:54 mroi Exp $ * */ @@ -1393,7 +1393,6 @@ static void *init_input_plugin (xine_t *xine, void *data) { this = (dvdnav_input_plugin_t *) malloc (sizeof (dvdnav_input_plugin_t)); - this->input_plugin.interface_version = INPUT_PLUGIN_IFACE_VERSION; this->input_plugin.get_capabilities = dvdnav_plugin_get_capabilities; this->input_plugin.open = dvdnav_plugin_open; this->input_plugin.read = dvdnav_plugin_read; @@ -1497,6 +1496,10 @@ static void *init_input_plugin (xine_t *xine, void *data) { /* * $Log: input_dvd.c,v $ + * Revision 1.76 2002/09/05 22:18:54 mroi + * remove plugin's private priority and interface members + * adapt some more decoders + * * Revision 1.75 2002/09/05 20:44:39 mroi * make all the plugin init functions static * (geez this was a job) |