diff --git a/README.md b/README.md index 5dc85bef..10244a4d 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ mal_uint32 on_send_frames_to_device(mal_device* pDevice, mal_uint32 frameCount, if (pWav == NULL) { return 0; } - + return (mal_uint32)drwav_read_f32(pWav, frameCount * pDevice->channels, (float*)pSamples) / pDevice->channels; } @@ -58,19 +58,19 @@ int main(int argc, char** argv) printf("Failed to initialize context."); return -3; } - + // In this example we use the default playback device with a default buffer size and period count. - mal_device_config config; - config.format = mal_format_f32; - config.channels = wav.channels; - config.sampleRate = wav.sampleRate; - config.bufferSizeInFrames = 0; // Use default. - config.periods = 0; // Use default. - config.onRecvCallback = NULL; // Not used for playback. - config.onSendCallback = on_send_frames_to_device; - config.onStopCallback = NULL; + mal_device_config config; + config.format = mal_format_f32; + config.channels = wav.channels; + config.sampleRate = wav.sampleRate; + config.bufferSizeInFrames = 0; // Use default. + config.periods = 0; // Use default. + config.onRecvCallback = NULL; // Not used for playback. + config.onSendCallback = on_send_frames_to_device; + config.onStopCallback = NULL; config.onLogCallback = NULL; - + mal_device device; if (mal_device_init(&context, mal_device_type_playback, NULL, &config, &wav, &device) != MAL_SUCCESS) { printf("Failed to open playback device."); @@ -79,14 +79,14 @@ int main(int argc, char** argv) return -4; } mal_device_start(&device); - + printf("Press Enter to quit..."); getchar(); - + mal_device_uninit(&device); mal_context_uninit(&context); drwav_uninit(&wav); - + return 0; } ``` \ No newline at end of file