[MPlayer-cvslog] r27513 - trunk/libvo/vo_bl.c
diego
subversion at mplayerhq.hu
Tue Sep 2 00:34:27 CEST 2008
Author: diego
Date: Tue Sep 2 00:34:27 2008
New Revision: 27513
Log:
Remove Windows-specific #ifdefs, the file does not compile on MinGW anyway.
Modified:
trunk/libvo/vo_bl.c
Modified: trunk/libvo/vo_bl.c
==============================================================================
--- trunk/libvo/vo_bl.c (original)
+++ trunk/libvo/vo_bl.c Tue Sep 2 00:34:27 2008
@@ -34,13 +34,9 @@
#include "config.h"
-#ifndef HAVE_WINSOCK2_H
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
-#else
-#include <winsock2.h>
-#endif
#include "video_out.h"
#include "video_out_internal.h"
@@ -48,10 +44,6 @@
#include "m_option.h"
#include "fastmemcpy.h"
-#ifndef HAVE_CLOSESOCKET
-#define closesocket close
-#endif
-
static const vo_info_t info =
{
"Blinkenlights driver: http://www.blinkenlights.de",
@@ -190,7 +182,7 @@ static int udp_init(bl_host_t *h) {
if (connect(h->fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
mp_msg(MSGT_VO, MSGL_ERR, "couldn't connect socket for %s\n",
h->name);
- closesocket(h->fd);
+ close(h->fd);
return 1;
}
return 0;
@@ -202,7 +194,7 @@ static void udp_send(bl_host_t *h) {
}
static void udp_close(bl_host_t *h) {
- closesocket(h->fd);
+ close(h->fd);
}
#define NO_BLS 3
More information about the MPlayer-cvslog
mailing list