Skip to content

Instantly share code, notes, and snippets.

View JasonLG1979's full-sized avatar
๐Ÿ˜œ
Never Really Busy

Jason Gray JasonLG1979

๐Ÿ˜œ
Never Really Busy
View GitHub Profile
@JasonLG1979
JasonLG1979 / resampler.rs
Last active June 16, 2023 09:58
Dual threaded Stereo Linear or Windowed Sinc Resampler from 44.1kHz to 48kHz, 88.2kHz or 96kHz with no dependencies outside std.
// This is free and unencumbered software released into the public domain.
//
// Anyone is free to copy, modify, publish, use, compile, sell, or
// distribute this software, either in source code form or as a compiled
// binary, for any purpose, commercial or non-commercial, and by any
// means.
//
// In jurisdictions that recognize copyright laws, the author or authors
// of this software dedicate any and all copyright interest in the
// software to the public domain. We make this dedication for the benefit
@JasonLG1979
JasonLG1979 / fir_low_pass_filter.rs
Last active June 10, 2023 09:36
Super basic FIR low pass filter with no dependencies outside std.
// This is free and unencumbered software released into the public domain.
//
// Anyone is free to copy, modify, publish, use, compile, sell, or
// distribute this software, either in source code form or as a compiled
// binary, for any purpose, commercial or non-commercial, and by any
// means.
//
// In jurisdictions that recognize copyright laws, the author or authors
// of this software dedicate any and all copyright interest in the
// software to the public domain. We make this dedication for the benefit