Skip to content

Commit

Permalink
update to version 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
svenpaulsen committed Jun 1, 2023
1 parent d5cd42f commit a5c28f6
Show file tree
Hide file tree
Showing 13 changed files with 32 additions and 25 deletions.
4 changes: 2 additions & 2 deletions bin/android-aarch64/libodin.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/android-x86_64/libodin.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/ios-aarch64/libodin.dylib
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/ios-x86_64/libodin.dylib
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/linux-aarch64/libodin.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/linux-x86_64/libodin.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/macos-aarch64/libodin.dylib
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/macos-x86_64/libodin.dylib
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/windows-aarch64/odin.dll
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/windows-aarch64/odin.lib
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/windows-x86_64/odin.dll
Git LFS file not shown
4 changes: 2 additions & 2 deletions bin/windows-x86_64/odin.lib
Git LFS file not shown
9 changes: 8 additions & 1 deletion include/odin.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <stdint.h>
#include <stdlib.h>

#define ODIN_VERSION "1.5.1"
#define ODIN_VERSION "1.5.3"

/**
* Known types of a media stream.
Expand Down Expand Up @@ -755,6 +755,13 @@ OdinReturnCode odin_audio_read_data(OdinMediaStreamHandle stream,
float *out_buffer,
size_t out_buffer_len);

/**
* Resets the specified `OdinMediaStreamHandle` to its initial state, restoring it to its default
* configuration. This operation resets the internal Opus encoder/decoder, ensuring a clean state.
* Additionally, it clears internal buffers, providing a fresh start.
*/
OdinReturnCode odin_audio_reset(OdinMediaStreamHandle stream);

/**
* Retrieves statistics for the specified `OdinMediaStreamHandle`.
*
Expand Down

0 comments on commit a5c28f6

Please sign in to comment.