-
-
Notifications
You must be signed in to change notification settings - Fork 44
feat: moved writing to different thread #906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
...udio-api/android/src/main/cpp/audioapi/android/core/utils/ffmpegBackend/FFmpegFileWriter.cpp
Show resolved
Hide resolved
...udio-api/android/src/main/cpp/audioapi/android/core/utils/ffmpegBackend/FFmpegFileWriter.cpp
Show resolved
Hide resolved
|
i think this idea might also be aplied here |
| } | ||
|
|
||
| /// @brief Writes audio data to the currently opened file. | ||
| /// This method should be called only from the audio thread (or audio side-effect thread in the future). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update comment
| fileNamePrefix: 'recording_', | ||
| channelCount: 2, | ||
| format: FileFormat.M4A, | ||
| format: FileFormat.Wav, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intended change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please revert to m4a
| format: FileFormat.Wav, | |
| format: FileFormat.M4A, |
| fileNamePrefix: 'recording_', | ||
| channelCount: 2, | ||
| format: FileFormat.M4A, | ||
| format: FileFormat.Wav, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please revert to m4a
| format: FileFormat.Wav, | |
| format: FileFormat.M4A, |
Closes RNAA-385
Introduced changes
Checklist