summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ext/mpeg2enc/gstmpeg2encoptions.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/mpeg2enc/gstmpeg2encoptions.cc b/ext/mpeg2enc/gstmpeg2encoptions.cc
index 7891bc84..7db8b385 100644
--- a/ext/mpeg2enc/gstmpeg2encoptions.cc
+++ b/ext/mpeg2enc/gstmpeg2encoptions.cc
@@ -24,6 +24,9 @@
#endif
#include "gstmpeg2encoptions.hh"
+#if WIN32
+# include <windows.h> //For GetSystemInfo
+#endif
#include <gst/gst.h>
@@ -285,7 +288,13 @@ GstMpeg2EncOptions::GstMpeg2EncOptions ():
MPEG2EncOptions ()
{
/* autodetect number of CPUs */
+#ifndef WIN32
num_cpus = sysconf (_SC_NPROCESSORS_ONLN);
+#else
+ SYSTEM_INFO si;
+ GetSystemInfo(&si);
+ num_cpus = si.dwNumberOfProcessors;
+#endif
if (num_cpus < 0)
num_cpus = 1;
if (num_cpus > 32)