• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

benrr101 / node-taglib-sharp / 48393127

29 Oct 2023 04:39AM UTC coverage: 92.535% (-1.4%) from 93.934%
48393127

push

appveyor

benrr101
Merge branch 'release/v5.2.0'

3244 of 4129 branches covered (0.0%)

Branch coverage included in aggregate %.

2177 of 2177 new or added lines in 61 files covered. (100.0%)

26728 of 28261 relevant lines covered (94.58%)

423.2 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

33.33
/src/mpeg4/boxes/isoSampleTableBox.ts
1
import Mpeg4Box from "./mpeg4Box";
1✔
2
import Mpeg4BoxHeader from "../mpeg4BoxHeader";
3
import {ByteVector} from "../../byteVector";
4

5
/**
6
 * This class extends {@link Mpeg4Box} to provide an implementation of a ISO/IEC 14496-12 SampleTableBox.
7
 */
8
export default class IsoSampleTableBox extends Mpeg4Box {
1✔
9
    /**
10
     * Private constructor to force construction via static functions.
11
     */
12
    private constructor() {
13
        super();
×
14
    }
15

16
    /**
17
     * Constructs and initializes a new instance of {@link IsoSampleTableBox} with a provided header and
18
     * handler by reading the contents from a specified file.
19
     * @param header A {@link Mpeg4BoxHeader} object containing the header to use for the new instance.
20
     * @param handlerType Type of the handler box object containing the handler that applies to the
21
     *     new instance, or undefined if no handler applies.
22
     * @returns A new instance of {@link IsoSampleTableBox}
23
     */
24
    public static fromHeader(header: Mpeg4BoxHeader, handlerType: ByteVector): IsoSampleTableBox {
25
        const instance = new IsoSampleTableBox();
×
26
        instance.initializeFromHeader(header, handlerType);
×
27

28
        return instance;
×
29
    }
30
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc