Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soundtouchjs/monorepo",
"version": "1.0.3",
"version": "1.0.4",
"private": true,
"description": "SoundTouchJS monorepo",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/audio-worklet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soundtouchjs/audio-worklet",
"version": "1.0.3",
"version": "1.0.4",
"description": "AudioWorklet implementation of the SoundTouchJS library",
"license": "LGPL-2.1",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soundtouchjs/core",
"version": "1.0.3",
"version": "1.0.4",
"description": "An audio processing library for manipulating Web Audio Contexts",
"license": "LGPL-2.1",
"type": "module",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/src/AbstractFifoSamplePipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,21 +56,21 @@ export default class AbstractFifoSamplePipe {
}

/**
* Gets the input buffer
* Gets the input buffer.
*/
get inputBuffer(): FifoSampleBuffer | null {
return this._inputBuffer;
}

/**
* Sets the input buffer
* Sets the input buffer.
*/
set inputBuffer(inputBuffer: FifoSampleBuffer | null) {
this._inputBuffer = inputBuffer;
}

/**
* Gets the output buffer
* Gets the output buffer.
*/
get outputBuffer(): FifoSampleBuffer | null {
return this._outputBuffer;
Expand Down