OSDN Git Service

libhb: DVD drive region detection on linux
[handbrake-jp/handbrake-jp-git.git] / libhb / ports.h
index 9c21439..0f3697f 100644 (file)
@@ -19,6 +19,11 @@ int      hb_get_cpu_count();
 /* Everything from now is only used internally and hidden to the UI */
 
 /************************************************************************
+ * DVD utils
+ ***********************************************************************/
+int hb_dvd_region(char *device, int *region_mask);
+
+/************************************************************************
  * Files utils
  ***********************************************************************/
 void hb_get_tempory_directory( hb_handle_t * h, char path[512] );
@@ -43,6 +48,9 @@ typedef struct hb_thread_s hb_thread_t;
 #elif defined( SYS_CYGWIN )
 #  define HB_LOW_PRIORITY    0
 #  define HB_NORMAL_PRIORITY 1
+#elif defined( SYS_MINGW )
+#  define HB_LOW_PRIORITY    0
+#  define HB_NORMAL_PRIORITY 0
 #endif
 
 hb_thread_t * hb_thread_init( char * name, void (* function)(void *),