소스 검색

Update audio_raw_stream.c (#3624)

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

cancels out each others
pull/3628/head
riadbettole 1 년 전
committed by GitHub
부모
커밋
31d3ed97c7
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -2
      examples/audio/audio_raw_stream.c

+ 1
- 2
examples/audio/audio_raw_stream.c 파일 보기

@ -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;

불러오는 중...
취소
저장