diff options
author | tinyalsa <simonwilson@google.com> | 2012-02-14 10:54:41 -0800 |
---|---|---|
committer | tinyalsa <simonwilson@google.com> | 2012-02-14 10:54:41 -0800 |
commit | e85d8058e83053d640a27d5b9c9ac8544bf5e74f (patch) | |
tree | 9e0f732c437cbe6f5fca7251d8a4a6749afc6365 | |
parent | 43625117cf24ac933819a10c2da7681252042d49 (diff) | |
parent | a6dd4abcbf3007600be621bc886182de7bd2a25d (diff) |
Merge pull request #10 from axelcx/tiny-alsa-ti
tinyplay: Use buffer size in bytes instead of frames
-rw-r--r-- | tinyplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ void play_sample(FILE *file, unsigned int card, unsigned int device, unsigned in return; } - size = pcm_get_buffer_size(pcm); + size = pcm_frames_to_bytes(pcm, pcm_get_buffer_size(pcm)); buffer = malloc(size); if (!buffer) { fprintf(stderr, "Unable to allocate %d bytes\n", size); |