diff options
author | makefunstuff <[email protected]> | 2024-07-03 21:56:45 +0200 |
---|---|---|
committer | makefunstuff <[email protected]> | 2024-07-03 21:56:45 +0200 |
commit | 4bbbc55dc8061999048f0c2bdd9d36b412eb2647 (patch) | |
tree | 1644388f69698cae3c10e3dd551810fa2da69791 /src/brr.zig | |
parent | 4c2c4da7842e6214591df43f3fa2a2c75b224a4e (diff) | |
download | tinkerbunk-4bbbc55dc8061999048f0c2bdd9d36b412eb2647.tar.gz |
fixed but no sound
Diffstat (limited to 'src/brr.zig')
-rw-r--r-- | src/brr.zig | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/brr.zig b/src/brr.zig index 3a0c94c..74ee419 100644 --- a/src/brr.zig +++ b/src/brr.zig @@ -12,9 +12,9 @@ pub fn brr(file: []const u8) !void { return; }; - const file_path = file.ptr; - if (c.mpg123_open(handle, file_path) != 0) { - std.log.warn("Filed to open the file: {s}\n", .{file_path}); + const file_path: [*c]const u8 = @ptrCast(file); + if (c.mpg123_open(handle, file_path) != c.MPG123_OK) { + std.log.warn("Failed to open the file: {s}\n", .{file_path}); return; } @@ -23,6 +23,7 @@ pub fn brr(file: []const u8) !void { std.log.warn("Failed to open ALSA device\n", .{}); return; } + var params: ?*c.snd_pcm_hw_params_t = null; _ = c.snd_pcm_hw_params_malloc(¶ms); @@ -37,7 +38,15 @@ pub fn brr(file: []const u8) !void { while (true) { var done: usize = 0; - _ = c.mpg123_read(handle, &buffer[0], buffer.len, &done); + const result = c.mpg123_read(handle, &buffer[0], buffer.len, &done); + switch (result) { + c.MPG123_OK => { + std.log.info("Reading successfule", .{}); + }, + else => { + std.log.err("Decode error {}", .{result}); + }, + } if (done == 0) { _ = c.mpg123_delete(handle); |