소스 검색

REVIEWED: Need to set default buffer size for raw data #1770

This design should probably be changed...
pull/1864/head
raysan5 3 년 전
부모
커밋
e6aa713a37
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      examples/audio/audio_raw_stream.c

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

@ -31,8 +31,10 @@ int main(void)
InitAudioDevice(); // Initialize audio device
SetAudioStreamBufferSizeDefault(4096);
// Init raw audio stream (sample rate: 22050, sample size: 16bit-short, channels: 1-mono)
AudioStream stream = LoadAudioStream(22050, 16, 1);
AudioStream stream = LoadAudioStream(44100, 16, 1);
// Buffer for the single cycle waveform we are synthesizing
short *data = (short *)malloc(sizeof(short)*MAX_SAMPLES);

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