-
Notifications
You must be signed in to change notification settings - Fork 5k
ruby : Make context accept initial parameters, API to retrieve a segment and more #2749
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
Conversation
| } | ||
| } else { | ||
| for (uint64_t i = 0; i < n; i++) { | ||
| pcmf32[i] = float(pcm16[2*i] + pcm16[2*i + 1])/65536.0f; |
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.
This can overflow int16_t
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.
Thanks for reviewing! I fixed it. I appreciate if you tell me better way because I'm a newbie to C++.
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.
This is OK.
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.
Thanks!
Hello,
This pull request
Whisper::Context.newaccept initial parameters,Whisper::Context,Thanks.