aubio_next_power_of_two method

int aubio_next_power_of_two(
  1. int a
)

return the next power of power of 2 greater than a

Implementation

int aubio_next_power_of_two(
  int a,
) {
  return _aubio_next_power_of_two(
    a,
  );
}