Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/OpenAudio_ArduinoLibrary/commit/d94a52115c4975e310c3af4746bb2ec1cba54978?style=split&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

AudioStream_F32: remove const on length and fs_Hz

pull/5/head
Chip Audette 8 years ago
parent c1c7241b9b
commit d94a52115c
  1. 4
      AudioStream_F32.h

@ -32,8 +32,8 @@ typedef struct audio_block_f32_struct {
#else #else
float32_t data[AUDIO_BLOCK_SAMPLES]; // AUDIO_BLOCK_SAMPLES is 128, from AudioStream.h float32_t data[AUDIO_BLOCK_SAMPLES]; // AUDIO_BLOCK_SAMPLES is 128, from AudioStream.h
#endif #endif
const int length = AUDIO_BLOCK_SAMPLES; // AUDIO_BLOCK_SAMPLES is 128, from AudioStream.h int length = AUDIO_BLOCK_SAMPLES; // AUDIO_BLOCK_SAMPLES is 128, from AudioStream.h
const float fs_Hz = AUDIO_SAMPLE_RATE; // AUDIO_SAMPLE_RATE is 44117.64706 from AudioStream.h float fs_Hz = AUDIO_SAMPLE_RATE; // AUDIO_SAMPLE_RATE is 44117.64706 from AudioStream.h
} audio_block_f32_t; } audio_block_f32_t;
class AudioConnection_F32 class AudioConnection_F32

Loading…
Cancel
Save