add correct header for WIN32
authorThomas Vander Stichele <thomas@apestaart.org>
Thu, 13 Oct 2005 17:51:51 +0000 (17:51 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Thu, 13 Oct 2005 17:51:51 +0000 (17:51 +0000)
Original commit message from CVS:
add correct header for WIN32

gst/elements/gstelements.c
gst/elements/gstfilesrc.c
plugins/elements/gstelements.c
plugins/elements/gstfilesrc.c

index 66f91add8f37463def759757a592105954dcefa8..b5327170ff33976083ad5d4319b90e6f20a0c08e 100644 (file)
@@ -51,9 +51,9 @@ static struct _elements_entry _elements[] = {
   {"capsfilter", GST_RANK_NONE, gst_capsfilter_get_type},
   {"fakesrc", GST_RANK_NONE, gst_fake_src_get_type},
   {"fakesink", GST_RANK_NONE, gst_fake_sink_get_type},
-#ifndef WIN32
+#ifndef HAVE_WIN32
   {"fdsrc", GST_RANK_NONE, gst_fdsrc_get_type},
-#endif //WIN32
+#endif
   {"filesrc", GST_RANK_NONE, gst_file_src_get_type},
   {"identity", GST_RANK_NONE, gst_identity_get_type},
   {"filesink", GST_RANK_NONE, gst_file_sink_get_type},
index ec15585ce326ddd189eb0fb674c4e9c3ae2f9688..4f5666552cedf825936c71d7ae4ff4b3026d7d03 100644 (file)
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
+
 #ifdef HAVE_UNISTD_H
-#include <unistd.h>
+#  include <unistd.h>
 #endif
+
 #ifdef HAVE_MMAP
-#include <sys/mman.h>
+# include <sys/mman.h>
 #endif
+
+#ifdef HAVE_WIN32
+#  include <io.h>               /* lseek, open, close, read */
+#endif
+
 #include <errno.h>
 #include <string.h>
 
@@ -732,7 +739,7 @@ gst_file_src_create_read (GstFileSrc * src, guint64 offset, guint length,
     goto could_not_read;
 
   /* regular files should have given us what we expected */
-  if ((gint) ret < length && src->is_regular)
+  if ((guint) ret < length && src->is_regular)
     goto unexpected_eos;
 
   /* other files should eos if they read 0 */
index 66f91add8f37463def759757a592105954dcefa8..b5327170ff33976083ad5d4319b90e6f20a0c08e 100644 (file)
@@ -51,9 +51,9 @@ static struct _elements_entry _elements[] = {
   {"capsfilter", GST_RANK_NONE, gst_capsfilter_get_type},
   {"fakesrc", GST_RANK_NONE, gst_fake_src_get_type},
   {"fakesink", GST_RANK_NONE, gst_fake_sink_get_type},
-#ifndef WIN32
+#ifndef HAVE_WIN32
   {"fdsrc", GST_RANK_NONE, gst_fdsrc_get_type},
-#endif //WIN32
+#endif
   {"filesrc", GST_RANK_NONE, gst_file_src_get_type},
   {"identity", GST_RANK_NONE, gst_identity_get_type},
   {"filesink", GST_RANK_NONE, gst_file_sink_get_type},
index ec15585ce326ddd189eb0fb674c4e9c3ae2f9688..4f5666552cedf825936c71d7ae4ff4b3026d7d03 100644 (file)
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
+
 #ifdef HAVE_UNISTD_H
-#include <unistd.h>
+#  include <unistd.h>
 #endif
+
 #ifdef HAVE_MMAP
-#include <sys/mman.h>
+# include <sys/mman.h>
 #endif
+
+#ifdef HAVE_WIN32
+#  include <io.h>               /* lseek, open, close, read */
+#endif
+
 #include <errno.h>
 #include <string.h>
 
@@ -732,7 +739,7 @@ gst_file_src_create_read (GstFileSrc * src, guint64 offset, guint length,
     goto could_not_read;
 
   /* regular files should have given us what we expected */
-  if ((gint) ret < length && src->is_regular)
+  if ((guint) ret < length && src->is_regular)
     goto unexpected_eos;
 
   /* other files should eos if they read 0 */