@svta/cml-iso-bmff 1.0.0-alpha.6 → 1.0.0-alpha.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,4 +1,7 @@
1
+ import { ValueOf } from "@svta/cml-utils";
2
+
1
3
  //#region src/boxes/AdditionalMetadataContainerBox.d.ts
4
+
2
5
  /**
3
6
  * Child boxes of Additional Metadata Container Box
4
7
  *
@@ -1659,54 +1662,6 @@ type WebVttSourceLabelBox = {
1659
1662
  sourceLabel: string;
1660
1663
  };
1661
1664
  //#endregion
1662
- //#region src/fields/DATA.d.ts
1663
- /**
1664
- * The data field type
1665
- *
1666
- * @public
1667
- */
1668
- declare const DATA = "data";
1669
- //#endregion
1670
- //#region src/fields/INT.d.ts
1671
- /**
1672
- * The integer field type
1673
- *
1674
- * @public
1675
- */
1676
- declare const INT = "int";
1677
- //#endregion
1678
- //#region src/fields/STRING.d.ts
1679
- /**
1680
- * The string field type
1681
- *
1682
- * @public
1683
- */
1684
- declare const STRING = "string";
1685
- //#endregion
1686
- //#region src/fields/TEMPLATE.d.ts
1687
- /**
1688
- * The template field type
1689
- *
1690
- * @public
1691
- */
1692
- declare const TEMPLATE = "template";
1693
- //#endregion
1694
- //#region src/fields/UINT.d.ts
1695
- /**
1696
- * The unsigned integer field type
1697
- *
1698
- * @public
1699
- */
1700
- declare const UINT = "uint";
1701
- //#endregion
1702
- //#region src/fields/UTF8.d.ts
1703
- /**
1704
- * The UTF8 field type
1705
- *
1706
- * @public
1707
- */
1708
- declare const UTF8 = "utf8";
1709
- //#endregion
1710
1665
  //#region src/IsoBoxMap.d.ts
1711
1666
  /**
1712
1667
  * Comprehensive mapping from box type strings to their corresponding TypeScript interfaces
@@ -1889,6 +1844,62 @@ type IsoBoxReadViewConfig = {
1889
1844
  readers?: IsoBoxReaderMap;
1890
1845
  };
1891
1846
  //#endregion
1847
+ //#region src/IsoBoxFields.d.ts
1848
+ /**
1849
+ * The UTF8 field type
1850
+ *
1851
+ * @public
1852
+ */
1853
+ declare const UTF8: "utf8";
1854
+ /**
1855
+ * The unsigned integer field type
1856
+ *
1857
+ * @public
1858
+ */
1859
+ declare const UINT: "uint";
1860
+ /**
1861
+ * The template field type
1862
+ *
1863
+ * @public
1864
+ */
1865
+ declare const TEMPLATE: "template";
1866
+ /**
1867
+ * The string field type
1868
+ *
1869
+ * @public
1870
+ */
1871
+ declare const STRING: "string";
1872
+ /**
1873
+ * The integer field type
1874
+ *
1875
+ * @public
1876
+ */
1877
+ declare const INT: "int";
1878
+ /**
1879
+ * The data field type
1880
+ *
1881
+ * @public
1882
+ */
1883
+ declare const DATA: "data";
1884
+ /**
1885
+ * The ISO BMFF field types
1886
+ *
1887
+ * @enum
1888
+ * @public
1889
+ */
1890
+ declare const IsoBoxFields: {
1891
+ DATA: typeof DATA;
1892
+ INT: typeof INT;
1893
+ STRING: typeof STRING;
1894
+ TEMPLATE: typeof TEMPLATE;
1895
+ UINT: typeof UINT;
1896
+ UTF8: typeof UTF8;
1897
+ };
1898
+ /**
1899
+ * @public
1900
+ */
1901
+ type IsoBoxFields = ValueOf<typeof IsoBoxFields>;
1902
+ //#endregion
1892
1903
  //#region src/IsoFieldTypeMap.d.ts
1893
1904
  /**
1894
1905
  * IsoFieldTypeMap is a map of ISO BMFF field types to their corresponding JavaScript types.
@@ -1896,13 +1907,12 @@ type IsoBoxReadViewConfig = {
1896
1907
  * @public
1897
1908
  */
1898
1909
  type IsoFieldTypeMap = {
1899
- uint: number;
1900
- int: number;
1901
- template: number;
1902
- string: string;
1903
- data: Uint8Array<ArrayBuffer>;
1904
- utf8: string;
1905
- utf8string: string;
1910
+ [IsoBoxFields.UINT]: number;
1911
+ [IsoBoxFields.INT]: number;
1912
+ [IsoBoxFields.TEMPLATE]: number;
1913
+ [IsoBoxFields.STRING]: string;
1914
+ [IsoBoxFields.DATA]: Uint8Array<ArrayBuffer>;
1915
+ [IsoBoxFields.UTF8]: string;
1906
1916
  };
1907
1917
  //#endregion
1908
1918
  //#region src/ParsedBox.d.ts
@@ -2105,7 +2115,7 @@ type IsoBoxStreamable = IsoBox | ParsedIsoBox | ParsedBox<unknown> | ArrayBuffer
2105
2115
  *
2106
2116
  * @public
2107
2117
  */
2108
- type IsoBoxWriterMap = Partial<{ [P in IsoBox["type"]]: IsoBoxWriter<Extract<IsoBox, Record<"type", P>>> }>;
2118
+ type IsoBoxWriterMap = Record<string, IsoBoxWriter<any>>;
2109
2119
  //#endregion
2110
2120
  //#region src/IsoBoxWriteViewConfig.d.ts
2111
2121
  /**
@@ -2128,6 +2138,107 @@ type IsoBoxWriteViewConfig = {
2128
2138
  */
2129
2139
  type IsoBoxWriter<B> = (box: B, config: IsoBoxWriteViewConfig) => ArrayBufferView;
2130
2140
  //#endregion
2141
+ //#region src/IsoTypedParsedBox.d.ts
2142
+ /**
2143
+ * Typed Parsed Box Type
2144
+ *
2145
+ * @public
2146
+ */
2147
+ type IsoTypedParsedBox<T$1 extends keyof IsoBoxMap> = ParsedBox<IsoBoxMap[T$1]>;
2148
+ //#endregion
2149
+ //#region src/TraverseIsoBoxesConfig.d.ts
2150
+ /**
2151
+ * Configuration options for traversing ISO boxes.
2152
+ *
2153
+ * @public
2154
+ */
2155
+ type TraverseIsoBoxesConfig = {
2156
+ /**
2157
+ * Whether to traverse the boxes depth-first or breadth-first.
2158
+ *
2159
+ * @defaultValue true
2160
+ */
2161
+ depthFirst?: boolean;
2162
+ /**
2163
+ * The maximum depth to traverse. A value of 0 will only traverse the root boxes.
2164
+ *
2165
+ * @defaultValue Infinity
2166
+ */
2167
+ maxDepth?: number;
2168
+ };
2169
+ //#endregion
2170
+ //#region src/createIsoBoxReadableStream.d.ts
2171
+ /**
2172
+ * Creates a ReadableStream of ISO BMFF boxes as Uint8Arrays.
2173
+ *
2174
+ * @param boxes - The boxes to stream.
2175
+ * @param config - The configuration for the stream.
2176
+ *
2177
+ * @returns A new IsoBoxReadableStream.
2178
+ *
2179
+ * @example
2180
+ * {@includeCode ../test/createIsoBoxReadableStream.test.ts#example}
2181
+ *
2182
+ * @public
2183
+ */
2184
+ declare function createIsoBoxReadableStream(boxes: Iterable<IsoBoxStreamable>, config?: IsoBoxWriteViewConfig): ReadableStream<Uint8Array>;
2185
+ //#endregion
2186
+ //#region src/filterIsoBoxes.d.ts
2187
+ /**
2188
+ * Filters boxes in the tree that satisfy the provided testing function.
2189
+ *
2190
+ * This function traverses the entire box structure (including nested boxes)
2191
+ * and returns all boxes for which the callback returns true.
2192
+ *
2193
+ * @param boxes - The boxes to search through
2194
+ * @param callback - A function that accepts a box and returns true if it matches
2195
+ * @param config - Configuration options for traversal
2196
+ *
2197
+ * @returns An array of boxes that satisfy the callback
2198
+ *
2199
+ * @example
2200
+ * {@includeCode ../test/filterIsoBoxes.test.ts#example}
2201
+ *
2202
+ * @public
2203
+ */
2204
+ declare function filterIsoBoxes<T$1>(boxes: Iterable<T$1>, callback: (box: T$1) => boolean, config?: TraverseIsoBoxesConfig): T$1[];
2205
+ //#endregion
2206
+ //#region src/findIsoBox.d.ts
2207
+ /**
2208
+ * Finds the first box in the tree that satisfies the provided testing function.
2209
+ *
2210
+ * This function traverses the entire box structure (including nested boxes)
2211
+ * and returns the first box for which the callback returns true.
2212
+ *
2213
+ * @param boxes - The boxes to search through
2214
+ * @param callback - A function that accepts a box and returns true if it matches
2215
+ * @param config - Configuration options for traversal
2216
+ *
2217
+ * @returns The first box that satisfies the callback, or null if none is found
2218
+ *
2219
+ * @example
2220
+ * {@includeCode ../test/findIsoBox.test.ts#example}
2221
+ *
2222
+ * @public
2223
+ */
2224
+ declare function findIsoBox<T$1>(boxes: Iterable<T$1>, callback: (box: T$1) => boolean, config?: TraverseIsoBoxesConfig): T$1 | null;
2225
+ //#endregion
2226
+ //#region src/IsoBoxReadableStream.d.ts
2227
+ /**
2228
+ * A readable stream of ISO BMFF boxes as Uint8Arrays.
2229
+ *
2230
+ * @public
2231
+ */
2232
+ declare class IsoBoxReadableStream extends ReadableStream<Uint8Array> {
2233
+ /**
2234
+ * Constructs a new IsoBoxReadableStream.
2235
+ *
2236
+ * @param boxes - The boxes to stream.
2237
+ * @param config - The configuration for the stream.
2238
+ */
2239
+ constructor(boxes: Iterable<IsoBoxStreamable>, config?: IsoBoxWriteViewConfig);
2240
+ }
2241
+ //#endregion
2131
2242
  //#region src/IsoBoxWriteView.d.ts
2132
2243
  /**
2133
2244
  * A view for writing ISO BMFF data.
@@ -2231,107 +2342,6 @@ declare class IsoBoxWriteView {
2231
2342
  writeFullBox(version: number, flags: number): void;
2232
2343
  }
2233
2344
  //#endregion
2234
- //#region src/IsoTypedParsedBox.d.ts
2235
- /**
2236
- * Typed Parsed Box Type
2237
- *
2238
- * @public
2239
- */
2240
- type IsoTypedParsedBox<T$1 extends keyof IsoBoxMap> = ParsedBox<IsoBoxMap[T$1]>;
2241
- //#endregion
2242
- //#region src/TraverseIsoBoxesConfig.d.ts
2243
- /**
2244
- * Configuration options for traversing ISO boxes.
2245
- *
2246
- * @public
2247
- */
2248
- type TraverseIsoBoxesConfig = {
2249
- /**
2250
- * Whether to traverse the boxes depth-first or breadth-first.
2251
- *
2252
- * @defaultValue true
2253
- */
2254
- depthFirst?: boolean;
2255
- /**
2256
- * The maximum depth to traverse. A value of 0 will only traverse the root boxes.
2257
- *
2258
- * @defaultValue Infinity
2259
- */
2260
- maxDepth?: number;
2261
- };
2262
- //#endregion
2263
- //#region src/createIsoBoxReadableStream.d.ts
2264
- /**
2265
- * Creates a ReadableStream of ISO BMFF boxes as Uint8Arrays.
2266
- *
2267
- * @param boxes - The boxes to stream.
2268
- * @param config - The configuration for the stream.
2269
- *
2270
- * @returns A new IsoBoxReadableStream.
2271
- *
2272
- * @example
2273
- * {@includeCode ../test/createIsoBoxReadableStream.test.ts#example}
2274
- *
2275
- * @public
2276
- */
2277
- declare function createIsoBoxReadableStream(boxes: Iterable<IsoBoxStreamable>, config?: IsoBoxWriteViewConfig): ReadableStream<Uint8Array>;
2278
- //#endregion
2279
- //#region src/filterIsoBoxes.d.ts
2280
- /**
2281
- * Filters boxes in the tree that satisfy the provided testing function.
2282
- *
2283
- * This function traverses the entire box structure (including nested boxes)
2284
- * and returns all boxes for which the callback returns true.
2285
- *
2286
- * @param boxes - The boxes to search through
2287
- * @param callback - A function that accepts a box and returns true if it matches
2288
- * @param config - Configuration options for traversal
2289
- *
2290
- * @returns An array of boxes that satisfy the callback
2291
- *
2292
- * @example
2293
- * {@includeCode ../test/filterIsoBoxes.test.ts#example}
2294
- *
2295
- * @public
2296
- */
2297
- declare function filterIsoBoxes<T$1>(boxes: Iterable<T$1>, callback: (box: T$1) => boolean, config?: TraverseIsoBoxesConfig): T$1[];
2298
- //#endregion
2299
- //#region src/findIsoBox.d.ts
2300
- /**
2301
- * Finds the first box in the tree that satisfies the provided testing function.
2302
- *
2303
- * This function traverses the entire box structure (including nested boxes)
2304
- * and returns the first box for which the callback returns true.
2305
- *
2306
- * @param boxes - The boxes to search through
2307
- * @param callback - A function that accepts a box and returns true if it matches
2308
- * @param config - Configuration options for traversal
2309
- *
2310
- * @returns The first box that satisfies the callback, or null if none is found
2311
- *
2312
- * @example
2313
- * {@includeCode ../test/findIsoBox.test.ts#example}
2314
- *
2315
- * @public
2316
- */
2317
- declare function findIsoBox<T$1>(boxes: Iterable<T$1>, callback: (box: T$1) => boolean, config?: TraverseIsoBoxesConfig): T$1 | null;
2318
- //#endregion
2319
- //#region src/IsoBoxReadableStream.d.ts
2320
- /**
2321
- * A readable stream of ISO BMFF boxes as Uint8Arrays.
2322
- *
2323
- * @public
2324
- */
2325
- declare class IsoBoxReadableStream extends ReadableStream<Uint8Array> {
2326
- /**
2327
- * Constructs a new IsoBoxReadableStream.
2328
- *
2329
- * @param boxes - The boxes to stream.
2330
- * @param config - The configuration for the stream.
2331
- */
2332
- constructor(boxes: Iterable<IsoBoxStreamable>, config?: IsoBoxWriteViewConfig);
2333
- }
2334
- //#endregion
2335
2345
  //#region src/readIsoBoxes.d.ts
2336
2346
  /**
2337
2347
  * Reads ISO boxes from a data source.
@@ -2401,14 +2411,14 @@ declare function writeIsoBoxes(boxes: Iterable<IsoBoxStreamable>, config?: IsoBo
2401
2411
  //#endregion
2402
2412
  //#region src/readers/createAudioSampleEntryReader.d.ts
2403
2413
  /**
2404
- * Creates a reader function for AudioSampleEntryBox with a custom type.
2414
+ * Creates a reader function for `AudioSampleEntryBox` with a custom type.
2405
2415
  *
2406
2416
  * This utility allows reading audio sample entry boxes with types that
2407
- * aren't in the standard AudioSampleEntryType union (e.g., 'mp4a', 'enca').
2417
+ * aren't in the standard `AudioSampleEntryType` union (e.g., `'mp4a'`, `'enca'`).
2408
2418
  *
2409
2419
  * @param type - The 4-character box type
2410
2420
  *
2411
- * @returns A reader function that can be passed to readIsoBoxes
2421
+ * @returns A reader function that can be passed to `readIsoBoxes`
2412
2422
  *
2413
2423
  * @example
2414
2424
  * ```ts
@@ -2426,14 +2436,14 @@ declare function createAudioSampleEntryReader<T$1 extends IsoBoxType>(type: T$1)
2426
2436
  //#endregion
2427
2437
  //#region src/readers/createVisualSampleEntryReader.d.ts
2428
2438
  /**
2429
- * Creates a reader function for VisualSampleEntryBox with a custom type.
2439
+ * Creates a reader function for `VisualSampleEntryBox` with a custom type.
2430
2440
  *
2431
2441
  * This utility allows reading visual sample entry boxes with types that
2432
- * aren't in the standard VisualSampleEntryType union (e.g., 'avc1', 'hvc1').
2442
+ * aren't in the standard `VisualSampleEntryType` union (e.g., `'avc1'`, `'hvc1'`).
2433
2443
  *
2434
2444
  * @param type - The 4-character box type
2435
2445
  *
2436
- * @returns A reader function that can be passed to readIsoBoxes
2446
+ * @returns A reader function that can be passed to `readIsoBoxes`
2437
2447
  *
2438
2448
  * @example
2439
2449
  * ```ts
@@ -2451,11 +2461,11 @@ declare function createVisualSampleEntryReader<T$1 extends IsoBoxType>(type: T$1
2451
2461
  //#endregion
2452
2462
  //#region src/readers/readArdi.d.ts
2453
2463
  /**
2454
- * Parse a AudioRenderingIndicationBox from an IsoView
2464
+ * Parse a `AudioRenderingIndicationBox` from an `IsoBoxReadView`.
2455
2465
  *
2456
- * @param view - The IsoView to read data from
2466
+ * @param view - The `IsoBoxReadView` to read data from
2457
2467
  *
2458
- * @returns A parsed AudioRenderingIndicationBox
2468
+ * @returns A parsed `AudioRenderingIndicationBox`
2459
2469
  *
2460
2470
  * @public
2461
2471
  */
@@ -2463,12 +2473,12 @@ declare function readArdi(view: IsoBoxReadView): AudioRenderingIndicationBox;
2463
2473
  //#endregion
2464
2474
  //#region src/readers/readAudioSampleEntryBox.d.ts
2465
2475
  /**
2466
- * Parse a AudioSampleEntryBox from an IsoView
2476
+ * Parse a `AudioSampleEntryBox` from an `IsoBoxReadView`.
2467
2477
  *
2468
- * @param type - The type of AudioSampleEntryBox to read
2469
- * @param view - The IsoView to read data from
2478
+ * @param type - The type of `AudioSampleEntryBox` to read
2479
+ * @param view - The `IsoBoxReadView` to read data from
2470
2480
  *
2471
- * @returns A parsed AudioSampleEntryBox
2481
+ * @returns A parsed `AudioSampleEntryBox`
2472
2482
  *
2473
2483
  * @public
2474
2484
  */
@@ -2476,11 +2486,11 @@ declare function readAudioSampleEntryBox<T$1 extends IsoBoxType>(type: T$1, view
2476
2486
  //#endregion
2477
2487
  //#region src/readers/readAvc1.d.ts
2478
2488
  /**
2479
- * Parse a VisualSampleEntryBox from an IsoView
2489
+ * Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
2480
2490
  *
2481
- * @param view - The IsoView to read data from
2491
+ * @param view - The `IsoBoxReadView` to read data from
2482
2492
  *
2483
- * @returns A parsed VisualSampleEntryBox
2493
+ * @returns A parsed `VisualSampleEntryBox`
2484
2494
  *
2485
2495
  * @public
2486
2496
  */
@@ -2488,11 +2498,11 @@ declare function readAvc1(view: IsoBoxReadView): VisualSampleEntryBox<"avc1">;
2488
2498
  //#endregion
2489
2499
  //#region src/readers/readAvc2.d.ts
2490
2500
  /**
2491
- * Parse a VisualSampleEntryBox from an IsoView
2501
+ * Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
2492
2502
  *
2493
- * @param view - The IsoView to read data from
2503
+ * @param view - The `IsoBoxReadView` to read data from
2494
2504
  *
2495
- * @returns A parsed VisualSampleEntryBox
2505
+ * @returns A parsed `VisualSampleEntryBox`
2496
2506
  *
2497
2507
  * @public
2498
2508
  */
@@ -2500,11 +2510,11 @@ declare function readAvc2(view: IsoBoxReadView): VisualSampleEntryBox<"avc2">;
2500
2510
  //#endregion
2501
2511
  //#region src/readers/readAvc3.d.ts
2502
2512
  /**
2503
- * Parse a VisualSampleEntryBox from an IsoView
2513
+ * Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
2504
2514
  *
2505
- * @param view - The IsoView to read data from
2515
+ * @param view - The `IsoBoxReadView` to read data from
2506
2516
  *
2507
- * @returns A parsed VisualSampleEntryBox
2517
+ * @returns A parsed `VisualSampleEntryBox`
2508
2518
  *
2509
2519
  * @public
2510
2520
  */
@@ -2512,11 +2522,11 @@ declare function readAvc3(view: IsoBoxReadView): VisualSampleEntryBox<"avc3">;
2512
2522
  //#endregion
2513
2523
  //#region src/readers/readAvc4.d.ts
2514
2524
  /**
2515
- * Parse a VisualSampleEntryBox from an IsoView
2525
+ * Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
2516
2526
  *
2517
- * @param view - The IsoView to read data from
2527
+ * @param view - The `IsoBoxReadView` to read data from
2518
2528
  *
2519
- * @returns A parsed VisualSampleEntryBox
2529
+ * @returns A parsed `VisualSampleEntryBox`
2520
2530
  *
2521
2531
  * @public
2522
2532
  */
@@ -2524,11 +2534,11 @@ declare function readAvc4(view: IsoBoxReadView): VisualSampleEntryBox<"avc4">;
2524
2534
  //#endregion
2525
2535
  //#region src/readers/readCtts.d.ts
2526
2536
  /**
2527
- * Parse a CompositionTimeToSampleBox from an IsoView
2537
+ * Parse a `CompositionTimeToSampleBox` from an `IsoBoxReadView`.
2528
2538
  *
2529
- * @param view - The IsoView to read data from
2539
+ * @param view - The `IsoBoxReadView` to read data from
2530
2540
  *
2531
- * @returns A parsed CompositionTimeToSampleBox
2541
+ * @returns A parsed `CompositionTimeToSampleBox`
2532
2542
  *
2533
2543
  * @public
2534
2544
  */
@@ -2536,11 +2546,11 @@ declare function readCtts(view: IsoBoxReadView): CompositionTimeToSampleBox;
2536
2546
  //#endregion
2537
2547
  //#region src/readers/readDref.d.ts
2538
2548
  /**
2539
- * Parse a DataReferenceBox from an IsoView
2549
+ * Parse a `DataReferenceBox` from an `IsoBoxReadView`.
2540
2550
  *
2541
- * @param view - The IsoView to read data from
2551
+ * @param view - The `IsoBoxReadView` to read data from
2542
2552
  *
2543
- * @returns A parsed DataReferenceBox
2553
+ * @returns A parsed `DataReferenceBox`
2544
2554
  *
2545
2555
  * @public
2546
2556
  */
@@ -2548,11 +2558,11 @@ declare function readDref(view: IsoBoxReadView): DataReferenceBox;
2548
2558
  //#endregion
2549
2559
  //#region src/readers/readElng.d.ts
2550
2560
  /**
2551
- * Parse a ExtendedLanguageBox from an IsoView
2561
+ * Parse a `ExtendedLanguageBox` from an `IsoBoxReadView`.
2552
2562
  *
2553
- * @param view - The IsoView to read data from
2563
+ * @param view - The `IsoBoxReadView` to read data from
2554
2564
  *
2555
- * @returns A parsed ExtendedLanguageBox
2565
+ * @returns A parsed `ExtendedLanguageBox`
2556
2566
  *
2557
2567
  * @public
2558
2568
  */
@@ -2560,11 +2570,11 @@ declare function readElng(view: IsoBoxReadView): ExtendedLanguageBox;
2560
2570
  //#endregion
2561
2571
  //#region src/readers/readElst.d.ts
2562
2572
  /**
2563
- * Parse a Box from an IsoView
2573
+ * Parse a `EditListBox` from an `IsoBoxReadView`.
2564
2574
  *
2565
- * @param view - The IsoView to read data from
2575
+ * @param view - The `IsoBoxReadView` to read data from
2566
2576
  *
2567
- * @returns A parsed Box
2577
+ * @returns A parsed `EditListBox`
2568
2578
  *
2569
2579
  * @public
2570
2580
  */
@@ -2572,11 +2582,11 @@ declare function readElst(view: IsoBoxReadView): EditListBox;
2572
2582
  //#endregion
2573
2583
  //#region src/readers/readEmsg.d.ts
2574
2584
  /**
2575
- * Parse an EventMessageBox from an IsoView
2585
+ * Parse a `EventMessageBox` from an `IsoBoxReadView`.
2576
2586
  *
2577
- * @param view - The IsoView to read data from
2587
+ * @param view - The `IsoBoxReadView` to read data from
2578
2588
  *
2579
- * @returns A parsed EventMessageBox
2589
+ * @returns A parsed `EventMessageBox`
2580
2590
  *
2581
2591
  * @public
2582
2592
  */
@@ -2584,11 +2594,11 @@ declare function readEmsg(view: IsoBoxReadView): EventMessageBox;
2584
2594
  //#endregion
2585
2595
  //#region src/readers/readEnca.d.ts
2586
2596
  /**
2587
- * Parse an AudioSampleEntry from an IsoView
2597
+ * Parse an `AudioSampleEntryBox` from an `IsoBoxReadView`.
2588
2598
  *
2589
- * @param view - The IsoView to read data from
2599
+ * @param view - The `IsoBoxReadView` to read data from
2590
2600
  *
2591
- * @returns A parsed AudioSampleEntry
2601
+ * @returns A parsed `AudioSampleEntryBox`
2592
2602
  *
2593
2603
  * @public
2594
2604
  */
@@ -2596,11 +2606,11 @@ declare function readEnca(view: IsoBoxReadView): AudioSampleEntryBox<"enca">;
2596
2606
  //#endregion
2597
2607
  //#region src/readers/readEncv.d.ts
2598
2608
  /**
2599
- * Parse a VisualSampleEntryBox from an IsoView
2609
+ * Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
2600
2610
  *
2601
- * @param view - The IsoView to read data from
2611
+ * @param view - The `IsoBoxReadView` to read data from
2602
2612
  *
2603
- * @returns A parsed VisualSampleEntryBox
2613
+ * @returns A parsed `VisualSampleEntryBox`
2604
2614
  *
2605
2615
  * @public
2606
2616
  */
@@ -2608,11 +2618,11 @@ declare function readEncv(view: IsoBoxReadView): VisualSampleEntryBox<"encv">;
2608
2618
  //#endregion
2609
2619
  //#region src/readers/readFree.d.ts
2610
2620
  /**
2611
- * Parse a Box from an IsoView
2621
+ * Parse a `FreeSpaceBox` from an `IsoBoxReadView`.
2612
2622
  *
2613
- * @param view - The IsoView to read data from
2623
+ * @param view - The `IsoBoxReadView` to read data from
2614
2624
  *
2615
- * @returns A parsed Box
2625
+ * @returns A parsed `FreeSpaceBox`
2616
2626
  *
2617
2627
  * @public
2618
2628
  */
@@ -2620,11 +2630,11 @@ declare function readFree(view: IsoBoxReadView): FreeSpaceBox;
2620
2630
  //#endregion
2621
2631
  //#region src/readers/readFrma.d.ts
2622
2632
  /**
2623
- * Parse an OriginalFormatBox from an IsoView
2633
+ * Parse an `OriginalFormatBox` from an `IsoBoxReadView`.
2624
2634
  *
2625
- * @param view - The IsoView to read data from
2635
+ * @param view - The `IsoBoxReadView` to read data from
2626
2636
  *
2627
- * @returns A parsed OriginalFormatBox
2637
+ * @returns A parsed `OriginalFormatBox`
2628
2638
  *
2629
2639
  * @public
2630
2640
  */
@@ -2632,11 +2642,11 @@ declare function readFrma(view: IsoBoxReadView): OriginalFormatBox;
2632
2642
  //#endregion
2633
2643
  //#region src/readers/readFtyp.d.ts
2634
2644
  /**
2635
- * Parse a FileTypeBox from an IsoView
2645
+ * Parse a `FileTypeBox` from an `IsoBoxReadView`.
2636
2646
  *
2637
- * @param view - The IsoView to read data from
2647
+ * @param view - The `IsoBoxReadView` to read data from
2638
2648
  *
2639
- * @returns A parsed FileTypeBox
2649
+ * @returns A parsed `FileTypeBox`
2640
2650
  *
2641
2651
  * @public
2642
2652
  */
@@ -2644,11 +2654,11 @@ declare function readFtyp(view: IsoBoxReadView): FileTypeBox;
2644
2654
  //#endregion
2645
2655
  //#region src/readers/readHdlr.d.ts
2646
2656
  /**
2647
- * Parse a HandlerReferenceBox from an IsoView
2657
+ * Parse a `HandlerReferenceBox` from an `IsoBoxReadView`.
2648
2658
  *
2649
- * @param view - The IsoView to read data from
2659
+ * @param view - The `IsoBoxReadView` to read data from
2650
2660
  *
2651
- * @returns A parsed HandlerReferenceBox
2661
+ * @returns A parsed `HandlerReferenceBox`
2652
2662
  *
2653
2663
  * @public
2654
2664
  */
@@ -2656,11 +2666,11 @@ declare function readHdlr(view: IsoBoxReadView): HandlerReferenceBox;
2656
2666
  //#endregion
2657
2667
  //#region src/readers/readHev1.d.ts
2658
2668
  /**
2659
- * Parse a VisualSampleEntryBox from an IsoView
2669
+ * Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
2660
2670
  *
2661
- * @param view - The IsoView to read data from
2671
+ * @param view - The `IsoBoxReadView` to read data from
2662
2672
  *
2663
- * @returns A parsed VisualSampleEntryBox
2673
+ * @returns A parsed `VisualSampleEntryBox`
2664
2674
  *
2665
2675
  * @public
2666
2676
  */
@@ -2668,11 +2678,11 @@ declare function readHev1(view: IsoBoxReadView): VisualSampleEntryBox<"hev1">;
2668
2678
  //#endregion
2669
2679
  //#region src/readers/readHvc1.d.ts
2670
2680
  /**
2671
- * Parse a VisualSampleEntryBox from an IsoView
2681
+ * Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
2672
2682
  *
2673
- * @param view - The IsoView to read data from
2683
+ * @param view - The `IsoBoxReadView` to read data from
2674
2684
  *
2675
- * @returns A parsed VisualSampleEntryBox
2685
+ * @returns A parsed `VisualSampleEntryBox`
2676
2686
  *
2677
2687
  * @public
2678
2688
  */
@@ -2680,11 +2690,11 @@ declare function readHvc1(view: IsoBoxReadView): VisualSampleEntryBox<"hvc1">;
2680
2690
  //#endregion
2681
2691
  //#region src/readers/readIden.d.ts
2682
2692
  /**
2683
- * Parse a WebVTTCueIdBox from an IsoView
2693
+ * Parse a `WebVttCueIdBox` from an `IsoBoxReadView`.
2684
2694
  *
2685
- * @param view - The IsoView to read data from
2695
+ * @param view - The `IsoBoxReadView` to read data from
2686
2696
  *
2687
- * @returns A parsed WebVTTCueIdBox
2697
+ * @returns A parsed `WebVttCueIdBox`
2688
2698
  *
2689
2699
  * @public
2690
2700
  */
@@ -2692,11 +2702,11 @@ declare function readIden(view: IsoBoxReadView): WebVttCueIdBox;
2692
2702
  //#endregion
2693
2703
  //#region src/readers/readImda.d.ts
2694
2704
  /**
2695
- * Parse a IdentifiedMediaDataBox from an IsoView
2705
+ * Parse a `IdentifiedMediaDataBox` from an `IsoBoxReadView`.
2696
2706
  *
2697
- * @param view - The IsoView to read data from
2707
+ * @param view - The `IsoBoxReadView` to read data from
2698
2708
  *
2699
- * @returns A parsed IdentifiedMediaDataBox
2709
+ * @returns A parsed `IdentifiedMediaDataBox`
2700
2710
  *
2701
2711
  * @public
2702
2712
  */
@@ -2704,11 +2714,11 @@ declare function readImda(view: IsoBoxReadView): IdentifiedMediaDataBox;
2704
2714
  //#endregion
2705
2715
  //#region src/readers/readKind.d.ts
2706
2716
  /**
2707
- * Parse a TrackKinBox from an IsoView
2717
+ * Parse a `TrackKindBox` from an `IsoBoxReadView`.
2708
2718
  *
2709
- * @param view - The IsoView to read data from
2719
+ * @param view - The `IsoBoxReadView` to read data from
2710
2720
  *
2711
- * @returns A parsed TrackKindBox
2721
+ * @returns A parsed `TrackKindBox`
2712
2722
  *
2713
2723
  * @public
2714
2724
  */
@@ -2716,11 +2726,11 @@ declare function readKind(view: IsoBoxReadView): TrackKindBox;
2716
2726
  //#endregion
2717
2727
  //#region src/readers/readLabl.d.ts
2718
2728
  /**
2719
- * Parse a LabelBox from an IsoView
2729
+ * Parse a `LabelBox` from an `IsoBoxReadView`.
2720
2730
  *
2721
- * @param view - The IsoView to read data from
2731
+ * @param view - The `IsoBoxReadView` to read data from
2722
2732
  *
2723
- * @returns A parsed LabelBox
2733
+ * @returns A parsed `LabelBox`
2724
2734
  *
2725
2735
  * @public
2726
2736
  */
@@ -2728,11 +2738,11 @@ declare function readLabl(view: IsoBoxReadView): LabelBox;
2728
2738
  //#endregion
2729
2739
  //#region src/readers/readMdat.d.ts
2730
2740
  /**
2731
- * Parse a MediaDataBox from an IsoView
2741
+ * Parse a `MediaDataBox` from an `IsoBoxReadView`.
2732
2742
  *
2733
- * @param view - The IsoView to read data from
2743
+ * @param view - The `IsoBoxReadView` to read data from
2734
2744
  *
2735
- * @returns A parsed MediaDataBox
2745
+ * @returns A parsed `MediaDataBox`
2736
2746
  *
2737
2747
  * @public
2738
2748
  */
@@ -2740,11 +2750,11 @@ declare function readMdat(view: IsoBoxReadView): MediaDataBox;
2740
2750
  //#endregion
2741
2751
  //#region src/readers/readMdhd.d.ts
2742
2752
  /**
2743
- * Parse a MediaHeaderBox from an IsoView
2753
+ * Parse a `MediaHeaderBox` from an `IsoBoxReadView`.
2744
2754
  *
2745
- * @param view - The IsoView to read data from
2755
+ * @param view - The `IsoBoxReadView` to read data from
2746
2756
  *
2747
- * @returns A parsed MediaHeaderBox
2757
+ * @returns A parsed `MediaHeaderBox`
2748
2758
  *
2749
2759
  * @public
2750
2760
  */
@@ -2752,11 +2762,11 @@ declare function readMdhd(view: IsoBoxReadView): MediaHeaderBox;
2752
2762
  //#endregion
2753
2763
  //#region src/readers/readMehd.d.ts
2754
2764
  /**
2755
- * Parse a MovieExtendsHeaderBox from an IsoView
2765
+ * Parse a `MovieExtendsHeaderBox` from an `IsoBoxReadView`.
2756
2766
  *
2757
- * @param view - The IsoView to read data from
2767
+ * @param view - The `IsoBoxReadView` to read data from
2758
2768
  *
2759
- * @returns A parsed MovieExtendsHeaderBox
2769
+ * @returns A parsed `MovieExtendsHeaderBox`
2760
2770
  *
2761
2771
  * @public
2762
2772
  */
@@ -2764,11 +2774,11 @@ declare function readMehd(view: IsoBoxReadView): MovieExtendsHeaderBox;
2764
2774
  //#endregion
2765
2775
  //#region src/readers/readMeta.d.ts
2766
2776
  /**
2767
- * Parse a MetaBox from an IsoView
2777
+ * Parse a `MetaBox` from an `IsoBoxReadView`.
2768
2778
  *
2769
- * @param view - The IsoView to read data from
2779
+ * @param view - The `IsoBoxReadView` to read data from
2770
2780
  *
2771
- * @returns A parsed MetaBox
2781
+ * @returns A parsed `MetaBox`
2772
2782
  *
2773
2783
  * @public
2774
2784
  */
@@ -2776,11 +2786,11 @@ declare function readMeta(view: IsoBoxReadView): MetaBox;
2776
2786
  //#endregion
2777
2787
  //#region src/readers/readMfhd.d.ts
2778
2788
  /**
2779
- * Parse a MovieFragmentHeaderBox from an IsoView
2789
+ * Parse a `MovieFragmentHeaderBox` from an `IsoBoxReadView`.
2780
2790
  *
2781
- * @param view - The IsoView to read data from
2791
+ * @param view - The `IsoBoxReadView` to read data from
2782
2792
  *
2783
- * @returns A parsed MovieFragmentHeaderBox
2793
+ * @returns A parsed `MovieFragmentHeaderBox`
2784
2794
  *
2785
2795
  * @public
2786
2796
  */
@@ -2788,11 +2798,11 @@ declare function readMfhd(view: IsoBoxReadView): MovieFragmentHeaderBox;
2788
2798
  //#endregion
2789
2799
  //#region src/readers/readMfro.d.ts
2790
2800
  /**
2791
- * Parse a MovieFragmentRandomAccessBox from an IsoView
2801
+ * Parse a `MovieFragmentRandomAccessOffsetBox` from an `IsoBoxReadView`.
2792
2802
  *
2793
- * @param view - The IsoView to read data from
2803
+ * @param view - The `IsoBoxReadView` to read data from
2794
2804
  *
2795
- * @returns A parsed MovieFragmentRandomAccessBox
2805
+ * @returns A parsed `MovieFragmentRandomAccessOffsetBox`
2796
2806
  *
2797
2807
  * @public
2798
2808
  */
@@ -2800,11 +2810,11 @@ declare function readMfro(view: IsoBoxReadView): MovieFragmentRandomAccessOffset
2800
2810
  //#endregion
2801
2811
  //#region src/readers/readMp4a.d.ts
2802
2812
  /**
2803
- * Parse an AudioSampleEntry from an IsoView
2813
+ * Parse an `AudioSampleEntryBox` from an `IsoBoxReadView`.
2804
2814
  *
2805
- * @param view - The IsoView to read data from
2815
+ * @param view - The `IsoBoxReadView` to read data from
2806
2816
  *
2807
- * @returns A parsed AudioSampleEntry
2817
+ * @returns A parsed `AudioSampleEntryBox`
2808
2818
  *
2809
2819
  * @public
2810
2820
  */
@@ -2812,11 +2822,11 @@ declare function readMp4a(view: IsoBoxReadView): AudioSampleEntryBox<"mp4a">;
2812
2822
  //#endregion
2813
2823
  //#region src/readers/readMvhd.d.ts
2814
2824
  /**
2815
- * Parse a Box from an IsoView
2825
+ * Parse a `MovieHeaderBox` from an `IsoBoxReadView`.
2816
2826
  *
2817
- * @param view - The IsoView to read data from
2827
+ * @param view - The `IsoBoxReadView` to read data from
2818
2828
  *
2819
- * @returns A parsed Box
2829
+ * @returns A parsed `MovieHeaderBox`
2820
2830
  *
2821
2831
  * @public
2822
2832
  */
@@ -2824,11 +2834,11 @@ declare function readMvhd(view: IsoBoxReadView): MovieHeaderBox;
2824
2834
  //#endregion
2825
2835
  //#region src/readers/readPayl.d.ts
2826
2836
  /**
2827
- * Parse a WebVTTCuePayloadBox from an IsoView
2837
+ * Parse a `WebVttCuePayloadBox` from an `IsoBoxReadView`.
2828
2838
  *
2829
- * @param view - The IsoView to read data from
2839
+ * @param view - The `IsoBoxReadView` to read data from
2830
2840
  *
2831
- * @returns A parsed WebVTTCuePayloadBox
2841
+ * @returns A parsed `WebVttCuePayloadBox`
2832
2842
  *
2833
2843
  * @public
2834
2844
  */
@@ -2836,11 +2846,11 @@ declare function readPayl(view: IsoBoxReadView): WebVttCuePayloadBox;
2836
2846
  //#endregion
2837
2847
  //#region src/readers/readPrft.d.ts
2838
2848
  /**
2839
- * Parse a ProducerReferenceTimeBox from an IsoView
2849
+ * Parse a `ProducerReferenceTimeBox` from an `IsoBoxReadView`.
2840
2850
  *
2841
- * @param view - The IsoView to read data from
2851
+ * @param view - The `IsoBoxReadView` to read data from
2842
2852
  *
2843
- * @returns A parsed ProducerReferenceTimeBox
2853
+ * @returns A parsed `ProducerReferenceTimeBox`
2844
2854
  *
2845
2855
  * @public
2846
2856
  */
@@ -2848,11 +2858,11 @@ declare function readPrft(view: IsoBoxReadView): ProducerReferenceTimeBox;
2848
2858
  //#endregion
2849
2859
  //#region src/readers/readPrsl.d.ts
2850
2860
  /**
2851
- * Parse a PreselectionGroupBox from an IsoView
2861
+ * Parse a `PreselectionGroupBox` from an `IsoBoxReadView`.
2852
2862
  *
2853
- * @param view - The IsoView to read data from
2863
+ * @param view - The `IsoBoxReadView` to read data from
2854
2864
  *
2855
- * @returns A parsed PreselectionGroupBox
2865
+ * @returns A parsed `PreselectionGroupBox`
2856
2866
  *
2857
2867
  * @public
2858
2868
  */
@@ -2860,11 +2870,11 @@ declare function readPrsl(view: IsoBoxReadView): PreselectionGroupBox;
2860
2870
  //#endregion
2861
2871
  //#region src/readers/readPssh.d.ts
2862
2872
  /**
2863
- * Parse a ProtectionSystemSpecificHeaderBox from an IsoView
2873
+ * Parse a `ProtectionSystemSpecificHeaderBox` from an `IsoBoxReadView`.
2864
2874
  *
2865
- * @param view - The IsoView to read data from
2875
+ * @param view - The `IsoBoxReadView` to read data from
2866
2876
  *
2867
- * @returns A parsed ProtectionSystemSpecificHeaderBox
2877
+ * @returns A parsed `ProtectionSystemSpecificHeaderBox`
2868
2878
  *
2869
2879
  * @public
2870
2880
  */
@@ -2872,11 +2882,11 @@ declare function readPssh(view: IsoBoxReadView): ProtectionSystemSpecificHeaderB
2872
2882
  //#endregion
2873
2883
  //#region src/readers/readSchm.d.ts
2874
2884
  /**
2875
- * Parse a SchemeTypeBox from an IsoView
2885
+ * Parse a `SchemeTypeBox` from an `IsoBoxReadView`.
2876
2886
  *
2877
- * @param view - The IsoView to read data from
2887
+ * @param view - The `IsoBoxReadView` to read data from
2878
2888
  *
2879
- * @returns A parsed SchemeTypeBox
2889
+ * @returns A parsed `SchemeTypeBox`
2880
2890
  *
2881
2891
  * @public
2882
2892
  */
@@ -2884,11 +2894,11 @@ declare function readSchm(view: IsoBoxReadView): SchemeTypeBox;
2884
2894
  //#endregion
2885
2895
  //#region src/readers/readSdtp.d.ts
2886
2896
  /**
2887
- * Parse a SampleDependencyTypeBox from an IsoView
2897
+ * Parse a `SampleDependencyTypeBox` from an `IsoBoxReadView`.
2888
2898
  *
2889
- * @param view - The IsoView to read data from
2899
+ * @param view - The `IsoBoxReadView` to read data from
2890
2900
  *
2891
- * @returns A parsed SampleDependencyTypeBox
2901
+ * @returns A parsed `SampleDependencyTypeBox`
2892
2902
  *
2893
2903
  * @public
2894
2904
  */
@@ -2896,11 +2906,11 @@ declare function readSdtp(view: IsoBoxReadView): SampleDependencyTypeBox;
2896
2906
  //#endregion
2897
2907
  //#region src/readers/readSidx.d.ts
2898
2908
  /**
2899
- * Parse a SegmentIndexBox from an IsoView
2909
+ * Parse a `SegmentIndexBox` from an `IsoBoxReadView`.
2900
2910
  *
2901
- * @param view - The IsoView to read data from
2911
+ * @param view - The `IsoBoxReadView` to read data from
2902
2912
  *
2903
- * @returns A parsed SegmentIndexBox
2913
+ * @returns A parsed `SegmentIndexBox`
2904
2914
  *
2905
2915
  * @public
2906
2916
  */
@@ -2908,11 +2918,11 @@ declare function readSidx(view: IsoBoxReadView): SegmentIndexBox;
2908
2918
  //#endregion
2909
2919
  //#region src/readers/readSkip.d.ts
2910
2920
  /**
2911
- * Parse a FreeSpaceBox from an IsoView
2921
+ * Parse a `FreeSpaceBox` from an `IsoBoxReadView`.
2912
2922
  *
2913
- * @param view - The IsoView to read data from
2923
+ * @param view - The `IsoBoxReadView` to read data from
2914
2924
  *
2915
- * @returns A parsed FreeSpaceBox
2925
+ * @returns A parsed `FreeSpaceBox`
2916
2926
  *
2917
2927
  * @public
2918
2928
  */
@@ -2920,11 +2930,11 @@ declare function readSkip(view: IsoBoxReadView): FreeSpaceBox<"skip">;
2920
2930
  //#endregion
2921
2931
  //#region src/readers/readSmhd.d.ts
2922
2932
  /**
2923
- * Parse a SoundMediaHeaderBox from an IsoView
2933
+ * Parse a `SoundMediaHeaderBox` from an `IsoBoxReadView`.
2924
2934
  *
2925
- * @param view - The IsoView to read data from
2935
+ * @param view - The `IsoBoxReadView` to read data from
2926
2936
  *
2927
- * @returns A parsed SoundMediaHeaderBox
2937
+ * @returns A parsed `SoundMediaHeaderBox`
2928
2938
  *
2929
2939
  * @public
2930
2940
  */
@@ -2932,11 +2942,11 @@ declare function readSmhd(view: IsoBoxReadView): SoundMediaHeaderBox;
2932
2942
  //#endregion
2933
2943
  //#region src/readers/readSsix.d.ts
2934
2944
  /**
2935
- * Parse a SubsegmentIndexBox from an IsoView
2945
+ * Parse a `SubsegmentIndexBox` from an `IsoBoxReadView`.
2936
2946
  *
2937
- * @param view - The IsoView to read data from
2947
+ * @param view - The `IsoBoxReadView` to read data from
2938
2948
  *
2939
- * @returns A parsed SubsegmentIndexBox
2949
+ * @returns A parsed `SubsegmentIndexBox`
2940
2950
  *
2941
2951
  * @public
2942
2952
  */
@@ -2944,11 +2954,11 @@ declare function readSsix(view: IsoBoxReadView): SubsegmentIndexBox;
2944
2954
  //#endregion
2945
2955
  //#region src/readers/readSthd.d.ts
2946
2956
  /**
2947
- * Parse a SubtitleMediaHeaderBox from an IsoView
2957
+ * Parse a `SubtitleMediaHeaderBox` from an `IsoBoxReadView`.
2948
2958
  *
2949
- * @param view - The IsoView to read data from
2959
+ * @param view - The `IsoBoxReadView` to read data from
2950
2960
  *
2951
- * @returns A parsed SubtitleMediaHeaderBox
2961
+ * @returns A parsed `SubtitleMediaHeaderBox`
2952
2962
  *
2953
2963
  * @public
2954
2964
  */
@@ -2956,11 +2966,11 @@ declare function readSthd(view: IsoBoxReadView): SubtitleMediaHeaderBox;
2956
2966
  //#endregion
2957
2967
  //#region src/readers/readStsd.d.ts
2958
2968
  /**
2959
- * Parse a SampleDescriptionBox from an IsoView
2969
+ * Parse a `SampleDescriptionBox` from an `IsoBoxReadView`.
2960
2970
  *
2961
- * @param view - The IsoView to read data from
2971
+ * @param view - The `IsoBoxReadView` to read data from
2962
2972
  *
2963
- * @returns A parsed SampleDescriptionBox
2973
+ * @returns A parsed `SampleDescriptionBox`
2964
2974
  *
2965
2975
  * @public
2966
2976
  */
@@ -2968,11 +2978,11 @@ declare function readStsd<E extends SampleEntryBox = AudioSampleEntryBox | Visua
2968
2978
  //#endregion
2969
2979
  //#region src/readers/readStss.d.ts
2970
2980
  /**
2971
- * Parse a SyncSampleBox from an IsoView
2981
+ * Parse a `SyncSampleBox` from an `IsoBoxReadView`.
2972
2982
  *
2973
- * @param view - The IsoView to read data from
2983
+ * @param view - The `IsoBoxReadView` to read data from
2974
2984
  *
2975
- * @returns A parsed SyncSampleBox
2985
+ * @returns A parsed `SyncSampleBox`
2976
2986
  *
2977
2987
  * @public
2978
2988
  */
@@ -2980,11 +2990,11 @@ declare function readStss(view: IsoBoxReadView): SyncSampleBox;
2980
2990
  //#endregion
2981
2991
  //#region src/readers/readSttg.d.ts
2982
2992
  /**
2983
- * Parse a WebVTTSettingsBox from an IsoView
2993
+ * Parse a `WebVttSettingsBox` from an `IsoBoxReadView`.
2984
2994
  *
2985
- * @param view - The IsoView to read data from
2995
+ * @param view - The `IsoBoxReadView` to read data from
2986
2996
  *
2987
- * @returns A parsed WebVTTSettingsBox
2997
+ * @returns A parsed `WebVttSettingsBox`
2988
2998
  *
2989
2999
  * @public
2990
3000
  */
@@ -2992,11 +3002,11 @@ declare function readSttg(view: IsoBoxReadView): WebVttSettingsBox;
2992
3002
  //#endregion
2993
3003
  //#region src/readers/readStts.d.ts
2994
3004
  /**
2995
- * Parse a DecodingTimeToSampleBox from an IsoView
3005
+ * Parse a `DecodingTimeToSampleBox` from an `IsoBoxReadView`.
2996
3006
  *
2997
- * @param view - The IsoView to read data from
3007
+ * @param view - The `IsoBoxReadView` to read data from
2998
3008
  *
2999
- * @returns A parsed DecodingTimeToSampleBox
3009
+ * @returns A parsed `DecodingTimeToSampleBox`
3000
3010
  *
3001
3011
  * @public
3002
3012
  */
@@ -3004,11 +3014,11 @@ declare function readStts(view: IsoBoxReadView): DecodingTimeToSampleBox;
3004
3014
  //#endregion
3005
3015
  //#region src/readers/readStyp.d.ts
3006
3016
  /**
3007
- * Parse a SegmentTypeBox from an IsoView
3017
+ * Parse a `SegmentTypeBox` from an `IsoBoxReadView`.
3008
3018
  *
3009
- * @param view - The IsoView to read data from
3019
+ * @param view - The `IsoBoxReadView` to read data from
3010
3020
  *
3011
- * @returns A parsed SegmentTypeBox
3021
+ * @returns A parsed `SegmentTypeBox`
3012
3022
  *
3013
3023
  * @public
3014
3024
  */
@@ -3016,11 +3026,11 @@ declare function readStyp(view: IsoBoxReadView): SegmentTypeBox;
3016
3026
  //#endregion
3017
3027
  //#region src/readers/readSubs.d.ts
3018
3028
  /**
3019
- * Parse a SubSampleInformationBox from an IsoView
3029
+ * Parse a `SubsampleInformationBox` from an `IsoBoxReadView`.
3020
3030
  *
3021
- * @param view - The IsoView to read data from
3031
+ * @param view - The `IsoBoxReadView` to read data from
3022
3032
  *
3023
- * @returns A parsed SubSampleInformationBox
3033
+ * @returns A parsed `SubsampleInformationBox`
3024
3034
  *
3025
3035
  * @public
3026
3036
  */
@@ -3028,11 +3038,11 @@ declare function readSubs(view: IsoBoxReadView): SubsampleInformationBox;
3028
3038
  //#endregion
3029
3039
  //#region src/readers/readTenc.d.ts
3030
3040
  /**
3031
- * Parse a TrackEncryptionBox from an IsoView
3041
+ * Parse a `TrackEncryptionBox` from an `IsoBoxReadView`.
3032
3042
  *
3033
- * @param view - The IsoView to read data from
3043
+ * @param view - The `IsoBoxReadView` to read data from
3034
3044
  *
3035
- * @returns A parsed TrackEncryptionBox
3045
+ * @returns A parsed `TrackEncryptionBox`
3036
3046
  *
3037
3047
  * @public
3038
3048
  */
@@ -3040,11 +3050,11 @@ declare function readTenc(view: IsoBoxReadView): TrackEncryptionBox;
3040
3050
  //#endregion
3041
3051
  //#region src/readers/readTfdt.d.ts
3042
3052
  /**
3043
- * Parse a TrackFragmentDecodeTimeBox from an IsoView
3053
+ * Parse a `TrackFragmentBaseMediaDecodeTimeBox` from an `IsoBoxReadView`.
3044
3054
  *
3045
- * @param view - The IsoView to read data from
3055
+ * @param view - The `IsoBoxReadView` to read data from
3046
3056
  *
3047
- * @returns A parsed TrackFragmentDecodeTimeBox
3057
+ * @returns A parsed `TrackFragmentBaseMediaDecodeTimeBox`
3048
3058
  *
3049
3059
  * @public
3050
3060
  */
@@ -3052,11 +3062,11 @@ declare function readTfdt(view: IsoBoxReadView): TrackFragmentBaseMediaDecodeTim
3052
3062
  //#endregion
3053
3063
  //#region src/readers/readTfhd.d.ts
3054
3064
  /**
3055
- * Parse a TrackFragmentHeaderBox from an IsoView
3065
+ * Parse a `TrackFragmentHeaderBox` from an `IsoBoxReadView`.
3056
3066
  *
3057
- * @param view - The IsoView to read data from
3067
+ * @param view - The `IsoBoxReadView` to read data from
3058
3068
  *
3059
- * @returns A parsed TrackFragmentHeaderBox
3069
+ * @returns A parsed `TrackFragmentHeaderBox`
3060
3070
  *
3061
3071
  * @public
3062
3072
  */
@@ -3064,11 +3074,11 @@ declare function readTfhd(view: IsoBoxReadView): TrackFragmentHeaderBox;
3064
3074
  //#endregion
3065
3075
  //#region src/readers/readTfra.d.ts
3066
3076
  /**
3067
- * Parse a TrackFragmentRandomAccessBox from an IsoView
3077
+ * Parse a `TrackFragmentRandomAccessBox` from an `IsoBoxReadView`.
3068
3078
  *
3069
- * @param view - The IsoView to read data from
3079
+ * @param view - The `IsoBoxReadView` to read data from
3070
3080
  *
3071
- * @returns A parsed TrackFragmentRandomAccessBox
3081
+ * @returns A parsed `TrackFragmentRandomAccessBox`
3072
3082
  *
3073
3083
  * @public
3074
3084
  */
@@ -3076,11 +3086,11 @@ declare function readTfra(view: IsoBoxReadView): TrackFragmentRandomAccessBox;
3076
3086
  //#endregion
3077
3087
  //#region src/readers/readTkhd.d.ts
3078
3088
  /**
3079
- * Parse a TrackHeaderBox from an IsoView
3089
+ * Parse a `TrackHeaderBox` from an `IsoBoxReadView`.
3080
3090
  *
3081
- * @param view - The IsoView to read data from
3091
+ * @param view - The `IsoBoxReadView` to read data from
3082
3092
  *
3083
- * @returns A parsed TrackHeaderBox
3093
+ * @returns A parsed `TrackHeaderBox`
3084
3094
  *
3085
3095
  * @public
3086
3096
  */
@@ -3088,11 +3098,11 @@ declare function readTkhd(view: IsoBoxReadView): TrackHeaderBox;
3088
3098
  //#endregion
3089
3099
  //#region src/readers/readTrex.d.ts
3090
3100
  /**
3091
- * Parse a TrackExtendsBox from an IsoView
3101
+ * Parse a `TrackExtendsBox` from an `IsoBoxReadView`.
3092
3102
  *
3093
- * @param view - The IsoView to read data from
3103
+ * @param view - The `IsoBoxReadView` to read data from
3094
3104
  *
3095
- * @returns A parsed TrackExtendsBox
3105
+ * @returns A parsed `TrackExtendsBox`
3096
3106
  *
3097
3107
  * @public
3098
3108
  */
@@ -3100,11 +3110,11 @@ declare function readTrex(view: IsoBoxReadView): TrackExtendsBox;
3100
3110
  //#endregion
3101
3111
  //#region src/readers/readTrun.d.ts
3102
3112
  /**
3103
- * Parse a TrackRunBox from an IsoView
3113
+ * Parse a `TrackRunBox` from an `IsoBoxReadView`.
3104
3114
  *
3105
- * @param view - The IsoView to read data from
3115
+ * @param view - The `IsoBoxReadView` to read data from
3106
3116
  *
3107
- * @returns A parsed TrackRunBox
3117
+ * @returns A parsed `TrackRunBox`
3108
3118
  *
3109
3119
  * @public
3110
3120
  */
@@ -3112,11 +3122,11 @@ declare function readTrun(view: IsoBoxReadView): TrackRunBox;
3112
3122
  //#endregion
3113
3123
  //#region src/readers/readUrl.d.ts
3114
3124
  /**
3115
- * Parse a UrlBox from an IsoView
3125
+ * Parse a `DataEntryUrlBox` from an `IsoBoxReadView`.
3116
3126
  *
3117
- * @param view - The IsoView to read data from
3127
+ * @param view - The `IsoBoxReadView` to read data from
3118
3128
  *
3119
- * @returns A parsed UrlBox
3129
+ * @returns A parsed `DataEntryUrlBox`
3120
3130
  *
3121
3131
  * @public
3122
3132
  */
@@ -3124,11 +3134,11 @@ declare function readUrl(view: IsoBoxReadView): DataEntryUrlBox;
3124
3134
  //#endregion
3125
3135
  //#region src/readers/readUrn.d.ts
3126
3136
  /**
3127
- * Parse a UrnBox from an IsoView
3137
+ * Parse a `DataEntryUrnBox` from an `IsoBoxReadView`.
3128
3138
  *
3129
- * @param view - The IsoView to read data from
3139
+ * @param view - The `IsoBoxReadView` to read data from
3130
3140
  *
3131
- * @returns A parsed UrnBox
3141
+ * @returns A parsed `DataEntryUrnBox`
3132
3142
  *
3133
3143
  * @public
3134
3144
  */
@@ -3136,12 +3146,12 @@ declare function readUrn(view: IsoBoxReadView): DataEntryUrnBox;
3136
3146
  //#endregion
3137
3147
  //#region src/readers/readVisualSampleEntryBox.d.ts
3138
3148
  /**
3139
- * Parse a VisualSampleEntryBox from an IsoView
3149
+ * Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
3140
3150
  *
3141
- * @param type - The type of VisualSampleEntryBox to read
3142
- * @param view - The IsoView to read data from
3151
+ * @param type - The type of `VisualSampleEntryBox` to read
3152
+ * @param view - The `IsoBoxReadView` to read data from
3143
3153
  *
3144
- * @returns A parsed VisualSampleEntryBox
3154
+ * @returns A parsed `VisualSampleEntryBox`
3145
3155
  *
3146
3156
  * @public
3147
3157
  */
@@ -3149,11 +3159,11 @@ declare function readVisualSampleEntryBox<T$1 extends IsoBoxType>(type: T$1, vie
3149
3159
  //#endregion
3150
3160
  //#region src/readers/readVlab.d.ts
3151
3161
  /**
3152
- * Parse a WebVTTSourceLabelBox from an IsoView
3162
+ * Parse a `WebVttSourceLabelBox` from an `IsoBoxReadView`.
3153
3163
  *
3154
- * @param view - The IsoView to read data from
3164
+ * @param view - The `IsoBoxReadView` to read data from
3155
3165
  *
3156
- * @returns A parsed WebVTTSourceLabelBox
3166
+ * @returns A parsed `WebVttSourceLabelBox`
3157
3167
  *
3158
3168
  * @public
3159
3169
  */
@@ -3161,11 +3171,11 @@ declare function readVlab(view: IsoBoxReadView): WebVttSourceLabelBox;
3161
3171
  //#endregion
3162
3172
  //#region src/readers/readVmhd.d.ts
3163
3173
  /**
3164
- * Parse a VideoMediaHeaderBox from an IsoView
3174
+ * Parse a `VideoMediaHeaderBox` from an `IsoBoxReadView`.
3165
3175
  *
3166
- * @param view - The IsoView to read data from
3176
+ * @param view - The `IsoBoxReadView` to read data from
3167
3177
  *
3168
- * @returns A parsed VideoMediaHeaderBox
3178
+ * @returns A parsed `VideoMediaHeaderBox`
3169
3179
  *
3170
3180
  * @public
3171
3181
  */
@@ -3173,11 +3183,11 @@ declare function readVmhd(view: IsoBoxReadView): VideoMediaHeaderBox;
3173
3183
  //#endregion
3174
3184
  //#region src/readers/readVttC.d.ts
3175
3185
  /**
3176
- * Parse a WebVTTConfigurationBox from an IsoView
3186
+ * Parse a `WebVttConfigurationBox` from an `IsoBoxReadView`.
3177
3187
  *
3178
- * @param view - The IsoView to read data from
3188
+ * @param view - The `IsoBoxReadView` to read data from
3179
3189
  *
3180
- * @returns A parsed WebVttConfigurationBox
3190
+ * @returns A parsed `WebVttConfigurationBox`
3181
3191
  *
3182
3192
  * @public
3183
3193
  */
@@ -3185,9 +3195,9 @@ declare function readVttC(view: IsoBoxReadView): WebVttConfigurationBox;
3185
3195
  //#endregion
3186
3196
  //#region src/readers/readVtte.d.ts
3187
3197
  /**
3188
- * Parse a WebVTT Empty Sample Box from an IsoView
3198
+ * Parse a `WebVttEmptySampleBox` from an `IsoBoxReadView`.
3189
3199
  *
3190
- * @returns A parsed WebVTT Empty Sample Box
3200
+ * @returns A parsed `WebVttEmptySampleBox`
3191
3201
  *
3192
3202
  * @public
3193
3203
  */
@@ -3227,11 +3237,11 @@ declare function isFullBox(box: any): box is FullBox;
3227
3237
  //#endregion
3228
3238
  //#region src/writers/writeArdi.d.ts
3229
3239
  /**
3230
- * Write an AudioRenderingIndicationBox to an IsoDataWriter.
3240
+ * Write an `AudioRenderingIndicationBox` to an `IsoBoxWriteView`.
3231
3241
  *
3232
- * @param box - The AudioRenderingIndicationBox fields to write
3242
+ * @param box - The `AudioRenderingIndicationBox` fields to write
3233
3243
  *
3234
- * @returns An IsoDataWriter containing the encoded box
3244
+ * @returns An `IsoBoxWriteView` containing the encoded box
3235
3245
  *
3236
3246
  * @public
3237
3247
  */
@@ -3239,14 +3249,14 @@ declare function writeArdi(box: AudioRenderingIndicationBox): IsoBoxWriteView;
3239
3249
  //#endregion
3240
3250
  //#region src/writers/writeAudioSampleEntryBox.d.ts
3241
3251
  /**
3242
- * Write an AudioSampleEntryBox to an IsoDataWriter.
3252
+ * Write an `AudioSampleEntryBox` to an `IsoBoxWriteView`.
3243
3253
  *
3244
3254
  * ISO/IEC 14496-12:2012 - 12.2.3 Audio Sample Entry
3245
3255
  *
3246
- * @param box - The AudioSampleEntryBox fields to write
3247
- * @param config - The IsoBoxWriteViewConfig to use
3256
+ * @param box - The `AudioSampleEntryBox` fields to write
3257
+ * @param config - The `IsoBoxWriteViewConfig` to use
3248
3258
  *
3249
- * @returns An IsoDataWriter containing the encoded box
3259
+ * @returns An `IsoBoxWriteView` containing the encoded box
3250
3260
  *
3251
3261
  * @public
3252
3262
  */
@@ -3254,14 +3264,14 @@ declare function writeAudioSampleEntryBox<T$1 extends AudioSampleEntryType = Aud
3254
3264
  //#endregion
3255
3265
  //#region src/writers/writeAvc1.d.ts
3256
3266
  /**
3257
- * Write a VisualSampleEntryBox to an IsoDataWriter.
3267
+ * Write a `VisualSampleEntryBox` to an `IsoBoxWriteView`.
3258
3268
  *
3259
3269
  * ISO/IEC 14496-12:2012 - 12.1.3 Visual Sample Entry
3260
3270
  *
3261
- * @param box - The VisualSampleEntryBox fields to write
3262
- * @param config - The IsoBoxWriteViewConfig to use
3271
+ * @param box - The `VisualSampleEntryBox` fields to write
3272
+ * @param config - The `IsoBoxWriteViewConfig` to use
3263
3273
  *
3264
- * @returns An IsoDataWriter containing the encoded box
3274
+ * @returns An `IsoBoxWriteView` containing the encoded box
3265
3275
  *
3266
3276
  * @public
3267
3277
  */
@@ -3269,12 +3279,12 @@ declare function writeAvc1(box: VisualSampleEntryBox<"avc1">, config: IsoBoxWrit
3269
3279
  //#endregion
3270
3280
  //#region src/writers/writeAvc2.d.ts
3271
3281
  /**
3272
- * Write a VisualSampleEntryBox (avc2) to an IsoDataWriter.
3282
+ * Write a `VisualSampleEntryBox` (avc2) to an `IsoBoxWriteView`.
3273
3283
  *
3274
- * @param box - The VisualSampleEntryBox fields to write
3275
- * @param config - The IsoBoxWriteViewConfig to use
3284
+ * @param box - The `VisualSampleEntryBox` fields to write
3285
+ * @param config - The `IsoBoxWriteViewConfig` to use
3276
3286
  *
3277
- * @returns An IsoDataWriter containing the encoded box
3287
+ * @returns An `IsoBoxWriteView` containing the encoded box
3278
3288
  *
3279
3289
  * @public
3280
3290
  */
@@ -3282,12 +3292,12 @@ declare function writeAvc2(box: VisualSampleEntryBox<"avc2">, config: IsoBoxWrit
3282
3292
  //#endregion
3283
3293
  //#region src/writers/writeAvc3.d.ts
3284
3294
  /**
3285
- * Write a VisualSampleEntryBox (avc3) to an IsoDataWriter.
3295
+ * Write a `VisualSampleEntryBox` (avc3) to an `IsoBoxWriteView`.
3286
3296
  *
3287
- * @param box - The VisualSampleEntryBox fields to write
3297
+ * @param box - The `VisualSampleEntryBox` fields to write
3288
3298
  * @param config - The IsoBoxWriteViewConfig to use
3289
3299
  *
3290
- * @returns An IsoDataWriter containing the encoded box
3300
+ * @returns An `IsoBoxWriteView` containing the encoded box
3291
3301
  *
3292
3302
  * @public
3293
3303
  */
@@ -3295,12 +3305,12 @@ declare function writeAvc3(box: VisualSampleEntryBox<"avc3">, config: IsoBoxWrit
3295
3305
  //#endregion
3296
3306
  //#region src/writers/writeAvc4.d.ts
3297
3307
  /**
3298
- * Write a VisualSampleEntryBox (avc4) to an IsoDataWriter.
3308
+ * Write a `VisualSampleEntryBox` (avc4) to an `IsoBoxWriteView`.
3299
3309
  *
3300
- * @param box - The VisualSampleEntryBox fields to write
3301
- * @param config - The IsoBoxWriteViewConfig to use
3310
+ * @param box - The `VisualSampleEntryBox` fields to write
3311
+ * @param config - The `IsoBoxWriteViewConfig` to use
3302
3312
  *
3303
- * @returns An IsoDataWriter containing the encoded box
3313
+ * @returns An `IsoBoxWriteView` containing the encoded box
3304
3314
  *
3305
3315
  * @public
3306
3316
  */
@@ -3308,13 +3318,13 @@ declare function writeAvc4(box: VisualSampleEntryBox<"avc4">, config: IsoBoxWrit
3308
3318
  //#endregion
3309
3319
  //#region src/writers/writeCtts.d.ts
3310
3320
  /**
3311
- * Write a CompositionTimeToSampleBox to an IsoDataWriter.
3321
+ * Write a `CompositionTimeToSampleBox` to an `IsoBoxWriteView`.
3312
3322
  *
3313
3323
  * ISO/IEC 14496-12:2012 - 8.6.1.3 Composition Time to Sample Box
3314
3324
  *
3315
- * @param box - The CompositionTimeToSampleBox fields to write
3325
+ * @param box - The `CompositionTimeToSampleBox` fields to write
3316
3326
  *
3317
- * @returns An IsoDataWriter containing the encoded box
3327
+ * @returns An `IsoBoxWriteView` containing the encoded box
3318
3328
  *
3319
3329
  * @public
3320
3330
  */
@@ -3322,12 +3332,12 @@ declare function writeCtts(box: CompositionTimeToSampleBox): IsoBoxWriteView;
3322
3332
  //#endregion
3323
3333
  //#region src/writers/writeDref.d.ts
3324
3334
  /**
3325
- * Write a DataReferenceBox to an IsoDataWriter.
3335
+ * Write a `DataReferenceBox` to an `IsoBoxWriteView`.
3326
3336
  *
3327
- * @param box - The DataReferenceBox fields to write
3337
+ * @param box - The `DataReferenceBox` fields to write
3328
3338
  * @param config - The IsoBoxWriteViewConfig to use
3329
3339
  *
3330
- * @returns An IsoDataWriter containing the encoded box
3340
+ * @returns An `IsoBoxWriteView` containing the encoded box
3331
3341
  *
3332
3342
  * @public
3333
3343
  */
@@ -3335,13 +3345,13 @@ declare function writeDref(box: DataReferenceBox, config: IsoBoxWriteViewConfig)
3335
3345
  //#endregion
3336
3346
  //#region src/writers/writeElng.d.ts
3337
3347
  /**
3338
- * Write an ExtendedLanguageBox to an IsoDataWriter.
3348
+ * Write an `ExtendedLanguageBox` to an `IsoBoxWriteView`.
3339
3349
  *
3340
3350
  * ISO/IEC 14496-12:2012 - 8.4.6 Extended Language Tag
3341
3351
  *
3342
- * @param box - The ExtendedLanguageBox fields to write
3352
+ * @param box - The `ExtendedLanguageBox` fields to write
3343
3353
  *
3344
- * @returns An IsoDataWriter containing the encoded box
3354
+ * @returns An `IsoBoxWriteView` containing the encoded box
3345
3355
  *
3346
3356
  * @public
3347
3357
  */
@@ -3349,13 +3359,13 @@ declare function writeElng(box: ExtendedLanguageBox): IsoBoxWriteView;
3349
3359
  //#endregion
3350
3360
  //#region src/writers/writeElst.d.ts
3351
3361
  /**
3352
- * Write an EditListBox to an IsoDataWriter.
3362
+ * Write an `EditListBox` to an `IsoBoxWriteView`.
3353
3363
  *
3354
3364
  * ISO/IEC 14496-12:2012 - 8.6.6 Edit List Box
3355
3365
  *
3356
- * @param box - The EditListBox fields to write
3366
+ * @param box - The `EditListBox` fields to write
3357
3367
  *
3358
- * @returns An IsoDataWriter containing the encoded box
3368
+ * @returns An `IsoBoxWriteView` containing the encoded box
3359
3369
  *
3360
3370
  * @public
3361
3371
  */
@@ -3363,13 +3373,13 @@ declare function writeElst(box: EditListBox): IsoBoxWriteView;
3363
3373
  //#endregion
3364
3374
  //#region src/writers/writeEmsg.d.ts
3365
3375
  /**
3366
- * Write an EventMessageBox to an IsoDataWriter.
3376
+ * Write an `EventMessageBox` to an `IsoBoxWriteView`.
3367
3377
  *
3368
3378
  * ISO/IEC 23009-1 - 5.10.3.3 Event Message Box
3369
3379
  *
3370
- * @param box - The EventMessageBox fields to write
3380
+ * @param box - The `EventMessageBox` fields to write
3371
3381
  *
3372
- * @returns An IsoDataWriter containing the encoded box
3382
+ * @returns An `IsoBoxWriteView` containing the encoded box
3373
3383
  *
3374
3384
  * @public
3375
3385
  */
@@ -3377,12 +3387,12 @@ declare function writeEmsg(box: EventMessageBox): IsoBoxWriteView;
3377
3387
  //#endregion
3378
3388
  //#region src/writers/writeEnca.d.ts
3379
3389
  /**
3380
- * Write an AudioSampleEntryBox (enca) to an IsoDataWriter.
3390
+ * Write an `AudioSampleEntryBox` (enca) to an `IsoBoxWriteView`.
3381
3391
  *
3382
- * @param box - The AudioSampleEntryBox fields to write
3383
- * @param config - The IsoBoxWriteViewConfig to use
3392
+ * @param box - The `AudioSampleEntryBox` fields to write
3393
+ * @param config - The `IsoBoxWriteViewConfig` to use
3384
3394
  *
3385
- * @returns An IsoDataWriter containing the encoded box
3395
+ * @returns An `IsoBoxWriteView` containing the encoded box
3386
3396
  *
3387
3397
  * @public
3388
3398
  */
@@ -3390,12 +3400,12 @@ declare function writeEnca(box: AudioSampleEntryBox<"enca">, config: IsoBoxWrite
3390
3400
  //#endregion
3391
3401
  //#region src/writers/writeEncv.d.ts
3392
3402
  /**
3393
- * Write a VisualSampleEntryBox (encv) to an IsoDataWriter.
3403
+ * Write a `VisualSampleEntryBox` (encv) to an `IsoBoxWriteView`.
3394
3404
  *
3395
- * @param box - The VisualSampleEntryBox fields to write
3396
- * @param config - The IsoBoxWriteViewConfig to use
3405
+ * @param box - The `VisualSampleEntryBox` fields to write
3406
+ * @param config - The `IsoBoxWriteViewConfig` to use
3397
3407
  *
3398
- * @returns An IsoDataWriter containing the encoded box
3408
+ * @returns An `IsoBoxWriteView` containing the encoded box
3399
3409
  *
3400
3410
  * @public
3401
3411
  */
@@ -3403,13 +3413,13 @@ declare function writeEncv(box: VisualSampleEntryBox<"encv">, config: IsoBoxWrit
3403
3413
  //#endregion
3404
3414
  //#region src/writers/writeFree.d.ts
3405
3415
  /**
3406
- * Write a FreeSpaceBox to an IsoDataWriter.
3416
+ * Write a `FreeSpaceBox` to an `IsoBoxWriteView`.
3407
3417
  *
3408
3418
  * ISO/IEC 14496-12:2012 - 8.1.2 Free Space Box
3409
3419
  *
3410
- * @param box - The FreeSpaceBox fields to write
3420
+ * @param box - The `FreeSpaceBox` fields to write
3411
3421
  *
3412
- * @returns An IsoDataWriter containing the encoded box
3422
+ * @returns An `IsoBoxWriteView` containing the encoded box
3413
3423
  *
3414
3424
  * @public
3415
3425
  */
@@ -3417,13 +3427,13 @@ declare function writeFree(box: FreeSpaceBox<"free">): IsoBoxWriteView;
3417
3427
  //#endregion
3418
3428
  //#region src/writers/writeFrma.d.ts
3419
3429
  /**
3420
- * Write an OriginalFormatBox to an IsoDataWriter.
3430
+ * Write an `OriginalFormatBox` to an `IsoBoxWriteView`.
3421
3431
  *
3422
3432
  * ISO/IEC 14496-12:2012 - 8.12.2 Original Format Box
3423
3433
  *
3424
- * @param box - The OriginalFormatBox fields to write
3434
+ * @param box - The `OriginalFormatBox` fields to write
3425
3435
  *
3426
- * @returns An IsoDataWriter containing the encoded box
3436
+ * @returns An `IsoBoxWriteView` containing the encoded box
3427
3437
  *
3428
3438
  * @public
3429
3439
  */
@@ -3431,13 +3441,13 @@ declare function writeFrma(box: OriginalFormatBox): IsoBoxWriteView;
3431
3441
  //#endregion
3432
3442
  //#region src/writers/writeFtyp.d.ts
3433
3443
  /**
3434
- * Write a FileTypeBox to an IsoDataWriter.
3444
+ * Write a `FileTypeBox` to an `IsoBoxWriteView`.
3435
3445
  *
3436
3446
  * ISO/IEC 14496-12:2012 - 4.3 File Type Box
3437
3447
  *
3438
- * @param box - The FileTypeBox fields to write
3448
+ * @param box - The `FileTypeBox` fields to write
3439
3449
  *
3440
- * @returns An IsoDataWriter containing the encoded box
3450
+ * @returns An `IsoBoxWriteView` containing the encoded box
3441
3451
  *
3442
3452
  * @public
3443
3453
  */
@@ -3445,13 +3455,13 @@ declare function writeFtyp(box: FileTypeBox): IsoBoxWriteView;
3445
3455
  //#endregion
3446
3456
  //#region src/writers/writeHdlr.d.ts
3447
3457
  /**
3448
- * Write a HandlerReferenceBox to an IsoDataWriter.
3458
+ * Write a `HandlerReferenceBox` to an `IsoBoxWriteView`.
3449
3459
  *
3450
3460
  * ISO/IEC 14496-12:2012 - 8.4.3 Handler Reference Box
3451
3461
  *
3452
- * @param box - The HandlerReferenceBox fields to write
3462
+ * @param box - The `HandlerReferenceBox` fields to write
3453
3463
  *
3454
- * @returns An IsoDataWriter containing the encoded box
3464
+ * @returns An `IsoBoxWriteView` containing the encoded box
3455
3465
  *
3456
3466
  * @public
3457
3467
  */
@@ -3459,12 +3469,12 @@ declare function writeHdlr(box: HandlerReferenceBox): IsoBoxWriteView;
3459
3469
  //#endregion
3460
3470
  //#region src/writers/writeHev1.d.ts
3461
3471
  /**
3462
- * Write a VisualSampleEntryBox (hev1) to an IsoDataWriter.
3472
+ * Write a `VisualSampleEntryBox` (hev1) to an `IsoBoxWriteView`.
3463
3473
  *
3464
- * @param box - The VisualSampleEntryBox fields to write
3465
- * @param config - The IsoBoxWriteViewConfig to use
3474
+ * @param box - The `VisualSampleEntryBox` fields to write
3475
+ * @param config - The `IsoBoxWriteViewConfig` to use
3466
3476
  *
3467
- * @returns An IsoDataWriter containing the encoded box
3477
+ * @returns An `IsoBoxWriteView` containing the encoded box
3468
3478
  *
3469
3479
  * @public
3470
3480
  */
@@ -3472,12 +3482,12 @@ declare function writeHev1(box: VisualSampleEntryBox<"hev1">, config: IsoBoxWrit
3472
3482
  //#endregion
3473
3483
  //#region src/writers/writeHvc1.d.ts
3474
3484
  /**
3475
- * Write a VisualSampleEntryBox (hvc1) to an IsoDataWriter.
3485
+ * Write a `VisualSampleEntryBox` (hvc1) to an `IsoBoxWriteView`.
3476
3486
  *
3477
- * @param box - The VisualSampleEntryBox fields to write
3478
- * @param config - The IsoBoxWriteViewConfig to use
3487
+ * @param box - The `VisualSampleEntryBox` fields to write
3488
+ * @param config - The `IsoBoxWriteViewConfig` to use
3479
3489
  *
3480
- * @returns An IsoDataWriter containing the encoded box
3490
+ * @returns An `IsoBoxWriteView` containing the encoded box
3481
3491
  *
3482
3492
  * @public
3483
3493
  */
@@ -3485,11 +3495,11 @@ declare function writeHvc1(box: VisualSampleEntryBox<"hvc1">, config: IsoBoxWrit
3485
3495
  //#endregion
3486
3496
  //#region src/writers/writeIden.d.ts
3487
3497
  /**
3488
- * Write a WebVttCueIdBox to an IsoDataWriter.
3498
+ * Write a `WebVttCueIdBox` to an `IsoBoxWriteView`.
3489
3499
  *
3490
- * @param box - The WebVttCueIdBox fields to write
3500
+ * @param box - The `WebVttCueIdBox` fields to write
3491
3501
  *
3492
- * @returns An IsoDataWriter containing the encoded box
3502
+ * @returns An `IsoBoxWriteView` containing the encoded box
3493
3503
  *
3494
3504
  * @public
3495
3505
  */
@@ -3497,11 +3507,11 @@ declare function writeIden(box: WebVttCueIdBox): IsoBoxWriteView;
3497
3507
  //#endregion
3498
3508
  //#region src/writers/writeImda.d.ts
3499
3509
  /**
3500
- * Write an IdentifiedMediaDataBox to an IsoDataWriter.
3510
+ * Write an `IdentifiedMediaDataBox` to an `IsoBoxWriteView`.
3501
3511
  *
3502
- * @param box - The IdentifiedMediaDataBox fields to write
3512
+ * @param box - The `IdentifiedMediaDataBox` fields to write
3503
3513
  *
3504
- * @returns An IsoDataWriter containing the encoded box
3514
+ * @returns An `IsoBoxWriteView` containing the encoded box
3505
3515
  *
3506
3516
  * @public
3507
3517
  */
@@ -3509,11 +3519,11 @@ declare function writeImda(box: IdentifiedMediaDataBox): IsoBoxWriteView;
3509
3519
  //#endregion
3510
3520
  //#region src/writers/writeKind.d.ts
3511
3521
  /**
3512
- * Write a TrackKindBox to an IsoDataWriter.
3522
+ * Write a `TrackKindBox` to an `IsoBoxWriteView`.
3513
3523
  *
3514
- * @param box - The TrackKindBox fields to write
3524
+ * @param box - The `TrackKindBox` fields to write
3515
3525
  *
3516
- * @returns An IsoDataWriter containing the encoded box
3526
+ * @returns An `IsoBoxWriteView` containing the encoded box
3517
3527
  *
3518
3528
  * @public
3519
3529
  */
@@ -3521,11 +3531,11 @@ declare function writeKind(box: TrackKindBox): IsoBoxWriteView;
3521
3531
  //#endregion
3522
3532
  //#region src/writers/writeLabl.d.ts
3523
3533
  /**
3524
- * Write a LabelBox to an IsoDataWriter.
3534
+ * Write a `LabelBox` to an `IsoBoxWriteView`.
3525
3535
  *
3526
- * @param box - The LabelBox fields to write
3536
+ * @param box - The `LabelBox` fields to write
3527
3537
  *
3528
- * @returns An IsoDataWriter containing the encoded box
3538
+ * @returns An `IsoBoxWriteView` containing the encoded box
3529
3539
  *
3530
3540
  * @public
3531
3541
  */
@@ -3533,13 +3543,13 @@ declare function writeLabl(box: LabelBox): IsoBoxWriteView;
3533
3543
  //#endregion
3534
3544
  //#region src/writers/writeMdat.d.ts
3535
3545
  /**
3536
- * Write a MediaDataBox to an IsoDataWriter.
3546
+ * Write a `MediaDataBox` to an `IsoBoxWriteView`.
3537
3547
  *
3538
3548
  * ISO/IEC 14496-12:2012 - 8.1.1 Media Data Box
3539
3549
  *
3540
- * @param box - The MediaDataBox fields to write
3550
+ * @param box - The `MediaDataBox` fields to write
3541
3551
  *
3542
- * @returns An IsoDataWriter containing the encoded box
3552
+ * @returns An `IsoBoxWriteView` containing the encoded box
3543
3553
  *
3544
3554
  * @public
3545
3555
  */
@@ -3547,13 +3557,13 @@ declare function writeMdat(box: MediaDataBox): IsoBoxWriteView;
3547
3557
  //#endregion
3548
3558
  //#region src/writers/writeMdhd.d.ts
3549
3559
  /**
3550
- * Write a MediaHeaderBox to an IsoDataWriter.
3560
+ * Write a `MediaHeaderBox` to an `IsoBoxWriteView`.
3551
3561
  *
3552
3562
  * ISO/IEC 14496-12:2012 - 8.4.2 Media Header Box
3553
3563
  *
3554
- * @param box - The MediaHeaderBox fields to write
3564
+ * @param box - The `MediaHeaderBox` fields to write
3555
3565
  *
3556
- * @returns An IsoDataWriter containing the encoded box
3566
+ * @returns An `IsoBoxWriteView` containing the encoded box
3557
3567
  *
3558
3568
  * @public
3559
3569
  */
@@ -3561,13 +3571,13 @@ declare function writeMdhd(box: MediaHeaderBox): IsoBoxWriteView;
3561
3571
  //#endregion
3562
3572
  //#region src/writers/writeMehd.d.ts
3563
3573
  /**
3564
- * Write a MovieExtendsHeaderBox to an IsoDataWriter.
3574
+ * Write a `MovieExtendsHeaderBox` to an `IsoBoxWriteView`.
3565
3575
  *
3566
3576
  * ISO/IEC 14496-12:2012 - 8.8.2 Movie Extends Header Box
3567
3577
  *
3568
- * @param box - The MovieExtendsHeaderBox fields to write
3578
+ * @param box - The `MovieExtendsHeaderBox` fields to write
3569
3579
  *
3570
- * @returns An IsoDataWriter containing the encoded box
3580
+ * @returns An `IsoBoxWriteView` containing the encoded box
3571
3581
  *
3572
3582
  * @public
3573
3583
  */
@@ -3575,14 +3585,14 @@ declare function writeMehd(box: MovieExtendsHeaderBox): IsoBoxWriteView;
3575
3585
  //#endregion
3576
3586
  //#region src/writers/writeMeta.d.ts
3577
3587
  /**
3578
- * Write a MetaBox to an IsoDataWriter.
3588
+ * Write a `MetaBox` to an `IsoBoxWriteView`.
3579
3589
  *
3580
3590
  * ISO/IEC 14496-12:2012 - 8.11.1 Meta Box
3581
3591
  *
3582
- * @param box - The MetaBox fields to write
3583
- * @param config - The IsoBoxWriteViewConfig to use
3592
+ * @param box - The `MetaBox` fields to write
3593
+ * @param config - The `IsoBoxWriteViewConfig` to use
3584
3594
  *
3585
- * @returns An IsoDataWriter containing the encoded box
3595
+ * @returns An `IsoBoxWriteView` containing the encoded box
3586
3596
  *
3587
3597
  * @public
3588
3598
  */
@@ -3590,13 +3600,13 @@ declare function writeMeta(box: MetaBox, config: IsoBoxWriteViewConfig): IsoBoxW
3590
3600
  //#endregion
3591
3601
  //#region src/writers/writeMfhd.d.ts
3592
3602
  /**
3593
- * Write a MovieFragmentHeaderBox to an IsoDataWriter.
3603
+ * Write a `MovieFragmentHeaderBox` to an `IsoBoxWriteView`.
3594
3604
  *
3595
3605
  * ISO/IEC 14496-12:2012 - 8.8.5 Movie Fragment Header Box
3596
3606
  *
3597
- * @param box - The MovieFragmentHeaderBox fields to write
3607
+ * @param box - The `MovieFragmentHeaderBox` fields to write
3598
3608
  *
3599
- * @returns An IsoDataWriter containing the encoded box
3609
+ * @returns An `IsoBoxWriteView` containing the encoded box
3600
3610
  *
3601
3611
  * @public
3602
3612
  */
@@ -3604,13 +3614,13 @@ declare function writeMfhd(box: MovieFragmentHeaderBox): IsoBoxWriteView;
3604
3614
  //#endregion
3605
3615
  //#region src/writers/writeMfro.d.ts
3606
3616
  /**
3607
- * Write a MovieFragmentRandomAccessOffsetBox to an IsoDataWriter.
3617
+ * Write a `MovieFragmentRandomAccessOffsetBox` to an `IsoBoxWriteView`.
3608
3618
  *
3609
3619
  * ISO/IEC 14496-12:2012 - 8.8.11 Movie Fragment Random Access Offset Box
3610
3620
  *
3611
- * @param box - The MovieFragmentRandomAccessOffsetBox fields to write
3621
+ * @param box - The `MovieFragmentRandomAccessOffsetBox` fields to write
3612
3622
  *
3613
- * @returns An IsoDataWriter containing the encoded box
3623
+ * @returns An `IsoBoxWriteView` containing the encoded box
3614
3624
  *
3615
3625
  * @public
3616
3626
  */
@@ -3618,13 +3628,13 @@ declare function writeMfro(box: MovieFragmentRandomAccessOffsetBox): IsoBoxWrite
3618
3628
  //#endregion
3619
3629
  //#region src/writers/writeMp4a.d.ts
3620
3630
  /**
3621
- * Write an AudioSampleEntryBox to an IsoDataWriter.
3631
+ * Write an `AudioSampleEntryBox` to an `IsoBoxWriteView`.
3622
3632
  *
3623
3633
  * ISO/IEC 14496-12:2012 - 12.2.3 Audio Sample Entry
3624
3634
  *
3625
- * @param box - The AudioSampleEntryBox fields to write
3635
+ * @param box - The `AudioSampleEntryBox` fields to write
3626
3636
  *
3627
- * @returns An IsoDataWriter containing the encoded box
3637
+ * @returns An `IsoBoxWriteView` containing the encoded box
3628
3638
  *
3629
3639
  * @public
3630
3640
  */
@@ -3632,13 +3642,13 @@ declare function writeMp4a(box: AudioSampleEntryBox<"mp4a">, config: IsoBoxWrite
3632
3642
  //#endregion
3633
3643
  //#region src/writers/writeMvhd.d.ts
3634
3644
  /**
3635
- * Write a MovieHeaderBox to an IsoDataWriter.
3645
+ * Write a `MovieHeaderBox` to an `IsoBoxWriteView`.
3636
3646
  *
3637
3647
  * ISO/IEC 14496-12:2012 - 8.2.2 Movie Header Box
3638
3648
  *
3639
- * @param box - The MovieHeaderBox fields to write
3649
+ * @param box - The `MovieHeaderBox` fields to write
3640
3650
  *
3641
- * @returns An IsoDataWriter containing the encoded box
3651
+ * @returns An `IsoBoxWriteView` containing the encoded box
3642
3652
  *
3643
3653
  * @public
3644
3654
  */
@@ -3646,11 +3656,11 @@ declare function writeMvhd(box: MovieHeaderBox): IsoBoxWriteView;
3646
3656
  //#endregion
3647
3657
  //#region src/writers/writePayl.d.ts
3648
3658
  /**
3649
- * Write a WebVttCuePayloadBox to an IsoDataWriter.
3659
+ * Write a `WebVttCuePayloadBox` to an `IsoBoxWriteView`.
3650
3660
  *
3651
- * @param box - The WebVttCuePayloadBox fields to write
3661
+ * @param box - The `WebVttCuePayloadBox` fields to write
3652
3662
  *
3653
- * @returns An IsoDataWriter containing the encoded box
3663
+ * @returns An `IsoBoxWriteView` containing the encoded box
3654
3664
  *
3655
3665
  * @public
3656
3666
  */
@@ -3658,13 +3668,13 @@ declare function writePayl(box: WebVttCuePayloadBox): IsoBoxWriteView;
3658
3668
  //#endregion
3659
3669
  //#region src/writers/writePrft.d.ts
3660
3670
  /**
3661
- * Write a ProducerReferenceTimeBox to an IsoDataWriter.
3671
+ * Write a `ProducerReferenceTimeBox` to an `IsoBoxWriteView`.
3662
3672
  *
3663
3673
  * ISO/IEC 14496-12:2012 - 8.16.5 Producer Reference Time Box
3664
3674
  *
3665
- * @param box - The ProducerReferenceTimeBox fields to write
3675
+ * @param box - The `ProducerReferenceTimeBox` fields to write
3666
3676
  *
3667
- * @returns An IsoDataWriter containing the encoded box
3677
+ * @returns An `IsoBoxWriteView` containing the encoded box
3668
3678
  *
3669
3679
  * @public
3670
3680
  */
@@ -3672,12 +3682,12 @@ declare function writePrft(box: ProducerReferenceTimeBox): IsoBoxWriteView;
3672
3682
  //#endregion
3673
3683
  //#region src/writers/writePrsl.d.ts
3674
3684
  /**
3675
- * Write a PreselectionGroupBox to an IsoDataWriter.
3685
+ * Write a `PreselectionGroupBox` to an `IsoBoxWriteView`.
3676
3686
  *
3677
- * @param box - The PreselectionGroupBox fields to write
3678
- * @param config - The IsoBoxWriteViewConfig to use
3687
+ * @param box - The `PreselectionGroupBox` fields to write
3688
+ * @param config - The `IsoBoxWriteViewConfig` to use
3679
3689
  *
3680
- * @returns An IsoDataWriter containing the encoded box
3690
+ * @returns An `IsoBoxWriteView` containing the encoded box
3681
3691
  *
3682
3692
  * @public
3683
3693
  */
@@ -3685,13 +3695,13 @@ declare function writePrsl(box: PreselectionGroupBox, config: IsoBoxWriteViewCon
3685
3695
  //#endregion
3686
3696
  //#region src/writers/writePssh.d.ts
3687
3697
  /**
3688
- * Write a ProtectionSystemSpecificHeaderBox to an IsoDataWriter.
3698
+ * Write a `ProtectionSystemSpecificHeaderBox` to an `IsoBoxWriteView`.
3689
3699
  *
3690
3700
  * ISO/IEC 23001-7 - 8.1 Protection System Specific Header Box
3691
3701
  *
3692
- * @param box - The ProtectionSystemSpecificHeaderBox fields to write
3702
+ * @param box - The `ProtectionSystemSpecificHeaderBox` fields to write
3693
3703
  *
3694
- * @returns An IsoDataWriter containing the encoded box
3704
+ * @returns An `IsoBoxWriteView` containing the encoded box
3695
3705
  *
3696
3706
  * @public
3697
3707
  */
@@ -3699,13 +3709,13 @@ declare function writePssh(box: ProtectionSystemSpecificHeaderBox): IsoBoxWriteV
3699
3709
  //#endregion
3700
3710
  //#region src/writers/writeSchm.d.ts
3701
3711
  /**
3702
- * Write a SchemeTypeBox to an IsoDataWriter.
3712
+ * Write a `SchemeTypeBox` to an `IsoBoxWriteView`.
3703
3713
  *
3704
3714
  * ISO/IEC 14496-12:2012 - 8.12.5 Scheme Type Box
3705
3715
  *
3706
- * @param box - The SchemeTypeBox fields to write
3716
+ * @param box - The `SchemeTypeBox` fields to write
3707
3717
  *
3708
- * @returns An IsoDataWriter containing the encoded box
3718
+ * @returns An `IsoBoxWriteView` containing the encoded box
3709
3719
  *
3710
3720
  * @public
3711
3721
  */
@@ -3713,13 +3723,13 @@ declare function writeSchm(box: SchemeTypeBox): IsoBoxWriteView;
3713
3723
  //#endregion
3714
3724
  //#region src/writers/writeSdtp.d.ts
3715
3725
  /**
3716
- * Write a SampleDependencyTypeBox to an IsoDataWriter.
3726
+ * Write a `SampleDependencyTypeBox` to an `IsoBoxWriteView`.
3717
3727
  *
3718
3728
  * ISO/IEC 14496-12:2012 - 8.6.4 Independent and Disposable Samples Box
3719
3729
  *
3720
- * @param box - The SampleDependencyTypeBox fields to write
3730
+ * @param box - The `SampleDependencyTypeBox` fields to write
3721
3731
  *
3722
- * @returns An IsoDataWriter containing the encoded box
3732
+ * @returns An `IsoBoxWriteView` containing the encoded box
3723
3733
  *
3724
3734
  * @public
3725
3735
  */
@@ -3727,13 +3737,13 @@ declare function writeSdtp(box: SampleDependencyTypeBox): IsoBoxWriteView;
3727
3737
  //#endregion
3728
3738
  //#region src/writers/writeSidx.d.ts
3729
3739
  /**
3730
- * Write a SegmentIndexBox to an IsoDataWriter.
3740
+ * Write a `SegmentIndexBox` to an `IsoBoxWriteView`.
3731
3741
  *
3732
3742
  * ISO/IEC 14496-12:2012 - 8.16.3 Segment Index Box
3733
3743
  *
3734
- * @param box - The SegmentIndexBox fields to write
3744
+ * @param box - The `SegmentIndexBox` fields to write
3735
3745
  *
3736
- * @returns An IsoDataWriter containing the encoded box
3746
+ * @returns An `IsoBoxWriteView` containing the encoded box
3737
3747
  *
3738
3748
  * @public
3739
3749
  */
@@ -3741,13 +3751,13 @@ declare function writeSidx(box: SegmentIndexBox): IsoBoxWriteView;
3741
3751
  //#endregion
3742
3752
  //#region src/writers/writeSkip.d.ts
3743
3753
  /**
3744
- * Write a FreeSpaceBox (skip variant) to an IsoDataWriter.
3754
+ * Write a `FreeSpaceBox` (skip variant) to an `IsoBoxWriteView`.
3745
3755
  *
3746
3756
  * ISO/IEC 14496-12:2012 - 8.1.2 Free Space Box
3747
3757
  *
3748
- * @param box - The FreeSpaceBox fields to write
3758
+ * @param box - The `FreeSpaceBox` fields to write
3749
3759
  *
3750
- * @returns An IsoDataWriter containing the encoded box
3760
+ * @returns An `IsoBoxWriteView` containing the encoded box
3751
3761
  *
3752
3762
  * @public
3753
3763
  */
@@ -3755,13 +3765,13 @@ declare function writeSkip(box: FreeSpaceBox<"skip">): IsoBoxWriteView;
3755
3765
  //#endregion
3756
3766
  //#region src/writers/writeSmhd.d.ts
3757
3767
  /**
3758
- * Write a SoundMediaHeaderBox to an IsoDataWriter.
3768
+ * Write a `SoundMediaHeaderBox` to an `IsoBoxWriteView`.
3759
3769
  *
3760
3770
  * ISO/IEC 14496-12:2012 - 12.2.2 Sound Media Header Box
3761
3771
  *
3762
- * @param box - The SoundMediaHeaderBox fields to write
3772
+ * @param box - The `SoundMediaHeaderBox` fields to write
3763
3773
  *
3764
- * @returns An IsoDataWriter containing the encoded box
3774
+ * @returns An `IsoBoxWriteView` containing the encoded box
3765
3775
  *
3766
3776
  * @public
3767
3777
  */
@@ -3769,13 +3779,13 @@ declare function writeSmhd(box: SoundMediaHeaderBox): IsoBoxWriteView;
3769
3779
  //#endregion
3770
3780
  //#region src/writers/writeSsix.d.ts
3771
3781
  /**
3772
- * Write a SubsegmentIndexBox to an IsoDataWriter.
3782
+ * Write a `SubsegmentIndexBox` to an `IsoBoxWriteView`.
3773
3783
  *
3774
3784
  * ISO/IEC 14496-12:2012 - 8.16.4 Subsegment Index Box
3775
3785
  *
3776
- * @param box - The SubsegmentIndexBox fields to write
3786
+ * @param box - The `SubsegmentIndexBox` fields to write
3777
3787
  *
3778
- * @returns An IsoDataWriter containing the encoded box
3788
+ * @returns An `IsoBoxWriteView` containing the encoded box
3779
3789
  *
3780
3790
  * @public
3781
3791
  */
@@ -3783,13 +3793,13 @@ declare function writeSsix(box: SubsegmentIndexBox): IsoBoxWriteView;
3783
3793
  //#endregion
3784
3794
  //#region src/writers/writeSthd.d.ts
3785
3795
  /**
3786
- * Write a SubtitleMediaHeaderBox to an IsoDataWriter.
3796
+ * Write a `SubtitleMediaHeaderBox` to an `IsoBoxWriteView`.
3787
3797
  *
3788
3798
  * ISO/IEC 14496-12:2012 - 12.6.2 Subtitle Media Header Box
3789
3799
  *
3790
- * @param box - The SubtitleMediaHeaderBox fields to write
3800
+ * @param box - The `SubtitleMediaHeaderBox` fields to write
3791
3801
  *
3792
- * @returns An IsoDataWriter containing the encoded box
3802
+ * @returns An `IsoBoxWriteView` containing the encoded box
3793
3803
  *
3794
3804
  * @public
3795
3805
  */
@@ -3797,12 +3807,12 @@ declare function writeSthd(box: SubtitleMediaHeaderBox): IsoBoxWriteView;
3797
3807
  //#endregion
3798
3808
  //#region src/writers/writeStsd.d.ts
3799
3809
  /**
3800
- * Write a SampleDescriptionBox to an IsoDataWriter.
3810
+ * Write a `SampleDescriptionBox` to an `IsoBoxWriteView`.
3801
3811
  *
3802
- * @param box - The SampleDescriptionBox fields to write
3812
+ * @param box - The `SampleDescriptionBox` fields to write
3803
3813
  * @param config - The IsoBoxWriteViewConfig to use
3804
3814
  *
3805
- * @returns An IsoDataWriter containing the encoded box
3815
+ * @returns An `IsoBoxWriteView` containing the encoded box
3806
3816
  *
3807
3817
  * @public
3808
3818
  */
@@ -3810,13 +3820,13 @@ declare function writeStsd(box: SampleDescriptionBox, config: IsoBoxWriteViewCon
3810
3820
  //#endregion
3811
3821
  //#region src/writers/writeStss.d.ts
3812
3822
  /**
3813
- * Write a SyncSampleBox to an IsoDataWriter.
3823
+ * Write a `SyncSampleBox` to an `IsoBoxWriteView`.
3814
3824
  *
3815
3825
  * ISO/IEC 14496-12:2012 - 8.6.2 Sync Sample Box
3816
3826
  *
3817
- * @param box - The SyncSampleBox fields to write
3827
+ * @param box - The `SyncSampleBox` fields to write
3818
3828
  *
3819
- * @returns An IsoDataWriter containing the encoded box
3829
+ * @returns An `IsoBoxWriteView` containing the encoded box
3820
3830
  *
3821
3831
  * @public
3822
3832
  */
@@ -3824,11 +3834,11 @@ declare function writeStss(box: SyncSampleBox): IsoBoxWriteView;
3824
3834
  //#endregion
3825
3835
  //#region src/writers/writeSttg.d.ts
3826
3836
  /**
3827
- * Write a WebVttSettingsBox to an IsoDataWriter.
3837
+ * Write a `WebVttSettingsBox` to an `IsoBoxWriteView`.
3828
3838
  *
3829
- * @param box - The WebVttSettingsBox fields to write
3839
+ * @param box - The `WebVttSettingsBox` fields to write
3830
3840
  *
3831
- * @returns An IsoDataWriter containing the encoded box
3841
+ * @returns An `IsoBoxWriteView` containing the encoded box
3832
3842
  *
3833
3843
  * @public
3834
3844
  */
@@ -3836,13 +3846,13 @@ declare function writeSttg(box: WebVttSettingsBox): IsoBoxWriteView;
3836
3846
  //#endregion
3837
3847
  //#region src/writers/writeStts.d.ts
3838
3848
  /**
3839
- * Write a DecodingTimeToSampleBox to an IsoDataWriter.
3849
+ * Write a `DecodingTimeToSampleBox` to an `IsoBoxWriteView`.
3840
3850
  *
3841
3851
  * ISO/IEC 14496-12:2012 - 8.6.1.2 Decoding Time to Sample Box
3842
3852
  *
3843
- * @param box - The DecodingTimeToSampleBox fields to write
3853
+ * @param box - The `DecodingTimeToSampleBox` fields to write
3844
3854
  *
3845
- * @returns An IsoDataWriter containing the encoded box
3855
+ * @returns An `IsoBoxWriteView` containing the encoded box
3846
3856
  *
3847
3857
  * @public
3848
3858
  */
@@ -3850,13 +3860,13 @@ declare function writeStts(box: DecodingTimeToSampleBox): IsoBoxWriteView;
3850
3860
  //#endregion
3851
3861
  //#region src/writers/writeStyp.d.ts
3852
3862
  /**
3853
- * Write a SegmentTypeBox to an IsoDataWriter.
3863
+ * Write a `SegmentTypeBox` to an `IsoBoxWriteView`.
3854
3864
  *
3855
3865
  * ISO/IEC 14496-12:2012 - 8.16.2 Segment Type Box
3856
3866
  *
3857
- * @param box - The SegmentTypeBox fields to write
3867
+ * @param box - The `SegmentTypeBox` fields to write
3858
3868
  *
3859
- * @returns An IsoDataWriter containing the encoded box
3869
+ * @returns An `IsoBoxWriteView` containing the encoded box
3860
3870
  *
3861
3871
  * @public
3862
3872
  */
@@ -3864,13 +3874,13 @@ declare function writeStyp(box: SegmentTypeBox): IsoBoxWriteView;
3864
3874
  //#endregion
3865
3875
  //#region src/writers/writeSubs.d.ts
3866
3876
  /**
3867
- * Write a SubsampleInformationBox to an IsoDataWriter.
3877
+ * Write a `SubsampleInformationBox` to an `IsoBoxWriteView`.
3868
3878
  *
3869
3879
  * ISO/IEC 14496-12:2012 - 8.7.7 Sub-Sample Information Box
3870
3880
  *
3871
- * @param box - The SubsampleInformationBox fields to write
3881
+ * @param box - The `SubsampleInformationBox` fields to write
3872
3882
  *
3873
- * @returns An IsoDataWriter containing the encoded box
3883
+ * @returns An `IsoBoxWriteView` containing the encoded box
3874
3884
  *
3875
3885
  * @public
3876
3886
  */
@@ -3878,13 +3888,13 @@ declare function writeSubs(box: SubsampleInformationBox): IsoBoxWriteView;
3878
3888
  //#endregion
3879
3889
  //#region src/writers/writeTenc.d.ts
3880
3890
  /**
3881
- * Write a TrackEncryptionBox to an IsoDataWriter.
3891
+ * Write a `TrackEncryptionBox` to an `IsoBoxWriteView`.
3882
3892
  *
3883
3893
  * ISO/IEC 23001-7 - 8.2 Track Encryption Box
3884
3894
  *
3885
- * @param box - The TrackEncryptionBox fields to write
3895
+ * @param box - The `TrackEncryptionBox` fields to write
3886
3896
  *
3887
- * @returns An IsoDataWriter containing the encoded box
3897
+ * @returns An `IsoBoxWriteView` containing the encoded box
3888
3898
  *
3889
3899
  * @public
3890
3900
  */
@@ -3892,13 +3902,13 @@ declare function writeTenc(box: TrackEncryptionBox): IsoBoxWriteView;
3892
3902
  //#endregion
3893
3903
  //#region src/writers/writeTfdt.d.ts
3894
3904
  /**
3895
- * Write a TrackFragmentBaseMediaDecodeTimeBox to an IsoDataWriter.
3905
+ * Write a `TrackFragmentBaseMediaDecodeTimeBox` to an `IsoBoxWriteView`.
3896
3906
  *
3897
3907
  * ISO/IEC 14496-12:2012 - 8.8.12 Track Fragment Base Media Decode Time Box
3898
3908
  *
3899
- * @param box - The TrackFragmentBaseMediaDecodeTimeBox fields to write
3909
+ * @param box - The `TrackFragmentBaseMediaDecodeTimeBox` fields to write
3900
3910
  *
3901
- * @returns An IsoDataWriter containing the encoded box
3911
+ * @returns An `IsoBoxWriteView` containing the encoded box
3902
3912
  *
3903
3913
  * @public
3904
3914
  */
@@ -3906,13 +3916,13 @@ declare function writeTfdt(box: TrackFragmentBaseMediaDecodeTimeBox): IsoBoxWrit
3906
3916
  //#endregion
3907
3917
  //#region src/writers/writeTfhd.d.ts
3908
3918
  /**
3909
- * Write a TrackFragmentHeaderBox to an IsoDataWriter.
3919
+ * Write a `TrackFragmentHeaderBox` to an `IsoBoxWriteView`.
3910
3920
  *
3911
3921
  * ISO/IEC 14496-12:2012 - 8.8.7 Track Fragment Header Box
3912
3922
  *
3913
- * @param box - The TrackFragmentHeaderBox fields to write
3923
+ * @param box - The `TrackFragmentHeaderBox` fields to write
3914
3924
  *
3915
- * @returns An IsoDataWriter containing the encoded box
3925
+ * @returns An `IsoBoxWriteView` containing the encoded box
3916
3926
  *
3917
3927
  * @public
3918
3928
  */
@@ -3920,13 +3930,13 @@ declare function writeTfhd(box: TrackFragmentHeaderBox): IsoBoxWriteView;
3920
3930
  //#endregion
3921
3931
  //#region src/writers/writeTfra.d.ts
3922
3932
  /**
3923
- * Write a TrackFragmentRandomAccessBox to an IsoDataWriter.
3933
+ * Write a `TrackFragmentRandomAccessBox` to an `IsoBoxWriteView`.
3924
3934
  *
3925
3935
  * ISO/IEC 14496-12:2012 - 8.8.10 Track Fragment Random Access Box
3926
3936
  *
3927
- * @param box - The TrackFragmentRandomAccessBox fields to write
3937
+ * @param box - The `TrackFragmentRandomAccessBox` fields to write
3928
3938
  *
3929
- * @returns An IsoDataWriter containing the encoded box
3939
+ * @returns An `IsoBoxWriteView` containing the encoded box
3930
3940
  *
3931
3941
  * @public
3932
3942
  */
@@ -3934,13 +3944,13 @@ declare function writeTfra(box: TrackFragmentRandomAccessBox): IsoBoxWriteView;
3934
3944
  //#endregion
3935
3945
  //#region src/writers/writeTkhd.d.ts
3936
3946
  /**
3937
- * Write a TrackHeaderBox to an IsoDataWriter.
3947
+ * Write a `TrackHeaderBox` to an `IsoBoxWriteView`.
3938
3948
  *
3939
3949
  * ISO/IEC 14496-12:2012 - 8.3.2 Track Header Box
3940
3950
  *
3941
- * @param box - The TrackHeaderBox fields to write
3951
+ * @param box - The `TrackHeaderBox` fields to write
3942
3952
  *
3943
- * @returns An IsoDataWriter containing the encoded box
3953
+ * @returns An `IsoBoxWriteView` containing the encoded box
3944
3954
  *
3945
3955
  * @public
3946
3956
  */
@@ -3948,13 +3958,13 @@ declare function writeTkhd(box: TrackHeaderBox): IsoBoxWriteView;
3948
3958
  //#endregion
3949
3959
  //#region src/writers/writeTrex.d.ts
3950
3960
  /**
3951
- * Write a TrackExtendsBox to an IsoDataWriter.
3961
+ * Write a `TrackExtendsBox` to an `IsoBoxWriteView`.
3952
3962
  *
3953
3963
  * ISO/IEC 14496-12:2012 - 8.8.3 Track Extends Box
3954
3964
  *
3955
- * @param box - The TrackExtendsBox fields to write
3965
+ * @param box - The `TrackExtendsBox` fields to write
3956
3966
  *
3957
- * @returns An IsoDataWriter containing the encoded box
3967
+ * @returns An `IsoBoxWriteView` containing the encoded box
3958
3968
  *
3959
3969
  * @public
3960
3970
  */
@@ -3962,13 +3972,13 @@ declare function writeTrex(box: TrackExtendsBox): IsoBoxWriteView;
3962
3972
  //#endregion
3963
3973
  //#region src/writers/writeTrun.d.ts
3964
3974
  /**
3965
- * Write a TrackRunBox to an IsoDataWriter.
3975
+ * Write a `TrackRunBox` to an `IsoBoxWriteView`.
3966
3976
  *
3967
3977
  * ISO/IEC 14496-12:2012 - 8.8.8 Track Run Box
3968
3978
  *
3969
- * @param box - The TrackRunBox fields to write
3979
+ * @param box - The `TrackRunBox` fields to write
3970
3980
  *
3971
- * @returns An IsoDataWriter containing the encoded box
3981
+ * @returns An `IsoBoxWriteView` containing the encoded box
3972
3982
  *
3973
3983
  * @public
3974
3984
  */
@@ -3976,13 +3986,13 @@ declare function writeTrun(box: TrackRunBox): IsoBoxWriteView;
3976
3986
  //#endregion
3977
3987
  //#region src/writers/writeUrl.d.ts
3978
3988
  /**
3979
- * Write a UrlBox to an IsoDataWriter.
3989
+ * Write a `DataEntryUrlBox` to an `IsoBoxWriteView`.
3980
3990
  *
3981
3991
  * ISO/IEC 14496-12:2012 - 8.7.2 Data Reference Box
3982
3992
  *
3983
- * @param box - The UrlBox fields to write
3993
+ * @param box - The `DataEntryUrlBox` fields to write
3984
3994
  *
3985
- * @returns An IsoDataWriter containing the encoded box
3995
+ * @returns An `IsoBoxWriteView` containing the encoded box
3986
3996
  *
3987
3997
  * @public
3988
3998
  */
@@ -3990,13 +4000,13 @@ declare function writeUrl(box: DataEntryUrlBox): IsoBoxWriteView;
3990
4000
  //#endregion
3991
4001
  //#region src/writers/writeUrn.d.ts
3992
4002
  /**
3993
- * Write a UrnBox to an IsoDataWriter.
4003
+ * Write a `DataEntryUrnBox` to an `IsoBoxWriteView`.
3994
4004
  *
3995
4005
  * ISO/IEC 14496-12:2012 - 8.7.2 Data Reference Box
3996
4006
  *
3997
- * @param box - The UrnBox fields to write
4007
+ * @param box - The `DataEntryUrnBox` fields to write
3998
4008
  *
3999
- * @returns An IsoDataWriter containing the encoded box
4009
+ * @returns An `IsoBoxWriteView` containing the encoded box
4000
4010
  *
4001
4011
  * @public
4002
4012
  */
@@ -4004,14 +4014,14 @@ declare function writeUrn(box: DataEntryUrnBox): IsoBoxWriteView;
4004
4014
  //#endregion
4005
4015
  //#region src/writers/writeVisualSampleEntryBox.d.ts
4006
4016
  /**
4007
- * Write a VisualSampleEntryBox to an IsoDataWriter.
4017
+ * Write a `VisualSampleEntryBox` to an `IsoBoxWriteView`.
4008
4018
  *
4009
4019
  * ISO/IEC 14496-12:2012 - 12.1.3 Visual Sample Entry
4010
4020
  *
4011
- * @param box - The VisualSampleEntryBox fields to write
4021
+ * @param box - The `VisualSampleEntryBox` fields to write
4012
4022
  * @param config - The configuration for the writer
4013
4023
  *
4014
- * @returns An IsoDataWriter containing the encoded box
4024
+ * @returns An `IsoBoxWriteView` containing the encoded box
4015
4025
  *
4016
4026
  * @public
4017
4027
  */
@@ -4019,11 +4029,11 @@ declare function writeVisualSampleEntryBox<T$1 extends VisualSampleEntryType = V
4019
4029
  //#endregion
4020
4030
  //#region src/writers/writeVlab.d.ts
4021
4031
  /**
4022
- * Write a WebVttSourceLabelBox to an IsoDataWriter.
4032
+ * Write a `WebVttSourceLabelBox` to an `IsoBoxWriteView`.
4023
4033
  *
4024
- * @param box - The WebVttSourceLabelBox fields to write
4034
+ * @param box - The `WebVttSourceLabelBox` fields to write
4025
4035
  *
4026
- * @returns An IsoDataWriter containing the encoded box
4036
+ * @returns An `IsoBoxWriteView` containing the encoded box
4027
4037
  *
4028
4038
  * @public
4029
4039
  */
@@ -4031,13 +4041,13 @@ declare function writeVlab(box: WebVttSourceLabelBox): IsoBoxWriteView;
4031
4041
  //#endregion
4032
4042
  //#region src/writers/writeVmhd.d.ts
4033
4043
  /**
4034
- * Write a VideoMediaHeaderBox to an IsoDataWriter.
4044
+ * Write a `VideoMediaHeaderBox` to an `IsoBoxWriteView`.
4035
4045
  *
4036
4046
  * ISO/IEC 14496-12:2012 - 12.1.2 Video Media Header Box
4037
4047
  *
4038
- * @param box - The VideoMediaHeaderBox fields to write
4048
+ * @param box - The `VideoMediaHeaderBox` fields to write
4039
4049
  *
4040
- * @returns An IsoDataWriter containing the encoded box
4050
+ * @returns An `IsoBoxWriteView` containing the encoded box
4041
4051
  *
4042
4052
  * @public
4043
4053
  */
@@ -4045,11 +4055,11 @@ declare function writeVmhd(box: VideoMediaHeaderBox): IsoBoxWriteView;
4045
4055
  //#endregion
4046
4056
  //#region src/writers/writeVttC.d.ts
4047
4057
  /**
4048
- * Write a WebVttConfigurationBox to an IsoDataWriter.
4058
+ * Write a `WebVttConfigurationBox` to an `IsoBoxWriteView`.
4049
4059
  *
4050
- * @param box - The WebVttConfigurationBox fields to write
4060
+ * @param box - The `WebVttConfigurationBox` fields to write
4051
4061
  *
4052
- * @returns An IsoDataWriter containing the encoded box
4062
+ * @returns An `IsoBoxWriteView` containing the encoded box
4053
4063
  *
4054
4064
  * @public
4055
4065
  */
@@ -4057,13 +4067,13 @@ declare function writeVttC(box: WebVttConfigurationBox): IsoBoxWriteView;
4057
4067
  //#endregion
4058
4068
  //#region src/writers/writeVtte.d.ts
4059
4069
  /**
4060
- * Write a WebVttEmptySampleBox to an IsoDataWriter.
4070
+ * Write a `WebVttEmptySampleBox` to an `IsoBoxWriteView`.
4061
4071
  *
4062
- * @returns An IsoDataWriter containing the encoded box
4072
+ * @returns An `IsoBoxWriteView` containing the encoded box
4063
4073
  *
4064
4074
  * @public
4065
4075
  */
4066
4076
  declare function writeVtte(_: WebVttEmptySampleBox): IsoBoxWriteView;
4067
4077
  //#endregion
4068
- export { AdditionalMetadataContainerBox, AdditionalMetadataContainerBoxChild, AudioRenderingIndicationBox, AudioSampleEntryBox, AudioSampleEntryBoxChild, AudioSampleEntryType, Box, CONTAINERS, ChunkLargeOffsetBox, ChunkOffsetBox, CompactSampleSizeBox, CompositionTimeToSampleBox, CompositionTimeToSampleEntry, DATA, DataEntryUrlBox, DataEntryUrnBox, DataInformationBox, DataInformationBoxChild, DataReferenceBox, DecodingTimeSample, DecodingTimeToSampleBox, DegradationPriorityBox, EditBox, EditBoxChild, EditListBox, EditListEntry, EncryptedSample, Entity, EventMessageBox, ExtendedLanguageBox, FileTypeBox, FreeSpaceBox, FullBox, GroupsListBox, GroupsListBoxChild, HandlerReferenceBox, HintMediaHeaderBox, INT, IdentifiedMediaDataBox, IpmpInfoBox, IsoBox, IsoBoxContainer, IsoBoxContainerMap, IsoBoxData, IsoBoxMap, IsoBoxReadView, IsoBoxReadViewConfig, IsoBoxReadableStream, IsoBoxReader, IsoBoxReaderMap, IsoBoxReaderReturn, IsoBoxStreamable, IsoBoxType, IsoBoxWriteView, IsoBoxWriteViewConfig, IsoBoxWriter, IsoBoxWriterMap, IsoFieldTypeMap, IsoTypedParsedBox, ItemExtent, ItemInfoBox, ItemInfoBoxChild, ItemInfoEntry, ItemLocation, ItemLocationBox, ItemProtectionBox, ItemProtectionBoxChild, ItemReferenceBox, ItemReferenceBoxChild, LabelBox, MediaBox, MediaBoxChild, MediaDataBox, MediaHeaderBox, MediaInformationBox, MediaInformationBoxChild, MetaBox, MetaBoxChild, MovieBox, MovieBoxChild, MovieExtendsBox, MovieExtendsBoxChild, MovieExtendsHeaderBox, MovieFragmentBox, MovieFragmentBoxChild, MovieFragmentHeaderBox, MovieFragmentRandomAccessBox, MovieFragmentRandomAccessBoxChild, MovieFragmentRandomAccessOffsetBox, MovieHeaderBox, NullMediaHeaderBox, OriginalFormatBox, ParsedBox, ParsedIsoBox, PreselectionGroupBox, PreselectionGroupBoxChild, PrimaryItemBox, ProducerReferenceTimeBox, ProtectionSchemeInformationBox, ProtectionSchemeInformationBoxChild, ProtectionSystemSpecificHeaderBox, STRING, SampleAuxiliaryInformationOffsetsBox, SampleAuxiliaryInformationSizesBox, SampleDependencyTypeBox, SampleDescriptionBox, SampleEncryptionBox, SampleEntryBox, SampleGroupDescriptionBox, SampleSizeBox, SampleTableBox, SampleTableBoxChild, SampleToChunkBox, SampleToChunkEntry, SampleToGroupBox, SampleToGroupEntry, SchemeInformationBox, SchemeInformationBoxChild, SchemeTypeBox, SegmentIndexBox, SegmentIndexReference, SegmentTypeBox, ShadowSyncEntry, ShadowSyncSampleBox, SingleItemTypeReferenceBox, SoundMediaHeaderBox, SubTrackBox, SubTrackBoxChild, Subsample, SubsampleEncryption, SubsampleEntry, SubsampleInformationBox, Subsegment, SubsegmentIndexBox, SubsegmentRange, SubtitleMediaHeaderBox, SyncSample, SyncSampleBox, TEMPLATE, TrackBox, TrackBoxChild, TrackEncryptionBox, TrackExtendsBox, TrackFragmentBaseMediaDecodeTimeBox, TrackFragmentBox, TrackFragmentBoxChild, TrackFragmentHeaderBox, TrackFragmentRandomAccessBox, TrackFragmentRandomAccessEntry, TrackHeaderBox, TrackKindBox, TrackReferenceBox, TrackReferenceBoxChild, TrackReferenceTypeBox, TrackRunBox, TrackRunSample, TraverseIsoBoxesConfig, TypeBox, UINT, UTF8, UserDataBox, UserDataBoxChild, VideoMediaHeaderBox, VisualSampleEntryBox, VisualSampleEntryBoxChild, VisualSampleEntryType, WebVttConfigurationBox, WebVttCueBox, WebVttCueChild, WebVttCueIdBox, WebVttCuePayloadBox, WebVttEmptySampleBox, WebVttSettingsBox, WebVttSourceLabelBox, co64, createAudioSampleEntryReader, createIsoBoxReadableStream, createVisualSampleEntryReader, filterIsoBoxes, findIsoBox, isContainer, isFullBox, readArdi, readAudioSampleEntryBox, readAvc1, readAvc2, readAvc3, readAvc4, readCtts, readDref, readElng, readElst, readEmsg, readEnca, readEncv, readFree, readFrma, readFtyp, readHdlr, readHev1, readHvc1, readIden, readImda, readIsoBoxes, readKind, readLabl, readMdat, readMdhd, readMehd, readMeta, readMfhd, readMfro, readMp4a, readMvhd, readPayl, readPrft, readPrsl, readPssh, readSchm, readSdtp, readSidx, readSkip, readSmhd, readSsix, readSthd, readStsd, readStss, readSttg, readStts, readStyp, readSubs, readTenc, readTfdt, readTfhd, readTfra, readTkhd, readTrex, readTrun, readUrl, readUrn, readVisualSampleEntryBox, readVlab, readVmhd, readVttC, readVtte, stz2, traverseIsoBoxes, url, urn, writeArdi, writeAudioSampleEntryBox, writeAvc1, writeAvc2, writeAvc3, writeAvc4, writeCtts, writeDref, writeElng, writeElst, writeEmsg, writeEnca, writeEncv, writeFree, writeFrma, writeFtyp, writeHdlr, writeHev1, writeHvc1, writeIden, writeImda, writeIsoBox, writeIsoBoxes, writeKind, writeLabl, writeMdat, writeMdhd, writeMehd, writeMeta, writeMfhd, writeMfro, writeMp4a, writeMvhd, writePayl, writePrft, writePrsl, writePssh, writeSchm, writeSdtp, writeSidx, writeSkip, writeSmhd, writeSsix, writeSthd, writeStsd, writeStss, writeSttg, writeStts, writeStyp, writeSubs, writeTenc, writeTfdt, writeTfhd, writeTfra, writeTkhd, writeTrex, writeTrun, writeUrl, writeUrn, writeVisualSampleEntryBox, writeVlab, writeVmhd, writeVttC, writeVtte };
4078
+ export { AdditionalMetadataContainerBox, AdditionalMetadataContainerBoxChild, AudioRenderingIndicationBox, AudioSampleEntryBox, AudioSampleEntryBoxChild, AudioSampleEntryType, Box, CONTAINERS, ChunkLargeOffsetBox, ChunkOffsetBox, CompactSampleSizeBox, CompositionTimeToSampleBox, CompositionTimeToSampleEntry, DATA, DataEntryUrlBox, DataEntryUrnBox, DataInformationBox, DataInformationBoxChild, DataReferenceBox, DecodingTimeSample, DecodingTimeToSampleBox, DegradationPriorityBox, EditBox, EditBoxChild, EditListBox, EditListEntry, EncryptedSample, Entity, EventMessageBox, ExtendedLanguageBox, FileTypeBox, FreeSpaceBox, FullBox, GroupsListBox, GroupsListBoxChild, HandlerReferenceBox, HintMediaHeaderBox, INT, IdentifiedMediaDataBox, IpmpInfoBox, IsoBox, IsoBoxContainer, IsoBoxContainerMap, IsoBoxData, IsoBoxFields, IsoBoxMap, IsoBoxReadView, IsoBoxReadViewConfig, IsoBoxReadableStream, IsoBoxReader, IsoBoxReaderMap, IsoBoxReaderReturn, IsoBoxStreamable, IsoBoxType, IsoBoxWriteView, IsoBoxWriteViewConfig, IsoBoxWriter, IsoBoxWriterMap, IsoFieldTypeMap, IsoTypedParsedBox, ItemExtent, ItemInfoBox, ItemInfoBoxChild, ItemInfoEntry, ItemLocation, ItemLocationBox, ItemProtectionBox, ItemProtectionBoxChild, ItemReferenceBox, ItemReferenceBoxChild, LabelBox, MediaBox, MediaBoxChild, MediaDataBox, MediaHeaderBox, MediaInformationBox, MediaInformationBoxChild, MetaBox, MetaBoxChild, MovieBox, MovieBoxChild, MovieExtendsBox, MovieExtendsBoxChild, MovieExtendsHeaderBox, MovieFragmentBox, MovieFragmentBoxChild, MovieFragmentHeaderBox, MovieFragmentRandomAccessBox, MovieFragmentRandomAccessBoxChild, MovieFragmentRandomAccessOffsetBox, MovieHeaderBox, NullMediaHeaderBox, OriginalFormatBox, ParsedBox, ParsedIsoBox, PreselectionGroupBox, PreselectionGroupBoxChild, PrimaryItemBox, ProducerReferenceTimeBox, ProtectionSchemeInformationBox, ProtectionSchemeInformationBoxChild, ProtectionSystemSpecificHeaderBox, STRING, SampleAuxiliaryInformationOffsetsBox, SampleAuxiliaryInformationSizesBox, SampleDependencyTypeBox, SampleDescriptionBox, SampleEncryptionBox, SampleEntryBox, SampleGroupDescriptionBox, SampleSizeBox, SampleTableBox, SampleTableBoxChild, SampleToChunkBox, SampleToChunkEntry, SampleToGroupBox, SampleToGroupEntry, SchemeInformationBox, SchemeInformationBoxChild, SchemeTypeBox, SegmentIndexBox, SegmentIndexReference, SegmentTypeBox, ShadowSyncEntry, ShadowSyncSampleBox, SingleItemTypeReferenceBox, SoundMediaHeaderBox, SubTrackBox, SubTrackBoxChild, Subsample, SubsampleEncryption, SubsampleEntry, SubsampleInformationBox, Subsegment, SubsegmentIndexBox, SubsegmentRange, SubtitleMediaHeaderBox, SyncSample, SyncSampleBox, TEMPLATE, TrackBox, TrackBoxChild, TrackEncryptionBox, TrackExtendsBox, TrackFragmentBaseMediaDecodeTimeBox, TrackFragmentBox, TrackFragmentBoxChild, TrackFragmentHeaderBox, TrackFragmentRandomAccessBox, TrackFragmentRandomAccessEntry, TrackHeaderBox, TrackKindBox, TrackReferenceBox, TrackReferenceBoxChild, TrackReferenceTypeBox, TrackRunBox, TrackRunSample, TraverseIsoBoxesConfig, TypeBox, UINT, UTF8, UserDataBox, UserDataBoxChild, VideoMediaHeaderBox, VisualSampleEntryBox, VisualSampleEntryBoxChild, VisualSampleEntryType, WebVttConfigurationBox, WebVttCueBox, WebVttCueChild, WebVttCueIdBox, WebVttCuePayloadBox, WebVttEmptySampleBox, WebVttSettingsBox, WebVttSourceLabelBox, co64, createAudioSampleEntryReader, createIsoBoxReadableStream, createVisualSampleEntryReader, filterIsoBoxes, findIsoBox, isContainer, isFullBox, readArdi, readAudioSampleEntryBox, readAvc1, readAvc2, readAvc3, readAvc4, readCtts, readDref, readElng, readElst, readEmsg, readEnca, readEncv, readFree, readFrma, readFtyp, readHdlr, readHev1, readHvc1, readIden, readImda, readIsoBoxes, readKind, readLabl, readMdat, readMdhd, readMehd, readMeta, readMfhd, readMfro, readMp4a, readMvhd, readPayl, readPrft, readPrsl, readPssh, readSchm, readSdtp, readSidx, readSkip, readSmhd, readSsix, readSthd, readStsd, readStss, readSttg, readStts, readStyp, readSubs, readTenc, readTfdt, readTfhd, readTfra, readTkhd, readTrex, readTrun, readUrl, readUrn, readVisualSampleEntryBox, readVlab, readVmhd, readVttC, readVtte, stz2, traverseIsoBoxes, url, urn, writeArdi, writeAudioSampleEntryBox, writeAvc1, writeAvc2, writeAvc3, writeAvc4, writeCtts, writeDref, writeElng, writeElst, writeEmsg, writeEnca, writeEncv, writeFree, writeFrma, writeFtyp, writeHdlr, writeHev1, writeHvc1, writeIden, writeImda, writeIsoBox, writeIsoBoxes, writeKind, writeLabl, writeMdat, writeMdhd, writeMehd, writeMeta, writeMfhd, writeMfro, writeMp4a, writeMvhd, writePayl, writePrft, writePrsl, writePssh, writeSchm, writeSdtp, writeSidx, writeSkip, writeSmhd, writeSsix, writeSthd, writeStsd, writeStss, writeSttg, writeStts, writeStyp, writeSubs, writeTenc, writeTfdt, writeTfhd, writeTfra, writeTkhd, writeTrex, writeTrun, writeUrl, writeUrn, writeVisualSampleEntryBox, writeVlab, writeVmhd, writeVttC, writeVtte };
4069
4079
  //# sourceMappingURL=index.d.ts.map