Kaynağa Gözat

Update audio_raw_stream.c (#3624)

AudioInputCallBack has this
    audioFrequency += 1.0f;
    audioFrequency -= 1.0f;

cancels out each others
pull/3628/head
riadbettole 1 yıl önce
işlemeyi yapan: GitHub
ebeveyn
işleme
31d3ed97c7
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 1 ekleme ve 2 silme
  1. +1
    -2
      examples/audio/audio_raw_stream.c

+ 1
- 2
examples/audio/audio_raw_stream.c Dosyayı Görüntüle

@ -38,8 +38,7 @@ float sineIdx = 0.0f;
void AudioInputCallback(void *buffer, unsigned int frames)
{
audioFrequency = frequency + (audioFrequency - frequency)*0.95f;
audioFrequency += 1.0f;
audioFrequency -= 1.0f;
float incr = audioFrequency/44100.0f;
short *d = (short *)buffer;

Yükleniyor…
İptal
Kaydet