Socket
Socket
Sign inDemoInstall

aac

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aac - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

6

package.json
{
"name": "aac",
"version": "0.1.0",
"version": "0.1.1",
"description": "An AAC decoder for Aurora.js",

@@ -15,3 +15,5 @@ "main": "src/decoder.js",

"browserify": {
"transform": ["browserify-shim"]
"transform": [
"browserify-shim"
]
},

@@ -18,0 +20,0 @@ "browserify-shim": {

@@ -81,2 +81,4 @@ var AV = require('av');

};
});
});
module.exports = ADTSDemuxer;

@@ -106,4 +106,4 @@ /*

t = gain += t;
if (sign) {
s -= 2 * (t * 0x1);
if (!sign) {
s -= 2 * (t & 0x1);
t >>>= 1;

@@ -110,0 +110,0 @@ }

@@ -113,5 +113,2 @@ /*

this.filter_bank = new FilterBank(false, this.config.chanConfig);
this.ics = new ICStream(this.config);
this.cpe = new CPEElement(this.config);
this.cce = new CCEElement(this.config);
};

@@ -149,3 +146,3 @@

case LFE_ELEMENT:
var ics = this.ics;
var ics = new ICStream(this.config);
ics.id = id;

@@ -158,3 +155,3 @@ elements.push(ics);

case CPE_ELEMENT:
var cpe = this.cpe;
var cpe = new CPEElement(this.config);
cpe.id = id;

@@ -167,3 +164,3 @@ elements.push(cpe);

case CCE_ELEMENT:
var cce = this.cce;
var cce = new CCEElement(this.config);
this.cces.push(cce);

@@ -170,0 +167,0 @@ cce.decode(stream, config);

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc