Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
88badc6
- Start The Decoder with DataConverter
Logickin-Lambda Aug 25, 2025
9df0f3c
- Ported DataConverter
Logickin-Lambda Aug 25, 2025
cb48c06
- Daily Commit
Logickin-Lambda Aug 26, 2025
f5d1880
- Completed the C part of the zaudio
Logickin-Lambda Aug 27, 2025
6b1ef44
- All Required Coding is Done
Logickin-Lambda Aug 27, 2025
1a2ea91
- Cleared The Compile Time Errors, but...
Logickin-Lambda Aug 28, 2025
c54c2ec
- Successfully created Decoder and its Config, but...
Logickin-Lambda Aug 28, 2025
d08ac9b
- bug fixes
Logickin-Lambda Aug 29, 2025
b102c8a
- Updated decoder function involving channel_map
Logickin-Lambda Sep 1, 2025
38098b0
Merge branch 'zig-gamedev:main' into Resampler_Decoder_Prototype
Logickin-Lambda Sep 1, 2025
8cf3eca
- Added Missing Functions For DataConverter
Logickin-Lambda Sep 2, 2025
0d6d2f7
- Updated README With The New Type
Logickin-Lambda Sep 2, 2025
7652850
- Updated Naming and Type Inconsistency
Logickin-Lambda Sep 8, 2025
0fe8f17
- Remove bad comments
Logickin-Lambda Sep 14, 2025
61d036b
Merge branch 'main' of https://github.com/Logickin-Lambda/zaudio
Logickin-Lambda Sep 20, 2025
484f599
- Encoder! It has begun!
Logickin-Lambda Sep 20, 2025
a875fe5
- Completed test for Encoder and Data Converter
Logickin-Lambda Sep 22, 2025
f90774c
- Decoder has also been tested!
Logickin-Lambda Sep 22, 2025
80a8738
- Added getUserData for Decoder
Logickin-Lambda Sep 22, 2025
bc4e474
- Commit for code for testing in linux
Logickin-Lambda Sep 23, 2025
1f91bcf
- Cleared the code for the testing type
Logickin-Lambda Sep 23, 2025
1e8cec7
- Corrected Errors Reported By the Copilot
Logickin-Lambda Sep 27, 2025
0431551
- Added sentinel value for file path in encoder
Logickin-Lambda Oct 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
- Corrected Errors Reported By the Copilot
  • Loading branch information
Logickin-Lambda committed Sep 27, 2025
commit 1e8cec70d64a52de68a5d0bfa1aa7e0f7d9bcb2e
2 changes: 1 addition & 1 deletion src/zaudio.c
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ ma_result zaudioEncoderCreateFromFile(
){
assert(file_path != NULL && config != NULL && out_handle != NULL);
*out_handle = s_mem.onMalloc(sizeof(ma_encoder), s_mem.pUserData);
ma_result res = ma_encoder_init_file(file_path, config, out_handle);
ma_result res = ma_encoder_init_file(file_path, config, *out_handle);
if (res != MA_SUCCESS){
s_mem.onFree(*out_handle, s_mem.pUserData);
*out_handle = NULL;
Expand Down
2 changes: 1 addition & 1 deletion src/zaudio.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ pub const Decoder = opaque {
};

pub const getUserData = zaudioDecoderGetUserData;
extern fn zaudioDecoderGetUserData(device: *const Encoder) ?*anyopaque;
extern fn zaudioDecoderGetUserData(device: *const Decoder) ?*anyopaque;

pub const Config = extern struct {
format: Format,
Expand Down
Loading