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

@disoul/mp4box

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@disoul/mp4box - npm Package Compare versions

Comparing version 0.3.16-fix.17 to 0.3.16-fix.18

2

package.json
{
"name": "@disoul/mp4box",
"version": "0.3.16-fix.17",
"version": "0.3.16-fix.18",
"description": "JavaScript version of GPAC's MP4Box tool",

@@ -5,0 +5,0 @@ "keywords": [

@@ -189,2 +189,8 @@ ISOFile.prototype.add = BoxParser.Box.prototype.add;

ISOFile.createSingleSampleMoof = function(sample) {
var sample_flags = 0
if (sample.is_sync)
sample_flags = (1 << 25); // sample_depends_on_none (I picture)
else
sample_flags = (1 << 16); // non-sync
var moof = new BoxParser.moofBox();

@@ -205,3 +211,3 @@ moof.add("mfhd").set("sequence_number", this.nextMoofNumber);

.set("sample_size",[sample.size])
.set("sample_flags",[0])
.set("sample_flags",[sample_flags])
.set("sample_composition_time_offset", [sample.cts - sample.dts]);

@@ -208,0 +214,0 @@ return moof;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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