change unsigned to int

dev
xufuji456 3 years ago
parent 494ea794ba
commit 93b1994b31
  1. 6
      app/src/main/cpp/visualizer/execute_fft.h

@ -15,12 +15,10 @@
typedef struct
{
pthread_t thread;
/* Audio data */
vlc_queue_t queue;
bool dead;
unsigned i_channels;
unsigned i_prev_nb_samples;
int i_channels;
int i_prev_nb_samples;
int16_t *p_prev_s16_buff;
float f_rotationAngle;

Loading…
Cancel
Save