public static int PA_SOURCE_IS_RUNNING(pa_source_state_t x)
 {
     return((x == PA_SOURCE_RUNNING) ? 1 : 0);
 }
 public static int PA_SOURCE_IS_OPENED(pa_source_state_t x)
 {
     return((x == PA_SOURCE_RUNNING || x == PA_SOURCE_IDLE) ? 1 : 0);
 }