cdio.{c,h}: moved various reading and device/driver routines out into the below

read.{c,h}: separate include for the reading routines.
disc.{c,h}: more moved here from corresponding cdio.
device.c: a place for device/driver related routines.
interface.c: break up line to make debugging easier.
This commit is contained in:
rocky
2005-01-09 16:07:46 +00:00
parent db486c617d
commit 6f7e9e182b
12 changed files with 1125 additions and 957 deletions

View File

@@ -1,5 +1,5 @@
/*
$Id: interface.c,v 1.8 2005/01/08 20:39:40 rocky Exp $
$Id: interface.c,v 1.9 2005/01/09 16:07:46 rocky Exp $
Copyright (C) 2005 Rocky Bernstein <rocky@panix.com>
Copyright (C) 1998 Monty xiphmont@mit.edu
@@ -110,7 +110,8 @@ cdda_open(cdrom_drive_t *d)
return(ret);
/* d->select_speed(d,d->maxspeed); most drives are full speed by default */
if(d->bigendianp==-1)d->bigendianp=data_bigendianp(d);
// if (d->bigendianp==-1)
d->bigendianp=data_bigendianp(d);
return(0);
}