dieumercimvemba's picture
download
raw
491 Bytes
import * as Token from 'token-types';
import { FourCcToken } from '../common/FourCC.js';
/**
* DSDIFF chunk header
* The data-size encoding is deviating from EA-IFF 85
* Ref: http://www.sonicstudio.com/pdf/dsd/DSDIFF_1.5_Spec.pdf
*/
export const ChunkHeader64 = {
len: 12,
get: (buf, off) => {
return {
// Group-ID
chunkID: FourCcToken.get(buf, off),
// Size
chunkSize: Token.INT64_BE.get(buf, off + 4)
};
}
};

Xet Storage Details

Size:
491 Bytes
·
Xet hash:
5df0e9d9b27604a3f4d033622d2b155875135b90ccd34cdc136e5ccb1b98a23e

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.