summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTim Champagne <tchamp@users.sourceforge.net>2003-05-19 10:06:36 +0000
committerTim Champagne <tchamp@users.sourceforge.net>2003-05-19 10:06:36 +0000
commit18a26e7276905eacd5552b3d7355a05c950d23c0 (patch)
treeabb80707e8f1f5e306ecff72ce0b25f0ada750b8 /src
parented8dd0a70b9a45e3907af354146e43658aac1020 (diff)
downloadxine-lib-18a26e7276905eacd5552b3d7355a05c950d23c0.tar.gz
xine-lib-18a26e7276905eacd5552b3d7355a05c950d23c0.tar.bz2
This adds lpcm support for Win32 and the start of cdda support for Win32 (which isn't complete yet).
CVS patchset: 4873 CVS date: 2003/05/19 10:06:36
Diffstat (limited to 'src')
-rw-r--r--src/liblpcm/xine_decoder.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/liblpcm/xine_decoder.c b/src/liblpcm/xine_decoder.c
index 12546e70c..c71d40ab4 100644
--- a/src/liblpcm/xine_decoder.c
+++ b/src/liblpcm/xine_decoder.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: xine_decoder.c,v 1.41 2003/05/17 18:18:52 jstembridge Exp $
+ * $Id: xine_decoder.c,v 1.42 2003/05/19 10:06:36 tchamp Exp $
*
* 31-8-2001 Added LPCM rate sensing.
* (c) 2001 James Courtier-Dutton James@superbug.demon.co.uk
@@ -39,6 +39,11 @@
#include "audio_out.h"
#include "buffer.h"
+#ifdef WIN32
+#include <winsock.h>
+/*#include <Winsock2.h>*/ /* htons */
+#endif
+
typedef struct {
audio_decoder_class_t decoder_class;
} lpcm_class_t;