diff options
author | Tim Champagne <tchamp@users.sourceforge.net> | 2003-05-20 01:23:56 +0000 |
---|---|---|
committer | Tim Champagne <tchamp@users.sourceforge.net> | 2003-05-20 01:23:56 +0000 |
commit | abf8ed42ccb75f06ceefbea9619aa6b1e53a57d7 (patch) | |
tree | dd121df491c853abc9df87152d87f14ffa2b7808 /src/demuxers | |
parent | 20215a9d747aa844d8b4cfa3ab9878c901d6a93e (diff) | |
download | xine-lib-abf8ed42ccb75f06ceefbea9619aa6b1e53a57d7.tar.gz xine-lib-abf8ed42ccb75f06ceefbea9619aa6b1e53a57d7.tar.bz2 |
This adds cdda support for Win32. Also fixed the demuxer mpeg block build for Win32. Lastly fixed and issue with launching xineui from a Cygwin shell. There is one small problem known with cdda under Windows and it appears that some songs can start approx 1 second early or late.
CVS patchset: 4880
CVS date: 2003/05/20 01:23:56
Diffstat (limited to 'src/demuxers')
-rw-r--r-- | src/demuxers/demux_mpeg_block.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/demuxers/demux_mpeg_block.c b/src/demuxers/demux_mpeg_block.c index c4a33d101..e0384b7b2 100644 --- a/src/demuxers/demux_mpeg_block.c +++ b/src/demuxers/demux_mpeg_block.c @@ -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: demux_mpeg_block.c,v 1.188 2003/05/18 17:41:37 jcdutton Exp $ + * $Id: demux_mpeg_block.c,v 1.189 2003/05/20 01:23:56 tchamp Exp $ * * demultiplexer for mpeg 1/2 program streams * used with fixed blocksize devices (like dvd/vcd) @@ -32,7 +32,11 @@ #include <fcntl.h> #include <unistd.h> #include <string.h> + +#ifndef WIN32 #include <stdlib.h> +#endif /* WIN32 */ + #include <assert.h> #include "xine_internal.h" |