New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

imaadpcm

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imaadpcm - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "imaadpcm",
"version": "1.0.0",
"version": "1.0.1",
"description": "JavaScript IMA ADPCM codec.",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/rochars/imaadpcm",

@@ -26,9 +26,9 @@ # imaadpcm

// Encoding a full file
let adpcm_samples = imaadpcm.encode(16BitSamples);
let adpcm_samples = imaadpcm.encode(samples);
// Decoding a full file (256 block align is assumed by default)
let samples = imaadpcm.decode(4BitSamples);
let samples = imaadpcm.decode(adpcm_samples);
// Decoding a full file with a different block align (1024)
samples = imaadpcm.decode(4BitSamples, 1024);
samples = imaadpcm.decode(adpcm_samples, 1024);
```

@@ -35,0 +35,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc