@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 +556 -546
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +430 -431
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -50,22 +50,57 @@ function isContainer(box) {
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
//#endregion
|
|
53
|
-
//#region src/
|
|
53
|
+
//#region src/IsoBoxFields.ts
|
|
54
54
|
/**
|
|
55
|
-
* The
|
|
55
|
+
* The UTF8 field type
|
|
56
56
|
*
|
|
57
57
|
* @public
|
|
58
58
|
*/
|
|
59
|
-
const
|
|
60
|
-
|
|
61
|
-
//#endregion
|
|
62
|
-
//#region src/fields/UINT.ts
|
|
59
|
+
const UTF8 = "utf8";
|
|
63
60
|
/**
|
|
64
61
|
* The unsigned integer field type
|
|
65
62
|
*
|
|
66
63
|
* @public
|
|
67
64
|
*/
|
|
68
65
|
const UINT = "uint";
|
|
66
|
+
/**
|
|
67
|
+
* The template field type
|
|
68
|
+
*
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
const TEMPLATE = "template";
|
|
72
|
+
/**
|
|
73
|
+
* The string field type
|
|
74
|
+
*
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
const STRING = "string";
|
|
78
|
+
/**
|
|
79
|
+
* The integer field type
|
|
80
|
+
*
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
const INT = "int";
|
|
84
|
+
/**
|
|
85
|
+
* The data field type
|
|
86
|
+
*
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
const DATA = "data";
|
|
90
|
+
/**
|
|
91
|
+
* The ISO BMFF field types
|
|
92
|
+
*
|
|
93
|
+
* @enum
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
const IsoBoxFields = {
|
|
97
|
+
DATA,
|
|
98
|
+
INT,
|
|
99
|
+
STRING,
|
|
100
|
+
TEMPLATE,
|
|
101
|
+
UINT,
|
|
102
|
+
UTF8
|
|
103
|
+
};
|
|
69
104
|
|
|
70
105
|
//#endregion
|
|
71
106
|
//#region src/IsoBoxWriteView.ts
|
|
@@ -452,42 +487,6 @@ function findIsoBox(boxes, callback, config) {
|
|
|
452
487
|
return null;
|
|
453
488
|
}
|
|
454
489
|
|
|
455
|
-
//#endregion
|
|
456
|
-
//#region src/fields/DATA.ts
|
|
457
|
-
/**
|
|
458
|
-
* The data field type
|
|
459
|
-
*
|
|
460
|
-
* @public
|
|
461
|
-
*/
|
|
462
|
-
const DATA = "data";
|
|
463
|
-
|
|
464
|
-
//#endregion
|
|
465
|
-
//#region src/fields/INT.ts
|
|
466
|
-
/**
|
|
467
|
-
* The integer field type
|
|
468
|
-
*
|
|
469
|
-
* @public
|
|
470
|
-
*/
|
|
471
|
-
const INT = "int";
|
|
472
|
-
|
|
473
|
-
//#endregion
|
|
474
|
-
//#region src/fields/STRING.ts
|
|
475
|
-
/**
|
|
476
|
-
* The string field type
|
|
477
|
-
*
|
|
478
|
-
* @public
|
|
479
|
-
*/
|
|
480
|
-
const STRING = "string";
|
|
481
|
-
|
|
482
|
-
//#endregion
|
|
483
|
-
//#region src/fields/UTF8.ts
|
|
484
|
-
/**
|
|
485
|
-
* The UTF8 field type
|
|
486
|
-
*
|
|
487
|
-
* @public
|
|
488
|
-
*/
|
|
489
|
-
const UTF8 = "utf8";
|
|
490
|
-
|
|
491
490
|
//#endregion
|
|
492
491
|
//#region src/utils/readData.ts
|
|
493
492
|
function readData(dataView, offset, size) {
|
|
@@ -847,12 +846,12 @@ function writeIsoBoxes(boxes, config) {
|
|
|
847
846
|
//#endregion
|
|
848
847
|
//#region src/readers/readAudioSampleEntryBox.ts
|
|
849
848
|
/**
|
|
850
|
-
* Parse a AudioSampleEntryBox from an
|
|
849
|
+
* Parse a `AudioSampleEntryBox` from an `IsoBoxReadView`.
|
|
851
850
|
*
|
|
852
|
-
* @param type - The type of AudioSampleEntryBox to read
|
|
853
|
-
* @param view - The
|
|
851
|
+
* @param type - The type of `AudioSampleEntryBox` to read
|
|
852
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
854
853
|
*
|
|
855
|
-
* @returns A parsed AudioSampleEntryBox
|
|
854
|
+
* @returns A parsed `AudioSampleEntryBox`
|
|
856
855
|
*
|
|
857
856
|
* @public
|
|
858
857
|
*/
|
|
@@ -875,14 +874,14 @@ function readAudioSampleEntryBox(type, view) {
|
|
|
875
874
|
//#endregion
|
|
876
875
|
//#region src/readers/createAudioSampleEntryReader.ts
|
|
877
876
|
/**
|
|
878
|
-
* Creates a reader function for AudioSampleEntryBox with a custom type.
|
|
877
|
+
* Creates a reader function for `AudioSampleEntryBox` with a custom type.
|
|
879
878
|
*
|
|
880
879
|
* This utility allows reading audio sample entry boxes with types that
|
|
881
|
-
* aren't in the standard AudioSampleEntryType union (e.g., 'mp4a'
|
|
880
|
+
* aren't in the standard `AudioSampleEntryType` union (e.g., `'mp4a'`, `'enca'`).
|
|
882
881
|
*
|
|
883
882
|
* @param type - The 4-character box type
|
|
884
883
|
*
|
|
885
|
-
* @returns A reader function that can be passed to readIsoBoxes
|
|
884
|
+
* @returns A reader function that can be passed to `readIsoBoxes`
|
|
886
885
|
*
|
|
887
886
|
* @example
|
|
888
887
|
* ```ts
|
|
@@ -903,12 +902,12 @@ function createAudioSampleEntryReader(type) {
|
|
|
903
902
|
//#endregion
|
|
904
903
|
//#region src/readers/readVisualSampleEntryBox.ts
|
|
905
904
|
/**
|
|
906
|
-
* Parse a VisualSampleEntryBox from an
|
|
905
|
+
* Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
|
|
907
906
|
*
|
|
908
|
-
* @param type - The type of VisualSampleEntryBox to read
|
|
909
|
-
* @param view - The
|
|
907
|
+
* @param type - The type of `VisualSampleEntryBox` to read
|
|
908
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
910
909
|
*
|
|
911
|
-
* @returns A parsed VisualSampleEntryBox
|
|
910
|
+
* @returns A parsed `VisualSampleEntryBox`
|
|
912
911
|
*
|
|
913
912
|
* @public
|
|
914
913
|
*/
|
|
@@ -937,14 +936,14 @@ function readVisualSampleEntryBox(type, view) {
|
|
|
937
936
|
//#endregion
|
|
938
937
|
//#region src/readers/createVisualSampleEntryReader.ts
|
|
939
938
|
/**
|
|
940
|
-
* Creates a reader function for VisualSampleEntryBox with a custom type.
|
|
939
|
+
* Creates a reader function for `VisualSampleEntryBox` with a custom type.
|
|
941
940
|
*
|
|
942
941
|
* This utility allows reading visual sample entry boxes with types that
|
|
943
|
-
* aren't in the standard VisualSampleEntryType union (e.g., 'avc1'
|
|
942
|
+
* aren't in the standard `VisualSampleEntryType` union (e.g., `'avc1'`, `'hvc1'`).
|
|
944
943
|
*
|
|
945
944
|
* @param type - The 4-character box type
|
|
946
945
|
*
|
|
947
|
-
* @returns A reader function that can be passed to readIsoBoxes
|
|
946
|
+
* @returns A reader function that can be passed to `readIsoBoxes`
|
|
948
947
|
*
|
|
949
948
|
* @example
|
|
950
949
|
* ```ts
|
|
@@ -965,11 +964,11 @@ function createVisualSampleEntryReader(type) {
|
|
|
965
964
|
//#endregion
|
|
966
965
|
//#region src/readers/readArdi.ts
|
|
967
966
|
/**
|
|
968
|
-
* Parse a AudioRenderingIndicationBox from an
|
|
967
|
+
* Parse a `AudioRenderingIndicationBox` from an `IsoBoxReadView`.
|
|
969
968
|
*
|
|
970
|
-
* @param view - The
|
|
969
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
971
970
|
*
|
|
972
|
-
* @returns A parsed AudioRenderingIndicationBox
|
|
971
|
+
* @returns A parsed `AudioRenderingIndicationBox`
|
|
973
972
|
*
|
|
974
973
|
* @public
|
|
975
974
|
*/
|
|
@@ -984,11 +983,11 @@ function readArdi(view) {
|
|
|
984
983
|
//#endregion
|
|
985
984
|
//#region src/readers/readAvc1.ts
|
|
986
985
|
/**
|
|
987
|
-
* Parse a VisualSampleEntryBox from an
|
|
986
|
+
* Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
|
|
988
987
|
*
|
|
989
|
-
* @param view - The
|
|
988
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
990
989
|
*
|
|
991
|
-
* @returns A parsed VisualSampleEntryBox
|
|
990
|
+
* @returns A parsed `VisualSampleEntryBox`
|
|
992
991
|
*
|
|
993
992
|
* @public
|
|
994
993
|
*/
|
|
@@ -999,11 +998,11 @@ function readAvc1(view) {
|
|
|
999
998
|
//#endregion
|
|
1000
999
|
//#region src/readers/readAvc2.ts
|
|
1001
1000
|
/**
|
|
1002
|
-
* Parse a VisualSampleEntryBox from an
|
|
1001
|
+
* Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
|
|
1003
1002
|
*
|
|
1004
|
-
* @param view - The
|
|
1003
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1005
1004
|
*
|
|
1006
|
-
* @returns A parsed VisualSampleEntryBox
|
|
1005
|
+
* @returns A parsed `VisualSampleEntryBox`
|
|
1007
1006
|
*
|
|
1008
1007
|
* @public
|
|
1009
1008
|
*/
|
|
@@ -1014,11 +1013,11 @@ function readAvc2(view) {
|
|
|
1014
1013
|
//#endregion
|
|
1015
1014
|
//#region src/readers/readAvc3.ts
|
|
1016
1015
|
/**
|
|
1017
|
-
* Parse a VisualSampleEntryBox from an
|
|
1016
|
+
* Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
|
|
1018
1017
|
*
|
|
1019
|
-
* @param view - The
|
|
1018
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1020
1019
|
*
|
|
1021
|
-
* @returns A parsed VisualSampleEntryBox
|
|
1020
|
+
* @returns A parsed `VisualSampleEntryBox`
|
|
1022
1021
|
*
|
|
1023
1022
|
* @public
|
|
1024
1023
|
*/
|
|
@@ -1029,11 +1028,11 @@ function readAvc3(view) {
|
|
|
1029
1028
|
//#endregion
|
|
1030
1029
|
//#region src/readers/readAvc4.ts
|
|
1031
1030
|
/**
|
|
1032
|
-
* Parse a VisualSampleEntryBox from an
|
|
1031
|
+
* Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
|
|
1033
1032
|
*
|
|
1034
|
-
* @param view - The
|
|
1033
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1035
1034
|
*
|
|
1036
|
-
* @returns A parsed VisualSampleEntryBox
|
|
1035
|
+
* @returns A parsed `VisualSampleEntryBox`
|
|
1037
1036
|
*
|
|
1038
1037
|
* @public
|
|
1039
1038
|
*/
|
|
@@ -1044,11 +1043,11 @@ function readAvc4(view) {
|
|
|
1044
1043
|
//#endregion
|
|
1045
1044
|
//#region src/readers/readCtts.ts
|
|
1046
1045
|
/**
|
|
1047
|
-
* Parse a CompositionTimeToSampleBox from an
|
|
1046
|
+
* Parse a `CompositionTimeToSampleBox` from an `IsoBoxReadView`.
|
|
1048
1047
|
*
|
|
1049
|
-
* @param view - The
|
|
1048
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1050
1049
|
*
|
|
1051
|
-
* @returns A parsed CompositionTimeToSampleBox
|
|
1050
|
+
* @returns A parsed `CompositionTimeToSampleBox`
|
|
1052
1051
|
*
|
|
1053
1052
|
* @public
|
|
1054
1053
|
*/
|
|
@@ -1071,11 +1070,11 @@ function readCtts(view) {
|
|
|
1071
1070
|
//#endregion
|
|
1072
1071
|
//#region src/readers/readDref.ts
|
|
1073
1072
|
/**
|
|
1074
|
-
* Parse a DataReferenceBox from an
|
|
1073
|
+
* Parse a `DataReferenceBox` from an `IsoBoxReadView`.
|
|
1075
1074
|
*
|
|
1076
|
-
* @param view - The
|
|
1075
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1077
1076
|
*
|
|
1078
|
-
* @returns A parsed DataReferenceBox
|
|
1077
|
+
* @returns A parsed `DataReferenceBox`
|
|
1079
1078
|
*
|
|
1080
1079
|
* @public
|
|
1081
1080
|
*/
|
|
@@ -1094,11 +1093,11 @@ function readDref(view) {
|
|
|
1094
1093
|
//#endregion
|
|
1095
1094
|
//#region src/readers/readElng.ts
|
|
1096
1095
|
/**
|
|
1097
|
-
* Parse a ExtendedLanguageBox from an
|
|
1096
|
+
* Parse a `ExtendedLanguageBox` from an `IsoBoxReadView`.
|
|
1098
1097
|
*
|
|
1099
|
-
* @param view - The
|
|
1098
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1100
1099
|
*
|
|
1101
|
-
* @returns A parsed ExtendedLanguageBox
|
|
1100
|
+
* @returns A parsed `ExtendedLanguageBox`
|
|
1102
1101
|
*
|
|
1103
1102
|
* @public
|
|
1104
1103
|
*/
|
|
@@ -1113,11 +1112,11 @@ function readElng(view) {
|
|
|
1113
1112
|
//#endregion
|
|
1114
1113
|
//#region src/readers/readElst.ts
|
|
1115
1114
|
/**
|
|
1116
|
-
* Parse a
|
|
1115
|
+
* Parse a `EditListBox` from an `IsoBoxReadView`.
|
|
1117
1116
|
*
|
|
1118
|
-
* @param view - The
|
|
1117
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1119
1118
|
*
|
|
1120
|
-
* @returns A parsed
|
|
1119
|
+
* @returns A parsed `EditListBox`
|
|
1121
1120
|
*
|
|
1122
1121
|
* @public
|
|
1123
1122
|
*/
|
|
@@ -1142,11 +1141,11 @@ function readElst(view) {
|
|
|
1142
1141
|
//#endregion
|
|
1143
1142
|
//#region src/readers/readEmsg.ts
|
|
1144
1143
|
/**
|
|
1145
|
-
* Parse
|
|
1144
|
+
* Parse a `EventMessageBox` from an `IsoBoxReadView`.
|
|
1146
1145
|
*
|
|
1147
|
-
* @param view - The
|
|
1146
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1148
1147
|
*
|
|
1149
|
-
* @returns A parsed EventMessageBox
|
|
1148
|
+
* @returns A parsed `EventMessageBox`
|
|
1150
1149
|
*
|
|
1151
1150
|
* @public
|
|
1152
1151
|
*/
|
|
@@ -1178,11 +1177,11 @@ function readEmsg(view) {
|
|
|
1178
1177
|
//#endregion
|
|
1179
1178
|
//#region src/readers/readEnca.ts
|
|
1180
1179
|
/**
|
|
1181
|
-
* Parse an
|
|
1180
|
+
* Parse an `AudioSampleEntryBox` from an `IsoBoxReadView`.
|
|
1182
1181
|
*
|
|
1183
|
-
* @param view - The
|
|
1182
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1184
1183
|
*
|
|
1185
|
-
* @returns A parsed
|
|
1184
|
+
* @returns A parsed `AudioSampleEntryBox`
|
|
1186
1185
|
*
|
|
1187
1186
|
* @public
|
|
1188
1187
|
*/
|
|
@@ -1193,11 +1192,11 @@ function readEnca(view) {
|
|
|
1193
1192
|
//#endregion
|
|
1194
1193
|
//#region src/readers/readEncv.ts
|
|
1195
1194
|
/**
|
|
1196
|
-
* Parse a VisualSampleEntryBox from an
|
|
1195
|
+
* Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
|
|
1197
1196
|
*
|
|
1198
|
-
* @param view - The
|
|
1197
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1199
1198
|
*
|
|
1200
|
-
* @returns A parsed VisualSampleEntryBox
|
|
1199
|
+
* @returns A parsed `VisualSampleEntryBox`
|
|
1201
1200
|
*
|
|
1202
1201
|
* @public
|
|
1203
1202
|
*/
|
|
@@ -1208,11 +1207,11 @@ function readEncv(view) {
|
|
|
1208
1207
|
//#endregion
|
|
1209
1208
|
//#region src/readers/readFree.ts
|
|
1210
1209
|
/**
|
|
1211
|
-
* Parse a
|
|
1210
|
+
* Parse a `FreeSpaceBox` from an `IsoBoxReadView`.
|
|
1212
1211
|
*
|
|
1213
|
-
* @param view - The
|
|
1212
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1214
1213
|
*
|
|
1215
|
-
* @returns A parsed
|
|
1214
|
+
* @returns A parsed `FreeSpaceBox`
|
|
1216
1215
|
*
|
|
1217
1216
|
* @public
|
|
1218
1217
|
*/
|
|
@@ -1226,11 +1225,11 @@ function readFree(view) {
|
|
|
1226
1225
|
//#endregion
|
|
1227
1226
|
//#region src/readers/readFrma.ts
|
|
1228
1227
|
/**
|
|
1229
|
-
* Parse an OriginalFormatBox from an
|
|
1228
|
+
* Parse an `OriginalFormatBox` from an `IsoBoxReadView`.
|
|
1230
1229
|
*
|
|
1231
|
-
* @param view - The
|
|
1230
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1232
1231
|
*
|
|
1233
|
-
* @returns A parsed OriginalFormatBox
|
|
1232
|
+
* @returns A parsed `OriginalFormatBox`
|
|
1234
1233
|
*
|
|
1235
1234
|
* @public
|
|
1236
1235
|
*/
|
|
@@ -1244,11 +1243,11 @@ function readFrma(view) {
|
|
|
1244
1243
|
//#endregion
|
|
1245
1244
|
//#region src/readers/readFtyp.ts
|
|
1246
1245
|
/**
|
|
1247
|
-
* Parse a FileTypeBox from an
|
|
1246
|
+
* Parse a `FileTypeBox` from an `IsoBoxReadView`.
|
|
1248
1247
|
*
|
|
1249
|
-
* @param view - The
|
|
1248
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1250
1249
|
*
|
|
1251
|
-
* @returns A parsed FileTypeBox
|
|
1250
|
+
* @returns A parsed `FileTypeBox`
|
|
1252
1251
|
*
|
|
1253
1252
|
* @public
|
|
1254
1253
|
*/
|
|
@@ -1268,11 +1267,11 @@ function readFtyp(view) {
|
|
|
1268
1267
|
//#endregion
|
|
1269
1268
|
//#region src/readers/readHdlr.ts
|
|
1270
1269
|
/**
|
|
1271
|
-
* Parse a HandlerReferenceBox from an
|
|
1270
|
+
* Parse a `HandlerReferenceBox` from an `IsoBoxReadView`.
|
|
1272
1271
|
*
|
|
1273
|
-
* @param view - The
|
|
1272
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1274
1273
|
*
|
|
1275
|
-
* @returns A parsed HandlerReferenceBox
|
|
1274
|
+
* @returns A parsed `HandlerReferenceBox`
|
|
1276
1275
|
*
|
|
1277
1276
|
* @public
|
|
1278
1277
|
*/
|
|
@@ -1290,11 +1289,11 @@ function readHdlr(view) {
|
|
|
1290
1289
|
//#endregion
|
|
1291
1290
|
//#region src/readers/readHev1.ts
|
|
1292
1291
|
/**
|
|
1293
|
-
* Parse a VisualSampleEntryBox from an
|
|
1292
|
+
* Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
|
|
1294
1293
|
*
|
|
1295
|
-
* @param view - The
|
|
1294
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1296
1295
|
*
|
|
1297
|
-
* @returns A parsed VisualSampleEntryBox
|
|
1296
|
+
* @returns A parsed `VisualSampleEntryBox`
|
|
1298
1297
|
*
|
|
1299
1298
|
* @public
|
|
1300
1299
|
*/
|
|
@@ -1305,11 +1304,11 @@ function readHev1(view) {
|
|
|
1305
1304
|
//#endregion
|
|
1306
1305
|
//#region src/readers/readHvc1.ts
|
|
1307
1306
|
/**
|
|
1308
|
-
* Parse a VisualSampleEntryBox from an
|
|
1307
|
+
* Parse a `VisualSampleEntryBox` from an `IsoBoxReadView`.
|
|
1309
1308
|
*
|
|
1310
|
-
* @param view - The
|
|
1309
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1311
1310
|
*
|
|
1312
|
-
* @returns A parsed VisualSampleEntryBox
|
|
1311
|
+
* @returns A parsed `VisualSampleEntryBox`
|
|
1313
1312
|
*
|
|
1314
1313
|
* @public
|
|
1315
1314
|
*/
|
|
@@ -1320,11 +1319,11 @@ function readHvc1(view) {
|
|
|
1320
1319
|
//#endregion
|
|
1321
1320
|
//#region src/readers/readIden.ts
|
|
1322
1321
|
/**
|
|
1323
|
-
* Parse a
|
|
1322
|
+
* Parse a `WebVttCueIdBox` from an `IsoBoxReadView`.
|
|
1324
1323
|
*
|
|
1325
|
-
* @param view - The
|
|
1324
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1326
1325
|
*
|
|
1327
|
-
* @returns A parsed
|
|
1326
|
+
* @returns A parsed `WebVttCueIdBox`
|
|
1328
1327
|
*
|
|
1329
1328
|
* @public
|
|
1330
1329
|
*/
|
|
@@ -1338,11 +1337,11 @@ function readIden(view) {
|
|
|
1338
1337
|
//#endregion
|
|
1339
1338
|
//#region src/readers/readImda.ts
|
|
1340
1339
|
/**
|
|
1341
|
-
* Parse a IdentifiedMediaDataBox from an
|
|
1340
|
+
* Parse a `IdentifiedMediaDataBox` from an `IsoBoxReadView`.
|
|
1342
1341
|
*
|
|
1343
|
-
* @param view - The
|
|
1342
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1344
1343
|
*
|
|
1345
|
-
* @returns A parsed IdentifiedMediaDataBox
|
|
1344
|
+
* @returns A parsed `IdentifiedMediaDataBox`
|
|
1346
1345
|
*
|
|
1347
1346
|
* @public
|
|
1348
1347
|
*/
|
|
@@ -1357,11 +1356,11 @@ function readImda(view) {
|
|
|
1357
1356
|
//#endregion
|
|
1358
1357
|
//#region src/readers/readKind.ts
|
|
1359
1358
|
/**
|
|
1360
|
-
* Parse a
|
|
1359
|
+
* Parse a `TrackKindBox` from an `IsoBoxReadView`.
|
|
1361
1360
|
*
|
|
1362
|
-
* @param view - The
|
|
1361
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1363
1362
|
*
|
|
1364
|
-
* @returns A parsed TrackKindBox
|
|
1363
|
+
* @returns A parsed `TrackKindBox`
|
|
1365
1364
|
*
|
|
1366
1365
|
* @public
|
|
1367
1366
|
*/
|
|
@@ -1377,11 +1376,11 @@ function readKind(view) {
|
|
|
1377
1376
|
//#endregion
|
|
1378
1377
|
//#region src/readers/readLabl.ts
|
|
1379
1378
|
/**
|
|
1380
|
-
* Parse a LabelBox from an
|
|
1379
|
+
* Parse a `LabelBox` from an `IsoBoxReadView`.
|
|
1381
1380
|
*
|
|
1382
|
-
* @param view - The
|
|
1381
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1383
1382
|
*
|
|
1384
|
-
* @returns A parsed LabelBox
|
|
1383
|
+
* @returns A parsed `LabelBox`
|
|
1385
1384
|
*
|
|
1386
1385
|
* @public
|
|
1387
1386
|
*/
|
|
@@ -1401,11 +1400,11 @@ function readLabl(view) {
|
|
|
1401
1400
|
//#endregion
|
|
1402
1401
|
//#region src/readers/readMdat.ts
|
|
1403
1402
|
/**
|
|
1404
|
-
* Parse a MediaDataBox from an
|
|
1403
|
+
* Parse a `MediaDataBox` from an `IsoBoxReadView`.
|
|
1405
1404
|
*
|
|
1406
|
-
* @param view - The
|
|
1405
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1407
1406
|
*
|
|
1408
|
-
* @returns A parsed MediaDataBox
|
|
1407
|
+
* @returns A parsed `MediaDataBox`
|
|
1409
1408
|
*
|
|
1410
1409
|
* @public
|
|
1411
1410
|
*/
|
|
@@ -1419,11 +1418,11 @@ function readMdat(view) {
|
|
|
1419
1418
|
//#endregion
|
|
1420
1419
|
//#region src/readers/readMdhd.ts
|
|
1421
1420
|
/**
|
|
1422
|
-
* Parse a MediaHeaderBox from an
|
|
1421
|
+
* Parse a `MediaHeaderBox` from an `IsoBoxReadView`.
|
|
1423
1422
|
*
|
|
1424
|
-
* @param view - The
|
|
1423
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1425
1424
|
*
|
|
1426
|
-
* @returns A parsed MediaHeaderBox
|
|
1425
|
+
* @returns A parsed `MediaHeaderBox`
|
|
1427
1426
|
*
|
|
1428
1427
|
* @public
|
|
1429
1428
|
*/
|
|
@@ -1450,11 +1449,11 @@ function readMdhd(view) {
|
|
|
1450
1449
|
//#endregion
|
|
1451
1450
|
//#region src/readers/readMehd.ts
|
|
1452
1451
|
/**
|
|
1453
|
-
* Parse a MovieExtendsHeaderBox from an
|
|
1452
|
+
* Parse a `MovieExtendsHeaderBox` from an `IsoBoxReadView`.
|
|
1454
1453
|
*
|
|
1455
|
-
* @param view - The
|
|
1454
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1456
1455
|
*
|
|
1457
|
-
* @returns A parsed MovieExtendsHeaderBox
|
|
1456
|
+
* @returns A parsed `MovieExtendsHeaderBox`
|
|
1458
1457
|
*
|
|
1459
1458
|
* @public
|
|
1460
1459
|
*/
|
|
@@ -1471,11 +1470,11 @@ function readMehd(view) {
|
|
|
1471
1470
|
//#endregion
|
|
1472
1471
|
//#region src/readers/readMeta.ts
|
|
1473
1472
|
/**
|
|
1474
|
-
* Parse a MetaBox from an
|
|
1473
|
+
* Parse a `MetaBox` from an `IsoBoxReadView`.
|
|
1475
1474
|
*
|
|
1476
|
-
* @param view - The
|
|
1475
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1477
1476
|
*
|
|
1478
|
-
* @returns A parsed MetaBox
|
|
1477
|
+
* @returns A parsed `MetaBox`
|
|
1479
1478
|
*
|
|
1480
1479
|
* @public
|
|
1481
1480
|
*/
|
|
@@ -1490,11 +1489,11 @@ function readMeta(view) {
|
|
|
1490
1489
|
//#endregion
|
|
1491
1490
|
//#region src/readers/readMfhd.ts
|
|
1492
1491
|
/**
|
|
1493
|
-
* Parse a MovieFragmentHeaderBox from an
|
|
1492
|
+
* Parse a `MovieFragmentHeaderBox` from an `IsoBoxReadView`.
|
|
1494
1493
|
*
|
|
1495
|
-
* @param view - The
|
|
1494
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1496
1495
|
*
|
|
1497
|
-
* @returns A parsed MovieFragmentHeaderBox
|
|
1496
|
+
* @returns A parsed `MovieFragmentHeaderBox`
|
|
1498
1497
|
*
|
|
1499
1498
|
* @public
|
|
1500
1499
|
*/
|
|
@@ -1509,11 +1508,11 @@ function readMfhd(view) {
|
|
|
1509
1508
|
//#endregion
|
|
1510
1509
|
//#region src/readers/readMfro.ts
|
|
1511
1510
|
/**
|
|
1512
|
-
* Parse a
|
|
1511
|
+
* Parse a `MovieFragmentRandomAccessOffsetBox` from an `IsoBoxReadView`.
|
|
1513
1512
|
*
|
|
1514
|
-
* @param view - The
|
|
1513
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1515
1514
|
*
|
|
1516
|
-
* @returns A parsed
|
|
1515
|
+
* @returns A parsed `MovieFragmentRandomAccessOffsetBox`
|
|
1517
1516
|
*
|
|
1518
1517
|
* @public
|
|
1519
1518
|
*/
|
|
@@ -1528,11 +1527,11 @@ function readMfro(view) {
|
|
|
1528
1527
|
//#endregion
|
|
1529
1528
|
//#region src/readers/readMp4a.ts
|
|
1530
1529
|
/**
|
|
1531
|
-
* Parse an
|
|
1530
|
+
* Parse an `AudioSampleEntryBox` from an `IsoBoxReadView`.
|
|
1532
1531
|
*
|
|
1533
|
-
* @param view - The
|
|
1532
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1534
1533
|
*
|
|
1535
|
-
* @returns A parsed
|
|
1534
|
+
* @returns A parsed `AudioSampleEntryBox`
|
|
1536
1535
|
*
|
|
1537
1536
|
* @public
|
|
1538
1537
|
*/
|
|
@@ -1543,11 +1542,11 @@ function readMp4a(view) {
|
|
|
1543
1542
|
//#endregion
|
|
1544
1543
|
//#region src/readers/readMvhd.ts
|
|
1545
1544
|
/**
|
|
1546
|
-
* Parse a
|
|
1545
|
+
* Parse a `MovieHeaderBox` from an `IsoBoxReadView`.
|
|
1547
1546
|
*
|
|
1548
|
-
* @param view - The
|
|
1547
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1549
1548
|
*
|
|
1550
|
-
* @returns A parsed
|
|
1549
|
+
* @returns A parsed `MovieHeaderBox`
|
|
1551
1550
|
*
|
|
1552
1551
|
* @public
|
|
1553
1552
|
*/
|
|
@@ -1576,11 +1575,11 @@ function readMvhd(view) {
|
|
|
1576
1575
|
//#endregion
|
|
1577
1576
|
//#region src/readers/readPayl.ts
|
|
1578
1577
|
/**
|
|
1579
|
-
* Parse a
|
|
1578
|
+
* Parse a `WebVttCuePayloadBox` from an `IsoBoxReadView`.
|
|
1580
1579
|
*
|
|
1581
|
-
* @param view - The
|
|
1580
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1582
1581
|
*
|
|
1583
|
-
* @returns A parsed
|
|
1582
|
+
* @returns A parsed `WebVttCuePayloadBox`
|
|
1584
1583
|
*
|
|
1585
1584
|
* @public
|
|
1586
1585
|
*/
|
|
@@ -1594,11 +1593,11 @@ function readPayl(view) {
|
|
|
1594
1593
|
//#endregion
|
|
1595
1594
|
//#region src/readers/readPrft.ts
|
|
1596
1595
|
/**
|
|
1597
|
-
* Parse a ProducerReferenceTimeBox from an
|
|
1596
|
+
* Parse a `ProducerReferenceTimeBox` from an `IsoBoxReadView`.
|
|
1598
1597
|
*
|
|
1599
|
-
* @param view - The
|
|
1598
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1600
1599
|
*
|
|
1601
|
-
* @returns A parsed ProducerReferenceTimeBox
|
|
1600
|
+
* @returns A parsed `ProducerReferenceTimeBox`
|
|
1602
1601
|
*
|
|
1603
1602
|
* @public
|
|
1604
1603
|
*/
|
|
@@ -1618,11 +1617,11 @@ function readPrft(view) {
|
|
|
1618
1617
|
//#endregion
|
|
1619
1618
|
//#region src/readers/readPrsl.ts
|
|
1620
1619
|
/**
|
|
1621
|
-
* Parse a PreselectionGroupBox from an
|
|
1620
|
+
* Parse a `PreselectionGroupBox` from an `IsoBoxReadView`.
|
|
1622
1621
|
*
|
|
1623
|
-
* @param view - The
|
|
1622
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1624
1623
|
*
|
|
1625
|
-
* @returns A parsed PreselectionGroupBox
|
|
1624
|
+
* @returns A parsed `PreselectionGroupBox`
|
|
1626
1625
|
*
|
|
1627
1626
|
* @public
|
|
1628
1627
|
*/
|
|
@@ -1647,11 +1646,11 @@ function readPrsl(view) {
|
|
|
1647
1646
|
//#endregion
|
|
1648
1647
|
//#region src/readers/readPssh.ts
|
|
1649
1648
|
/**
|
|
1650
|
-
* Parse a ProtectionSystemSpecificHeaderBox from an
|
|
1649
|
+
* Parse a `ProtectionSystemSpecificHeaderBox` from an `IsoBoxReadView`.
|
|
1651
1650
|
*
|
|
1652
|
-
* @param view - The
|
|
1651
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1653
1652
|
*
|
|
1654
|
-
* @returns A parsed ProtectionSystemSpecificHeaderBox
|
|
1653
|
+
* @returns A parsed `ProtectionSystemSpecificHeaderBox`
|
|
1655
1654
|
*
|
|
1656
1655
|
* @public
|
|
1657
1656
|
*/
|
|
@@ -1682,11 +1681,11 @@ function readPssh(view) {
|
|
|
1682
1681
|
//#endregion
|
|
1683
1682
|
//#region src/readers/readSchm.ts
|
|
1684
1683
|
/**
|
|
1685
|
-
* Parse a SchemeTypeBox from an
|
|
1684
|
+
* Parse a `SchemeTypeBox` from an `IsoBoxReadView`.
|
|
1686
1685
|
*
|
|
1687
|
-
* @param view - The
|
|
1686
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1688
1687
|
*
|
|
1689
|
-
* @returns A parsed SchemeTypeBox
|
|
1688
|
+
* @returns A parsed `SchemeTypeBox`
|
|
1690
1689
|
*
|
|
1691
1690
|
* @public
|
|
1692
1691
|
*/
|
|
@@ -1705,11 +1704,11 @@ function readSchm(view) {
|
|
|
1705
1704
|
//#endregion
|
|
1706
1705
|
//#region src/readers/readSdtp.ts
|
|
1707
1706
|
/**
|
|
1708
|
-
* Parse a SampleDependencyTypeBox from an
|
|
1707
|
+
* Parse a `SampleDependencyTypeBox` from an `IsoBoxReadView`.
|
|
1709
1708
|
*
|
|
1710
|
-
* @param view - The
|
|
1709
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1711
1710
|
*
|
|
1712
|
-
* @returns A parsed SampleDependencyTypeBox
|
|
1711
|
+
* @returns A parsed `SampleDependencyTypeBox`
|
|
1713
1712
|
*
|
|
1714
1713
|
* @public
|
|
1715
1714
|
*/
|
|
@@ -1724,11 +1723,11 @@ function readSdtp(view) {
|
|
|
1724
1723
|
//#endregion
|
|
1725
1724
|
//#region src/readers/readSidx.ts
|
|
1726
1725
|
/**
|
|
1727
|
-
* Parse a SegmentIndexBox from an
|
|
1726
|
+
* Parse a `SegmentIndexBox` from an `IsoBoxReadView`.
|
|
1728
1727
|
*
|
|
1729
|
-
* @param view - The
|
|
1728
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1730
1729
|
*
|
|
1731
|
-
* @returns A parsed SegmentIndexBox
|
|
1730
|
+
* @returns A parsed `SegmentIndexBox`
|
|
1732
1731
|
*
|
|
1733
1732
|
* @public
|
|
1734
1733
|
*/
|
|
@@ -1769,11 +1768,11 @@ function readSidx(view) {
|
|
|
1769
1768
|
//#endregion
|
|
1770
1769
|
//#region src/readers/readSkip.ts
|
|
1771
1770
|
/**
|
|
1772
|
-
* Parse a FreeSpaceBox from an
|
|
1771
|
+
* Parse a `FreeSpaceBox` from an `IsoBoxReadView`.
|
|
1773
1772
|
*
|
|
1774
|
-
* @param view - The
|
|
1773
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1775
1774
|
*
|
|
1776
|
-
* @returns A parsed FreeSpaceBox
|
|
1775
|
+
* @returns A parsed `FreeSpaceBox`
|
|
1777
1776
|
*
|
|
1778
1777
|
* @public
|
|
1779
1778
|
*/
|
|
@@ -1787,11 +1786,11 @@ function readSkip(view) {
|
|
|
1787
1786
|
//#endregion
|
|
1788
1787
|
//#region src/readers/readSmhd.ts
|
|
1789
1788
|
/**
|
|
1790
|
-
* Parse a SoundMediaHeaderBox from an
|
|
1789
|
+
* Parse a `SoundMediaHeaderBox` from an `IsoBoxReadView`.
|
|
1791
1790
|
*
|
|
1792
|
-
* @param view - The
|
|
1791
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1793
1792
|
*
|
|
1794
|
-
* @returns A parsed SoundMediaHeaderBox
|
|
1793
|
+
* @returns A parsed `SoundMediaHeaderBox`
|
|
1795
1794
|
*
|
|
1796
1795
|
* @public
|
|
1797
1796
|
*/
|
|
@@ -1807,11 +1806,11 @@ function readSmhd(view) {
|
|
|
1807
1806
|
//#endregion
|
|
1808
1807
|
//#region src/readers/readSsix.ts
|
|
1809
1808
|
/**
|
|
1810
|
-
* Parse a SubsegmentIndexBox from an
|
|
1809
|
+
* Parse a `SubsegmentIndexBox` from an `IsoBoxReadView`.
|
|
1811
1810
|
*
|
|
1812
|
-
* @param view - The
|
|
1811
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1813
1812
|
*
|
|
1814
|
-
* @returns A parsed SubsegmentIndexBox
|
|
1813
|
+
* @returns A parsed `SubsegmentIndexBox`
|
|
1815
1814
|
*
|
|
1816
1815
|
* @public
|
|
1817
1816
|
*/
|
|
@@ -1839,11 +1838,11 @@ function readSsix(view) {
|
|
|
1839
1838
|
//#endregion
|
|
1840
1839
|
//#region src/readers/readSthd.ts
|
|
1841
1840
|
/**
|
|
1842
|
-
* Parse a SubtitleMediaHeaderBox from an
|
|
1841
|
+
* Parse a `SubtitleMediaHeaderBox` from an `IsoBoxReadView`.
|
|
1843
1842
|
*
|
|
1844
|
-
* @param view - The
|
|
1843
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1845
1844
|
*
|
|
1846
|
-
* @returns A parsed SubtitleMediaHeaderBox
|
|
1845
|
+
* @returns A parsed `SubtitleMediaHeaderBox`
|
|
1847
1846
|
*
|
|
1848
1847
|
* @public
|
|
1849
1848
|
*/
|
|
@@ -1857,11 +1856,11 @@ function readSthd(view) {
|
|
|
1857
1856
|
//#endregion
|
|
1858
1857
|
//#region src/readers/readStsd.ts
|
|
1859
1858
|
/**
|
|
1860
|
-
* Parse a SampleDescriptionBox from an
|
|
1859
|
+
* Parse a `SampleDescriptionBox` from an `IsoBoxReadView`.
|
|
1861
1860
|
*
|
|
1862
|
-
* @param view - The
|
|
1861
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1863
1862
|
*
|
|
1864
|
-
* @returns A parsed SampleDescriptionBox
|
|
1863
|
+
* @returns A parsed `SampleDescriptionBox`
|
|
1865
1864
|
*
|
|
1866
1865
|
* @public
|
|
1867
1866
|
*/
|
|
@@ -1880,11 +1879,11 @@ function readStsd(view) {
|
|
|
1880
1879
|
//#endregion
|
|
1881
1880
|
//#region src/readers/readStss.ts
|
|
1882
1881
|
/**
|
|
1883
|
-
* Parse a SyncSampleBox from an
|
|
1882
|
+
* Parse a `SyncSampleBox` from an `IsoBoxReadView`.
|
|
1884
1883
|
*
|
|
1885
|
-
* @param view - The
|
|
1884
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1886
1885
|
*
|
|
1887
|
-
* @returns A parsed SyncSampleBox
|
|
1886
|
+
* @returns A parsed `SyncSampleBox`
|
|
1888
1887
|
*
|
|
1889
1888
|
* @public
|
|
1890
1889
|
*/
|
|
@@ -1903,11 +1902,11 @@ function readStss(view) {
|
|
|
1903
1902
|
//#endregion
|
|
1904
1903
|
//#region src/readers/readSttg.ts
|
|
1905
1904
|
/**
|
|
1906
|
-
* Parse a
|
|
1905
|
+
* Parse a `WebVttSettingsBox` from an `IsoBoxReadView`.
|
|
1907
1906
|
*
|
|
1908
|
-
* @param view - The
|
|
1907
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1909
1908
|
*
|
|
1910
|
-
* @returns A parsed
|
|
1909
|
+
* @returns A parsed `WebVttSettingsBox`
|
|
1911
1910
|
*
|
|
1912
1911
|
* @public
|
|
1913
1912
|
*/
|
|
@@ -1921,11 +1920,11 @@ function readSttg(view) {
|
|
|
1921
1920
|
//#endregion
|
|
1922
1921
|
//#region src/readers/readStts.ts
|
|
1923
1922
|
/**
|
|
1924
|
-
* Parse a DecodingTimeToSampleBox from an
|
|
1923
|
+
* Parse a `DecodingTimeToSampleBox` from an `IsoBoxReadView`.
|
|
1925
1924
|
*
|
|
1926
|
-
* @param view - The
|
|
1925
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1927
1926
|
*
|
|
1928
|
-
* @returns A parsed DecodingTimeToSampleBox
|
|
1927
|
+
* @returns A parsed `DecodingTimeToSampleBox`
|
|
1929
1928
|
*
|
|
1930
1929
|
* @public
|
|
1931
1930
|
*/
|
|
@@ -1947,11 +1946,11 @@ function readStts(view) {
|
|
|
1947
1946
|
//#endregion
|
|
1948
1947
|
//#region src/readers/readStyp.ts
|
|
1949
1948
|
/**
|
|
1950
|
-
* Parse a SegmentTypeBox from an
|
|
1949
|
+
* Parse a `SegmentTypeBox` from an `IsoBoxReadView`.
|
|
1951
1950
|
*
|
|
1952
|
-
* @param view - The
|
|
1951
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1953
1952
|
*
|
|
1954
|
-
* @returns A parsed SegmentTypeBox
|
|
1953
|
+
* @returns A parsed `SegmentTypeBox`
|
|
1955
1954
|
*
|
|
1956
1955
|
* @public
|
|
1957
1956
|
*/
|
|
@@ -1965,11 +1964,11 @@ function readStyp(view) {
|
|
|
1965
1964
|
//#endregion
|
|
1966
1965
|
//#region src/readers/readSubs.ts
|
|
1967
1966
|
/**
|
|
1968
|
-
* Parse a
|
|
1967
|
+
* Parse a `SubsampleInformationBox` from an `IsoBoxReadView`.
|
|
1969
1968
|
*
|
|
1970
|
-
* @param view - The
|
|
1969
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
1971
1970
|
*
|
|
1972
|
-
* @returns A parsed
|
|
1971
|
+
* @returns A parsed `SubsampleInformationBox`
|
|
1973
1972
|
*
|
|
1974
1973
|
* @public
|
|
1975
1974
|
*/
|
|
@@ -2001,11 +2000,11 @@ function readSubs(view) {
|
|
|
2001
2000
|
//#endregion
|
|
2002
2001
|
//#region src/readers/readTenc.ts
|
|
2003
2002
|
/**
|
|
2004
|
-
* Parse a TrackEncryptionBox from an
|
|
2003
|
+
* Parse a `TrackEncryptionBox` from an `IsoBoxReadView`.
|
|
2005
2004
|
*
|
|
2006
|
-
* @param view - The
|
|
2005
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2007
2006
|
*
|
|
2008
|
-
* @returns A parsed TrackEncryptionBox
|
|
2007
|
+
* @returns A parsed `TrackEncryptionBox`
|
|
2009
2008
|
*
|
|
2010
2009
|
* @public
|
|
2011
2010
|
*/
|
|
@@ -2022,11 +2021,11 @@ function readTenc(view) {
|
|
|
2022
2021
|
//#endregion
|
|
2023
2022
|
//#region src/readers/readTfdt.ts
|
|
2024
2023
|
/**
|
|
2025
|
-
* Parse a
|
|
2024
|
+
* Parse a `TrackFragmentBaseMediaDecodeTimeBox` from an `IsoBoxReadView`.
|
|
2026
2025
|
*
|
|
2027
|
-
* @param view - The
|
|
2026
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2028
2027
|
*
|
|
2029
|
-
* @returns A parsed
|
|
2028
|
+
* @returns A parsed `TrackFragmentBaseMediaDecodeTimeBox`
|
|
2030
2029
|
*
|
|
2031
2030
|
* @public
|
|
2032
2031
|
*/
|
|
@@ -2043,11 +2042,11 @@ function readTfdt(view) {
|
|
|
2043
2042
|
//#endregion
|
|
2044
2043
|
//#region src/readers/readTfhd.ts
|
|
2045
2044
|
/**
|
|
2046
|
-
* Parse a TrackFragmentHeaderBox from an
|
|
2045
|
+
* Parse a `TrackFragmentHeaderBox` from an `IsoBoxReadView`.
|
|
2047
2046
|
*
|
|
2048
|
-
* @param view - The
|
|
2047
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2049
2048
|
*
|
|
2050
|
-
* @returns A parsed TrackFragmentHeaderBox
|
|
2049
|
+
* @returns A parsed `TrackFragmentHeaderBox`
|
|
2051
2050
|
*
|
|
2052
2051
|
* @public
|
|
2053
2052
|
*/
|
|
@@ -2069,11 +2068,11 @@ function readTfhd(view) {
|
|
|
2069
2068
|
//#endregion
|
|
2070
2069
|
//#region src/readers/readTfra.ts
|
|
2071
2070
|
/**
|
|
2072
|
-
* Parse a TrackFragmentRandomAccessBox from an
|
|
2071
|
+
* Parse a `TrackFragmentRandomAccessBox` from an `IsoBoxReadView`.
|
|
2073
2072
|
*
|
|
2074
|
-
* @param view - The
|
|
2073
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2075
2074
|
*
|
|
2076
|
-
* @returns A parsed TrackFragmentRandomAccessBox
|
|
2075
|
+
* @returns A parsed `TrackFragmentRandomAccessBox`
|
|
2077
2076
|
*
|
|
2078
2077
|
* @public
|
|
2079
2078
|
*/
|
|
@@ -2108,11 +2107,11 @@ function readTfra(view) {
|
|
|
2108
2107
|
//#endregion
|
|
2109
2108
|
//#region src/readers/readTkhd.ts
|
|
2110
2109
|
/**
|
|
2111
|
-
* Parse a TrackHeaderBox from an
|
|
2110
|
+
* Parse a `TrackHeaderBox` from an `IsoBoxReadView`.
|
|
2112
2111
|
*
|
|
2113
|
-
* @param view - The
|
|
2112
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2114
2113
|
*
|
|
2115
|
-
* @returns A parsed TrackHeaderBox
|
|
2114
|
+
* @returns A parsed `TrackHeaderBox`
|
|
2116
2115
|
*
|
|
2117
2116
|
* @public
|
|
2118
2117
|
*/
|
|
@@ -2142,11 +2141,11 @@ function readTkhd(view) {
|
|
|
2142
2141
|
//#endregion
|
|
2143
2142
|
//#region src/readers/readTrex.ts
|
|
2144
2143
|
/**
|
|
2145
|
-
* Parse a TrackExtendsBox from an
|
|
2144
|
+
* Parse a `TrackExtendsBox` from an `IsoBoxReadView`.
|
|
2146
2145
|
*
|
|
2147
|
-
* @param view - The
|
|
2146
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2148
2147
|
*
|
|
2149
|
-
* @returns A parsed TrackExtendsBox
|
|
2148
|
+
* @returns A parsed `TrackExtendsBox`
|
|
2150
2149
|
*
|
|
2151
2150
|
* @public
|
|
2152
2151
|
*/
|
|
@@ -2165,11 +2164,11 @@ function readTrex(view) {
|
|
|
2165
2164
|
//#endregion
|
|
2166
2165
|
//#region src/readers/readTrun.ts
|
|
2167
2166
|
/**
|
|
2168
|
-
* Parse a TrackRunBox from an
|
|
2167
|
+
* Parse a `TrackRunBox` from an `IsoBoxReadView`.
|
|
2169
2168
|
*
|
|
2170
|
-
* @param view - The
|
|
2169
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2171
2170
|
*
|
|
2172
|
-
* @returns A parsed TrackRunBox
|
|
2171
|
+
* @returns A parsed `TrackRunBox`
|
|
2173
2172
|
*
|
|
2174
2173
|
* @public
|
|
2175
2174
|
*/
|
|
@@ -2202,11 +2201,11 @@ function readTrun(view) {
|
|
|
2202
2201
|
//#endregion
|
|
2203
2202
|
//#region src/readers/readUrl.ts
|
|
2204
2203
|
/**
|
|
2205
|
-
* Parse a
|
|
2204
|
+
* Parse a `DataEntryUrlBox` from an `IsoBoxReadView`.
|
|
2206
2205
|
*
|
|
2207
|
-
* @param view - The
|
|
2206
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2208
2207
|
*
|
|
2209
|
-
* @returns A parsed
|
|
2208
|
+
* @returns A parsed `DataEntryUrlBox`
|
|
2210
2209
|
*
|
|
2211
2210
|
* @public
|
|
2212
2211
|
*/
|
|
@@ -2221,11 +2220,11 @@ function readUrl(view) {
|
|
|
2221
2220
|
//#endregion
|
|
2222
2221
|
//#region src/readers/readUrn.ts
|
|
2223
2222
|
/**
|
|
2224
|
-
* Parse a
|
|
2223
|
+
* Parse a `DataEntryUrnBox` from an `IsoBoxReadView`.
|
|
2225
2224
|
*
|
|
2226
|
-
* @param view - The
|
|
2225
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2227
2226
|
*
|
|
2228
|
-
* @returns A parsed
|
|
2227
|
+
* @returns A parsed `DataEntryUrnBox`
|
|
2229
2228
|
*
|
|
2230
2229
|
* @public
|
|
2231
2230
|
*/
|
|
@@ -2241,11 +2240,11 @@ function readUrn(view) {
|
|
|
2241
2240
|
//#endregion
|
|
2242
2241
|
//#region src/readers/readVlab.ts
|
|
2243
2242
|
/**
|
|
2244
|
-
* Parse a
|
|
2243
|
+
* Parse a `WebVttSourceLabelBox` from an `IsoBoxReadView`.
|
|
2245
2244
|
*
|
|
2246
|
-
* @param view - The
|
|
2245
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2247
2246
|
*
|
|
2248
|
-
* @returns A parsed
|
|
2247
|
+
* @returns A parsed `WebVttSourceLabelBox`
|
|
2249
2248
|
*
|
|
2250
2249
|
* @public
|
|
2251
2250
|
*/
|
|
@@ -2259,11 +2258,11 @@ function readVlab(view) {
|
|
|
2259
2258
|
//#endregion
|
|
2260
2259
|
//#region src/readers/readVmhd.ts
|
|
2261
2260
|
/**
|
|
2262
|
-
* Parse a VideoMediaHeaderBox from an
|
|
2261
|
+
* Parse a `VideoMediaHeaderBox` from an `IsoBoxReadView`.
|
|
2263
2262
|
*
|
|
2264
|
-
* @param view - The
|
|
2263
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2265
2264
|
*
|
|
2266
|
-
* @returns A parsed VideoMediaHeaderBox
|
|
2265
|
+
* @returns A parsed `VideoMediaHeaderBox`
|
|
2267
2266
|
*
|
|
2268
2267
|
* @public
|
|
2269
2268
|
*/
|
|
@@ -2279,11 +2278,11 @@ function readVmhd(view) {
|
|
|
2279
2278
|
//#endregion
|
|
2280
2279
|
//#region src/readers/readVttC.ts
|
|
2281
2280
|
/**
|
|
2282
|
-
* Parse a
|
|
2281
|
+
* Parse a `WebVttConfigurationBox` from an `IsoBoxReadView`.
|
|
2283
2282
|
*
|
|
2284
|
-
* @param view - The
|
|
2283
|
+
* @param view - The `IsoBoxReadView` to read data from
|
|
2285
2284
|
*
|
|
2286
|
-
* @returns A parsed WebVttConfigurationBox
|
|
2285
|
+
* @returns A parsed `WebVttConfigurationBox`
|
|
2287
2286
|
*
|
|
2288
2287
|
* @public
|
|
2289
2288
|
*/
|
|
@@ -2297,9 +2296,9 @@ function readVttC(view) {
|
|
|
2297
2296
|
//#endregion
|
|
2298
2297
|
//#region src/readers/readVtte.ts
|
|
2299
2298
|
/**
|
|
2300
|
-
* Parse a
|
|
2299
|
+
* Parse a `WebVttEmptySampleBox` from an `IsoBoxReadView`.
|
|
2301
2300
|
*
|
|
2302
|
-
* @returns A parsed
|
|
2301
|
+
* @returns A parsed `WebVttEmptySampleBox`
|
|
2303
2302
|
*
|
|
2304
2303
|
* @public
|
|
2305
2304
|
*/
|
|
@@ -2325,11 +2324,11 @@ function isFullBox(box) {
|
|
|
2325
2324
|
//#endregion
|
|
2326
2325
|
//#region src/writers/writeArdi.ts
|
|
2327
2326
|
/**
|
|
2328
|
-
* Write an AudioRenderingIndicationBox to an
|
|
2327
|
+
* Write an `AudioRenderingIndicationBox` to an `IsoBoxWriteView`.
|
|
2329
2328
|
*
|
|
2330
|
-
* @param box - The AudioRenderingIndicationBox fields to write
|
|
2329
|
+
* @param box - The `AudioRenderingIndicationBox` fields to write
|
|
2331
2330
|
*
|
|
2332
|
-
* @returns An
|
|
2331
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2333
2332
|
*
|
|
2334
2333
|
* @public
|
|
2335
2334
|
*/
|
|
@@ -2343,14 +2342,14 @@ function writeArdi(box) {
|
|
|
2343
2342
|
//#endregion
|
|
2344
2343
|
//#region src/writers/writeAudioSampleEntryBox.ts
|
|
2345
2344
|
/**
|
|
2346
|
-
* Write an AudioSampleEntryBox to an
|
|
2345
|
+
* Write an `AudioSampleEntryBox` to an `IsoBoxWriteView`.
|
|
2347
2346
|
*
|
|
2348
2347
|
* ISO/IEC 14496-12:2012 - 12.2.3 Audio Sample Entry
|
|
2349
2348
|
*
|
|
2350
|
-
* @param box - The AudioSampleEntryBox fields to write
|
|
2351
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
2349
|
+
* @param box - The `AudioSampleEntryBox` fields to write
|
|
2350
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
2352
2351
|
*
|
|
2353
|
-
* @returns An
|
|
2352
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2354
2353
|
*
|
|
2355
2354
|
* @public
|
|
2356
2355
|
*/
|
|
@@ -2382,14 +2381,14 @@ function writeAudioSampleEntryBox(box, config) {
|
|
|
2382
2381
|
//#endregion
|
|
2383
2382
|
//#region src/writers/writeVisualSampleEntryBox.ts
|
|
2384
2383
|
/**
|
|
2385
|
-
* Write a VisualSampleEntryBox to an
|
|
2384
|
+
* Write a `VisualSampleEntryBox` to an `IsoBoxWriteView`.
|
|
2386
2385
|
*
|
|
2387
2386
|
* ISO/IEC 14496-12:2012 - 12.1.3 Visual Sample Entry
|
|
2388
2387
|
*
|
|
2389
|
-
* @param box - The VisualSampleEntryBox fields to write
|
|
2388
|
+
* @param box - The `VisualSampleEntryBox` fields to write
|
|
2390
2389
|
* @param config - The configuration for the writer
|
|
2391
2390
|
*
|
|
2392
|
-
* @returns An
|
|
2391
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2393
2392
|
*
|
|
2394
2393
|
* @public
|
|
2395
2394
|
*/
|
|
@@ -2433,14 +2432,14 @@ function writeVisualSampleEntryBox(box, config) {
|
|
|
2433
2432
|
//#endregion
|
|
2434
2433
|
//#region src/writers/writeAvc1.ts
|
|
2435
2434
|
/**
|
|
2436
|
-
* Write a VisualSampleEntryBox to an
|
|
2435
|
+
* Write a `VisualSampleEntryBox` to an `IsoBoxWriteView`.
|
|
2437
2436
|
*
|
|
2438
2437
|
* ISO/IEC 14496-12:2012 - 12.1.3 Visual Sample Entry
|
|
2439
2438
|
*
|
|
2440
|
-
* @param box - The VisualSampleEntryBox fields to write
|
|
2441
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
2439
|
+
* @param box - The `VisualSampleEntryBox` fields to write
|
|
2440
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
2442
2441
|
*
|
|
2443
|
-
* @returns An
|
|
2442
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2444
2443
|
*
|
|
2445
2444
|
* @public
|
|
2446
2445
|
*/
|
|
@@ -2451,12 +2450,12 @@ function writeAvc1(box, config) {
|
|
|
2451
2450
|
//#endregion
|
|
2452
2451
|
//#region src/writers/writeAvc2.ts
|
|
2453
2452
|
/**
|
|
2454
|
-
* Write a VisualSampleEntryBox (avc2) to an
|
|
2453
|
+
* Write a `VisualSampleEntryBox` (avc2) to an `IsoBoxWriteView`.
|
|
2455
2454
|
*
|
|
2456
|
-
* @param box - The VisualSampleEntryBox fields to write
|
|
2457
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
2455
|
+
* @param box - The `VisualSampleEntryBox` fields to write
|
|
2456
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
2458
2457
|
*
|
|
2459
|
-
* @returns An
|
|
2458
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2460
2459
|
*
|
|
2461
2460
|
* @public
|
|
2462
2461
|
*/
|
|
@@ -2467,12 +2466,12 @@ function writeAvc2(box, config) {
|
|
|
2467
2466
|
//#endregion
|
|
2468
2467
|
//#region src/writers/writeAvc3.ts
|
|
2469
2468
|
/**
|
|
2470
|
-
* Write a VisualSampleEntryBox (avc3) to an
|
|
2469
|
+
* Write a `VisualSampleEntryBox` (avc3) to an `IsoBoxWriteView`.
|
|
2471
2470
|
*
|
|
2472
|
-
* @param box - The VisualSampleEntryBox fields to write
|
|
2471
|
+
* @param box - The `VisualSampleEntryBox` fields to write
|
|
2473
2472
|
* @param config - The IsoBoxWriteViewConfig to use
|
|
2474
2473
|
*
|
|
2475
|
-
* @returns An
|
|
2474
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2476
2475
|
*
|
|
2477
2476
|
* @public
|
|
2478
2477
|
*/
|
|
@@ -2483,12 +2482,12 @@ function writeAvc3(box, config) {
|
|
|
2483
2482
|
//#endregion
|
|
2484
2483
|
//#region src/writers/writeAvc4.ts
|
|
2485
2484
|
/**
|
|
2486
|
-
* Write a VisualSampleEntryBox (avc4) to an
|
|
2485
|
+
* Write a `VisualSampleEntryBox` (avc4) to an `IsoBoxWriteView`.
|
|
2487
2486
|
*
|
|
2488
|
-
* @param box - The VisualSampleEntryBox fields to write
|
|
2489
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
2487
|
+
* @param box - The `VisualSampleEntryBox` fields to write
|
|
2488
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
2490
2489
|
*
|
|
2491
|
-
* @returns An
|
|
2490
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2492
2491
|
*
|
|
2493
2492
|
* @public
|
|
2494
2493
|
*/
|
|
@@ -2499,13 +2498,13 @@ function writeAvc4(box, config) {
|
|
|
2499
2498
|
//#endregion
|
|
2500
2499
|
//#region src/writers/writeCtts.ts
|
|
2501
2500
|
/**
|
|
2502
|
-
* Write a CompositionTimeToSampleBox to an
|
|
2501
|
+
* Write a `CompositionTimeToSampleBox` to an `IsoBoxWriteView`.
|
|
2503
2502
|
*
|
|
2504
2503
|
* ISO/IEC 14496-12:2012 - 8.6.1.3 Composition Time to Sample Box
|
|
2505
2504
|
*
|
|
2506
|
-
* @param box - The CompositionTimeToSampleBox fields to write
|
|
2505
|
+
* @param box - The `CompositionTimeToSampleBox` fields to write
|
|
2507
2506
|
*
|
|
2508
|
-
* @returns An
|
|
2507
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2509
2508
|
*
|
|
2510
2509
|
* @public
|
|
2511
2510
|
*/
|
|
@@ -2527,12 +2526,12 @@ function writeCtts(box) {
|
|
|
2527
2526
|
//#endregion
|
|
2528
2527
|
//#region src/writers/writeDref.ts
|
|
2529
2528
|
/**
|
|
2530
|
-
* Write a DataReferenceBox to an
|
|
2529
|
+
* Write a `DataReferenceBox` to an `IsoBoxWriteView`.
|
|
2531
2530
|
*
|
|
2532
|
-
* @param box - The DataReferenceBox fields to write
|
|
2531
|
+
* @param box - The `DataReferenceBox` fields to write
|
|
2533
2532
|
* @param config - The IsoBoxWriteViewConfig to use
|
|
2534
2533
|
*
|
|
2535
|
-
* @returns An
|
|
2534
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2536
2535
|
*
|
|
2537
2536
|
* @public
|
|
2538
2537
|
*/
|
|
@@ -2552,13 +2551,13 @@ function writeDref(box, config) {
|
|
|
2552
2551
|
//#endregion
|
|
2553
2552
|
//#region src/writers/writeElng.ts
|
|
2554
2553
|
/**
|
|
2555
|
-
* Write an ExtendedLanguageBox to an
|
|
2554
|
+
* Write an `ExtendedLanguageBox` to an `IsoBoxWriteView`.
|
|
2556
2555
|
*
|
|
2557
2556
|
* ISO/IEC 14496-12:2012 - 8.4.6 Extended Language Tag
|
|
2558
2557
|
*
|
|
2559
|
-
* @param box - The ExtendedLanguageBox fields to write
|
|
2558
|
+
* @param box - The `ExtendedLanguageBox` fields to write
|
|
2560
2559
|
*
|
|
2561
|
-
* @returns An
|
|
2560
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2562
2561
|
*
|
|
2563
2562
|
* @public
|
|
2564
2563
|
*/
|
|
@@ -2576,13 +2575,13 @@ function writeElng(box) {
|
|
|
2576
2575
|
//#endregion
|
|
2577
2576
|
//#region src/writers/writeElst.ts
|
|
2578
2577
|
/**
|
|
2579
|
-
* Write an EditListBox to an
|
|
2578
|
+
* Write an `EditListBox` to an `IsoBoxWriteView`.
|
|
2580
2579
|
*
|
|
2581
2580
|
* ISO/IEC 14496-12:2012 - 8.6.6 Edit List Box
|
|
2582
2581
|
*
|
|
2583
|
-
* @param box - The EditListBox fields to write
|
|
2582
|
+
* @param box - The `EditListBox` fields to write
|
|
2584
2583
|
*
|
|
2585
|
-
* @returns An
|
|
2584
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2586
2585
|
*
|
|
2587
2586
|
* @public
|
|
2588
2587
|
*/
|
|
@@ -2608,13 +2607,13 @@ function writeElst(box) {
|
|
|
2608
2607
|
//#endregion
|
|
2609
2608
|
//#region src/writers/writeEmsg.ts
|
|
2610
2609
|
/**
|
|
2611
|
-
* Write an EventMessageBox to an
|
|
2610
|
+
* Write an `EventMessageBox` to an `IsoBoxWriteView`.
|
|
2612
2611
|
*
|
|
2613
2612
|
* ISO/IEC 23009-1 - 5.10.3.3 Event Message Box
|
|
2614
2613
|
*
|
|
2615
|
-
* @param box - The EventMessageBox fields to write
|
|
2614
|
+
* @param box - The `EventMessageBox` fields to write
|
|
2616
2615
|
*
|
|
2617
|
-
* @returns An
|
|
2616
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2618
2617
|
*
|
|
2619
2618
|
* @public
|
|
2620
2619
|
*/
|
|
@@ -2648,12 +2647,12 @@ function writeEmsg(box) {
|
|
|
2648
2647
|
//#endregion
|
|
2649
2648
|
//#region src/writers/writeEnca.ts
|
|
2650
2649
|
/**
|
|
2651
|
-
* Write an AudioSampleEntryBox (enca) to an
|
|
2650
|
+
* Write an `AudioSampleEntryBox` (enca) to an `IsoBoxWriteView`.
|
|
2652
2651
|
*
|
|
2653
|
-
* @param box - The AudioSampleEntryBox fields to write
|
|
2654
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
2652
|
+
* @param box - The `AudioSampleEntryBox` fields to write
|
|
2653
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
2655
2654
|
*
|
|
2656
|
-
* @returns An
|
|
2655
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2657
2656
|
*
|
|
2658
2657
|
* @public
|
|
2659
2658
|
*/
|
|
@@ -2664,12 +2663,12 @@ function writeEnca(box, config) {
|
|
|
2664
2663
|
//#endregion
|
|
2665
2664
|
//#region src/writers/writeEncv.ts
|
|
2666
2665
|
/**
|
|
2667
|
-
* Write a VisualSampleEntryBox (encv) to an
|
|
2666
|
+
* Write a `VisualSampleEntryBox` (encv) to an `IsoBoxWriteView`.
|
|
2668
2667
|
*
|
|
2669
|
-
* @param box - The VisualSampleEntryBox fields to write
|
|
2670
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
2668
|
+
* @param box - The `VisualSampleEntryBox` fields to write
|
|
2669
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
2671
2670
|
*
|
|
2672
|
-
* @returns An
|
|
2671
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2673
2672
|
*
|
|
2674
2673
|
* @public
|
|
2675
2674
|
*/
|
|
@@ -2680,13 +2679,13 @@ function writeEncv(box, config) {
|
|
|
2680
2679
|
//#endregion
|
|
2681
2680
|
//#region src/writers/writeFree.ts
|
|
2682
2681
|
/**
|
|
2683
|
-
* Write a FreeSpaceBox to an
|
|
2682
|
+
* Write a `FreeSpaceBox` to an `IsoBoxWriteView`.
|
|
2684
2683
|
*
|
|
2685
2684
|
* ISO/IEC 14496-12:2012 - 8.1.2 Free Space Box
|
|
2686
2685
|
*
|
|
2687
|
-
* @param box - The FreeSpaceBox fields to write
|
|
2686
|
+
* @param box - The `FreeSpaceBox` fields to write
|
|
2688
2687
|
*
|
|
2689
|
-
* @returns An
|
|
2688
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2690
2689
|
*
|
|
2691
2690
|
* @public
|
|
2692
2691
|
*/
|
|
@@ -2699,13 +2698,13 @@ function writeFree(box) {
|
|
|
2699
2698
|
//#endregion
|
|
2700
2699
|
//#region src/writers/writeFrma.ts
|
|
2701
2700
|
/**
|
|
2702
|
-
* Write an OriginalFormatBox to an
|
|
2701
|
+
* Write an `OriginalFormatBox` to an `IsoBoxWriteView`.
|
|
2703
2702
|
*
|
|
2704
2703
|
* ISO/IEC 14496-12:2012 - 8.12.2 Original Format Box
|
|
2705
2704
|
*
|
|
2706
|
-
* @param box - The OriginalFormatBox fields to write
|
|
2705
|
+
* @param box - The `OriginalFormatBox` fields to write
|
|
2707
2706
|
*
|
|
2708
|
-
* @returns An
|
|
2707
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2709
2708
|
*
|
|
2710
2709
|
* @public
|
|
2711
2710
|
*/
|
|
@@ -2718,13 +2717,13 @@ function writeFrma(box) {
|
|
|
2718
2717
|
//#endregion
|
|
2719
2718
|
//#region src/writers/writeFtyp.ts
|
|
2720
2719
|
/**
|
|
2721
|
-
* Write a FileTypeBox to an
|
|
2720
|
+
* Write a `FileTypeBox` to an `IsoBoxWriteView`.
|
|
2722
2721
|
*
|
|
2723
2722
|
* ISO/IEC 14496-12:2012 - 4.3 File Type Box
|
|
2724
2723
|
*
|
|
2725
|
-
* @param box - The FileTypeBox fields to write
|
|
2724
|
+
* @param box - The `FileTypeBox` fields to write
|
|
2726
2725
|
*
|
|
2727
|
-
* @returns An
|
|
2726
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2728
2727
|
*
|
|
2729
2728
|
* @public
|
|
2730
2729
|
*/
|
|
@@ -2743,13 +2742,13 @@ function writeFtyp(box) {
|
|
|
2743
2742
|
//#endregion
|
|
2744
2743
|
//#region src/writers/writeHdlr.ts
|
|
2745
2744
|
/**
|
|
2746
|
-
* Write a HandlerReferenceBox to an
|
|
2745
|
+
* Write a `HandlerReferenceBox` to an `IsoBoxWriteView`.
|
|
2747
2746
|
*
|
|
2748
2747
|
* ISO/IEC 14496-12:2012 - 8.4.3 Handler Reference Box
|
|
2749
2748
|
*
|
|
2750
|
-
* @param box - The HandlerReferenceBox fields to write
|
|
2749
|
+
* @param box - The `HandlerReferenceBox` fields to write
|
|
2751
2750
|
*
|
|
2752
|
-
* @returns An
|
|
2751
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2753
2752
|
*
|
|
2754
2753
|
* @public
|
|
2755
2754
|
*/
|
|
@@ -2772,12 +2771,12 @@ function writeHdlr(box) {
|
|
|
2772
2771
|
//#endregion
|
|
2773
2772
|
//#region src/writers/writeHev1.ts
|
|
2774
2773
|
/**
|
|
2775
|
-
* Write a VisualSampleEntryBox (hev1) to an
|
|
2774
|
+
* Write a `VisualSampleEntryBox` (hev1) to an `IsoBoxWriteView`.
|
|
2776
2775
|
*
|
|
2777
|
-
* @param box - The VisualSampleEntryBox fields to write
|
|
2778
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
2776
|
+
* @param box - The `VisualSampleEntryBox` fields to write
|
|
2777
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
2779
2778
|
*
|
|
2780
|
-
* @returns An
|
|
2779
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2781
2780
|
*
|
|
2782
2781
|
* @public
|
|
2783
2782
|
*/
|
|
@@ -2788,12 +2787,12 @@ function writeHev1(box, config) {
|
|
|
2788
2787
|
//#endregion
|
|
2789
2788
|
//#region src/writers/writeHvc1.ts
|
|
2790
2789
|
/**
|
|
2791
|
-
* Write a VisualSampleEntryBox (hvc1) to an
|
|
2790
|
+
* Write a `VisualSampleEntryBox` (hvc1) to an `IsoBoxWriteView`.
|
|
2792
2791
|
*
|
|
2793
|
-
* @param box - The VisualSampleEntryBox fields to write
|
|
2794
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
2792
|
+
* @param box - The `VisualSampleEntryBox` fields to write
|
|
2793
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
2795
2794
|
*
|
|
2796
|
-
* @returns An
|
|
2795
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2797
2796
|
*
|
|
2798
2797
|
* @public
|
|
2799
2798
|
*/
|
|
@@ -2804,11 +2803,11 @@ function writeHvc1(box, config) {
|
|
|
2804
2803
|
//#endregion
|
|
2805
2804
|
//#region src/writers/writeIden.ts
|
|
2806
2805
|
/**
|
|
2807
|
-
* Write a WebVttCueIdBox to an
|
|
2806
|
+
* Write a `WebVttCueIdBox` to an `IsoBoxWriteView`.
|
|
2808
2807
|
*
|
|
2809
|
-
* @param box - The WebVttCueIdBox fields to write
|
|
2808
|
+
* @param box - The `WebVttCueIdBox` fields to write
|
|
2810
2809
|
*
|
|
2811
|
-
* @returns An
|
|
2810
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2812
2811
|
*
|
|
2813
2812
|
* @public
|
|
2814
2813
|
*/
|
|
@@ -2821,11 +2820,11 @@ function writeIden(box) {
|
|
|
2821
2820
|
//#endregion
|
|
2822
2821
|
//#region src/writers/writeImda.ts
|
|
2823
2822
|
/**
|
|
2824
|
-
* Write an IdentifiedMediaDataBox to an
|
|
2823
|
+
* Write an `IdentifiedMediaDataBox` to an `IsoBoxWriteView`.
|
|
2825
2824
|
*
|
|
2826
|
-
* @param box - The IdentifiedMediaDataBox fields to write
|
|
2825
|
+
* @param box - The `IdentifiedMediaDataBox` fields to write
|
|
2827
2826
|
*
|
|
2828
|
-
* @returns An
|
|
2827
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2829
2828
|
*
|
|
2830
2829
|
* @public
|
|
2831
2830
|
*/
|
|
@@ -2842,11 +2841,11 @@ function writeImda(box) {
|
|
|
2842
2841
|
//#endregion
|
|
2843
2842
|
//#region src/writers/writeKind.ts
|
|
2844
2843
|
/**
|
|
2845
|
-
* Write a TrackKindBox to an
|
|
2844
|
+
* Write a `TrackKindBox` to an `IsoBoxWriteView`.
|
|
2846
2845
|
*
|
|
2847
|
-
* @param box - The TrackKindBox fields to write
|
|
2846
|
+
* @param box - The `TrackKindBox` fields to write
|
|
2848
2847
|
*
|
|
2849
|
-
* @returns An
|
|
2848
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2850
2849
|
*
|
|
2851
2850
|
* @public
|
|
2852
2851
|
*/
|
|
@@ -2867,11 +2866,11 @@ function writeKind(box) {
|
|
|
2867
2866
|
//#endregion
|
|
2868
2867
|
//#region src/writers/writeLabl.ts
|
|
2869
2868
|
/**
|
|
2870
|
-
* Write a LabelBox to an
|
|
2869
|
+
* Write a `LabelBox` to an `IsoBoxWriteView`.
|
|
2871
2870
|
*
|
|
2872
|
-
* @param box - The LabelBox fields to write
|
|
2871
|
+
* @param box - The `LabelBox` fields to write
|
|
2873
2872
|
*
|
|
2874
|
-
* @returns An
|
|
2873
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2875
2874
|
*
|
|
2876
2875
|
* @public
|
|
2877
2876
|
*/
|
|
@@ -2894,13 +2893,13 @@ function writeLabl(box) {
|
|
|
2894
2893
|
//#endregion
|
|
2895
2894
|
//#region src/writers/writeMdat.ts
|
|
2896
2895
|
/**
|
|
2897
|
-
* Write a MediaDataBox to an
|
|
2896
|
+
* Write a `MediaDataBox` to an `IsoBoxWriteView`.
|
|
2898
2897
|
*
|
|
2899
2898
|
* ISO/IEC 14496-12:2012 - 8.1.1 Media Data Box
|
|
2900
2899
|
*
|
|
2901
|
-
* @param box - The MediaDataBox fields to write
|
|
2900
|
+
* @param box - The `MediaDataBox` fields to write
|
|
2902
2901
|
*
|
|
2903
|
-
* @returns An
|
|
2902
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2904
2903
|
*
|
|
2905
2904
|
* @public
|
|
2906
2905
|
*/
|
|
@@ -2913,13 +2912,13 @@ function writeMdat(box) {
|
|
|
2913
2912
|
//#endregion
|
|
2914
2913
|
//#region src/writers/writeMdhd.ts
|
|
2915
2914
|
/**
|
|
2916
|
-
* Write a MediaHeaderBox to an
|
|
2915
|
+
* Write a `MediaHeaderBox` to an `IsoBoxWriteView`.
|
|
2917
2916
|
*
|
|
2918
2917
|
* ISO/IEC 14496-12:2012 - 8.4.2 Media Header Box
|
|
2919
2918
|
*
|
|
2920
|
-
* @param box - The MediaHeaderBox fields to write
|
|
2919
|
+
* @param box - The `MediaHeaderBox` fields to write
|
|
2921
2920
|
*
|
|
2922
|
-
* @returns An
|
|
2921
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2923
2922
|
*
|
|
2924
2923
|
* @public
|
|
2925
2924
|
*/
|
|
@@ -2943,13 +2942,13 @@ function writeMdhd(box) {
|
|
|
2943
2942
|
//#endregion
|
|
2944
2943
|
//#region src/writers/writeMehd.ts
|
|
2945
2944
|
/**
|
|
2946
|
-
* Write a MovieExtendsHeaderBox to an
|
|
2945
|
+
* Write a `MovieExtendsHeaderBox` to an `IsoBoxWriteView`.
|
|
2947
2946
|
*
|
|
2948
2947
|
* ISO/IEC 14496-12:2012 - 8.8.2 Movie Extends Header Box
|
|
2949
2948
|
*
|
|
2950
|
-
* @param box - The MovieExtendsHeaderBox fields to write
|
|
2949
|
+
* @param box - The `MovieExtendsHeaderBox` fields to write
|
|
2951
2950
|
*
|
|
2952
|
-
* @returns An
|
|
2951
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2953
2952
|
*
|
|
2954
2953
|
* @public
|
|
2955
2954
|
*/
|
|
@@ -2967,14 +2966,14 @@ function writeMehd(box) {
|
|
|
2967
2966
|
//#endregion
|
|
2968
2967
|
//#region src/writers/writeMeta.ts
|
|
2969
2968
|
/**
|
|
2970
|
-
* Write a MetaBox to an
|
|
2969
|
+
* Write a `MetaBox` to an `IsoBoxWriteView`.
|
|
2971
2970
|
*
|
|
2972
2971
|
* ISO/IEC 14496-12:2012 - 8.11.1 Meta Box
|
|
2973
2972
|
*
|
|
2974
|
-
* @param box - The MetaBox fields to write
|
|
2975
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
2973
|
+
* @param box - The `MetaBox` fields to write
|
|
2974
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
2976
2975
|
*
|
|
2977
|
-
* @returns An
|
|
2976
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
2978
2977
|
*
|
|
2979
2978
|
* @public
|
|
2980
2979
|
*/
|
|
@@ -2991,13 +2990,13 @@ function writeMeta(box, config) {
|
|
|
2991
2990
|
//#endregion
|
|
2992
2991
|
//#region src/writers/writeMfhd.ts
|
|
2993
2992
|
/**
|
|
2994
|
-
* Write a MovieFragmentHeaderBox to an
|
|
2993
|
+
* Write a `MovieFragmentHeaderBox` to an `IsoBoxWriteView`.
|
|
2995
2994
|
*
|
|
2996
2995
|
* ISO/IEC 14496-12:2012 - 8.8.5 Movie Fragment Header Box
|
|
2997
2996
|
*
|
|
2998
|
-
* @param box - The MovieFragmentHeaderBox fields to write
|
|
2997
|
+
* @param box - The `MovieFragmentHeaderBox` fields to write
|
|
2999
2998
|
*
|
|
3000
|
-
* @returns An
|
|
2999
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3001
3000
|
*
|
|
3002
3001
|
* @public
|
|
3003
3002
|
*/
|
|
@@ -3011,13 +3010,13 @@ function writeMfhd(box) {
|
|
|
3011
3010
|
//#endregion
|
|
3012
3011
|
//#region src/writers/writeMfro.ts
|
|
3013
3012
|
/**
|
|
3014
|
-
* Write a MovieFragmentRandomAccessOffsetBox to an
|
|
3013
|
+
* Write a `MovieFragmentRandomAccessOffsetBox` to an `IsoBoxWriteView`.
|
|
3015
3014
|
*
|
|
3016
3015
|
* ISO/IEC 14496-12:2012 - 8.8.11 Movie Fragment Random Access Offset Box
|
|
3017
3016
|
*
|
|
3018
|
-
* @param box - The MovieFragmentRandomAccessOffsetBox fields to write
|
|
3017
|
+
* @param box - The `MovieFragmentRandomAccessOffsetBox` fields to write
|
|
3019
3018
|
*
|
|
3020
|
-
* @returns An
|
|
3019
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3021
3020
|
*
|
|
3022
3021
|
* @public
|
|
3023
3022
|
*/
|
|
@@ -3031,13 +3030,13 @@ function writeMfro(box) {
|
|
|
3031
3030
|
//#endregion
|
|
3032
3031
|
//#region src/writers/writeMp4a.ts
|
|
3033
3032
|
/**
|
|
3034
|
-
* Write an AudioSampleEntryBox to an
|
|
3033
|
+
* Write an `AudioSampleEntryBox` to an `IsoBoxWriteView`.
|
|
3035
3034
|
*
|
|
3036
3035
|
* ISO/IEC 14496-12:2012 - 12.2.3 Audio Sample Entry
|
|
3037
3036
|
*
|
|
3038
|
-
* @param box - The AudioSampleEntryBox fields to write
|
|
3037
|
+
* @param box - The `AudioSampleEntryBox` fields to write
|
|
3039
3038
|
*
|
|
3040
|
-
* @returns An
|
|
3039
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3041
3040
|
*
|
|
3042
3041
|
* @public
|
|
3043
3042
|
*/
|
|
@@ -3048,13 +3047,13 @@ function writeMp4a(box, config) {
|
|
|
3048
3047
|
//#endregion
|
|
3049
3048
|
//#region src/writers/writeMvhd.ts
|
|
3050
3049
|
/**
|
|
3051
|
-
* Write a MovieHeaderBox to an
|
|
3050
|
+
* Write a `MovieHeaderBox` to an `IsoBoxWriteView`.
|
|
3052
3051
|
*
|
|
3053
3052
|
* ISO/IEC 14496-12:2012 - 8.2.2 Movie Header Box
|
|
3054
3053
|
*
|
|
3055
|
-
* @param box - The MovieHeaderBox fields to write
|
|
3054
|
+
* @param box - The `MovieHeaderBox` fields to write
|
|
3056
3055
|
*
|
|
3057
|
-
* @returns An
|
|
3056
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3058
3057
|
*
|
|
3059
3058
|
* @public
|
|
3060
3059
|
*/
|
|
@@ -3082,11 +3081,11 @@ function writeMvhd(box) {
|
|
|
3082
3081
|
//#endregion
|
|
3083
3082
|
//#region src/writers/writePayl.ts
|
|
3084
3083
|
/**
|
|
3085
|
-
* Write a WebVttCuePayloadBox to an
|
|
3084
|
+
* Write a `WebVttCuePayloadBox` to an `IsoBoxWriteView`.
|
|
3086
3085
|
*
|
|
3087
|
-
* @param box - The WebVttCuePayloadBox fields to write
|
|
3086
|
+
* @param box - The `WebVttCuePayloadBox` fields to write
|
|
3088
3087
|
*
|
|
3089
|
-
* @returns An
|
|
3088
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3090
3089
|
*
|
|
3091
3090
|
* @public
|
|
3092
3091
|
*/
|
|
@@ -3099,13 +3098,13 @@ function writePayl(box) {
|
|
|
3099
3098
|
//#endregion
|
|
3100
3099
|
//#region src/writers/writePrft.ts
|
|
3101
3100
|
/**
|
|
3102
|
-
* Write a ProducerReferenceTimeBox to an
|
|
3101
|
+
* Write a `ProducerReferenceTimeBox` to an `IsoBoxWriteView`.
|
|
3103
3102
|
*
|
|
3104
3103
|
* ISO/IEC 14496-12:2012 - 8.16.5 Producer Reference Time Box
|
|
3105
3104
|
*
|
|
3106
|
-
* @param box - The ProducerReferenceTimeBox fields to write
|
|
3105
|
+
* @param box - The `ProducerReferenceTimeBox` fields to write
|
|
3107
3106
|
*
|
|
3108
|
-
* @returns An
|
|
3107
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3109
3108
|
*
|
|
3110
3109
|
* @public
|
|
3111
3110
|
*/
|
|
@@ -3123,12 +3122,12 @@ function writePrft(box) {
|
|
|
3123
3122
|
//#endregion
|
|
3124
3123
|
//#region src/writers/writePrsl.ts
|
|
3125
3124
|
/**
|
|
3126
|
-
* Write a PreselectionGroupBox to an
|
|
3125
|
+
* Write a `PreselectionGroupBox` to an `IsoBoxWriteView`.
|
|
3127
3126
|
*
|
|
3128
|
-
* @param box - The PreselectionGroupBox fields to write
|
|
3129
|
-
* @param config - The IsoBoxWriteViewConfig to use
|
|
3127
|
+
* @param box - The `PreselectionGroupBox` fields to write
|
|
3128
|
+
* @param config - The `IsoBoxWriteViewConfig` to use
|
|
3130
3129
|
*
|
|
3131
|
-
* @returns An
|
|
3130
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3132
3131
|
*
|
|
3133
3132
|
* @public
|
|
3134
3133
|
*/
|
|
@@ -3159,13 +3158,13 @@ function writePrsl(box, config) {
|
|
|
3159
3158
|
//#endregion
|
|
3160
3159
|
//#region src/writers/writePssh.ts
|
|
3161
3160
|
/**
|
|
3162
|
-
* Write a ProtectionSystemSpecificHeaderBox to an
|
|
3161
|
+
* Write a `ProtectionSystemSpecificHeaderBox` to an `IsoBoxWriteView`.
|
|
3163
3162
|
*
|
|
3164
3163
|
* ISO/IEC 23001-7 - 8.1 Protection System Specific Header Box
|
|
3165
3164
|
*
|
|
3166
|
-
* @param box - The ProtectionSystemSpecificHeaderBox fields to write
|
|
3165
|
+
* @param box - The `ProtectionSystemSpecificHeaderBox` fields to write
|
|
3167
3166
|
*
|
|
3168
|
-
* @returns An
|
|
3167
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3169
3168
|
*
|
|
3170
3169
|
* @public
|
|
3171
3170
|
*/
|
|
@@ -3192,13 +3191,13 @@ function writePssh(box) {
|
|
|
3192
3191
|
//#endregion
|
|
3193
3192
|
//#region src/writers/writeSchm.ts
|
|
3194
3193
|
/**
|
|
3195
|
-
* Write a SchemeTypeBox to an
|
|
3194
|
+
* Write a `SchemeTypeBox` to an `IsoBoxWriteView`.
|
|
3196
3195
|
*
|
|
3197
3196
|
* ISO/IEC 14496-12:2012 - 8.12.5 Scheme Type Box
|
|
3198
3197
|
*
|
|
3199
|
-
* @param box - The SchemeTypeBox fields to write
|
|
3198
|
+
* @param box - The `SchemeTypeBox` fields to write
|
|
3200
3199
|
*
|
|
3201
|
-
* @returns An
|
|
3200
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3202
3201
|
*
|
|
3203
3202
|
* @public
|
|
3204
3203
|
*/
|
|
@@ -3219,13 +3218,13 @@ function writeSchm(box) {
|
|
|
3219
3218
|
//#endregion
|
|
3220
3219
|
//#region src/writers/writeSdtp.ts
|
|
3221
3220
|
/**
|
|
3222
|
-
* Write a SampleDependencyTypeBox to an
|
|
3221
|
+
* Write a `SampleDependencyTypeBox` to an `IsoBoxWriteView`.
|
|
3223
3222
|
*
|
|
3224
3223
|
* ISO/IEC 14496-12:2012 - 8.6.4 Independent and Disposable Samples Box
|
|
3225
3224
|
*
|
|
3226
|
-
* @param box - The SampleDependencyTypeBox fields to write
|
|
3225
|
+
* @param box - The `SampleDependencyTypeBox` fields to write
|
|
3227
3226
|
*
|
|
3228
|
-
* @returns An
|
|
3227
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3229
3228
|
*
|
|
3230
3229
|
* @public
|
|
3231
3230
|
*/
|
|
@@ -3242,13 +3241,13 @@ function writeSdtp(box) {
|
|
|
3242
3241
|
//#endregion
|
|
3243
3242
|
//#region src/writers/writeSidx.ts
|
|
3244
3243
|
/**
|
|
3245
|
-
* Write a SegmentIndexBox to an
|
|
3244
|
+
* Write a `SegmentIndexBox` to an `IsoBoxWriteView`.
|
|
3246
3245
|
*
|
|
3247
3246
|
* ISO/IEC 14496-12:2012 - 8.16.3 Segment Index Box
|
|
3248
3247
|
*
|
|
3249
|
-
* @param box - The SegmentIndexBox fields to write
|
|
3248
|
+
* @param box - The `SegmentIndexBox` fields to write
|
|
3250
3249
|
*
|
|
3251
|
-
* @returns An
|
|
3250
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3252
3251
|
*
|
|
3253
3252
|
* @public
|
|
3254
3253
|
*/
|
|
@@ -3284,13 +3283,13 @@ function writeSidx(box) {
|
|
|
3284
3283
|
//#endregion
|
|
3285
3284
|
//#region src/writers/writeSkip.ts
|
|
3286
3285
|
/**
|
|
3287
|
-
* Write a FreeSpaceBox (skip variant) to an
|
|
3286
|
+
* Write a `FreeSpaceBox` (skip variant) to an `IsoBoxWriteView`.
|
|
3288
3287
|
*
|
|
3289
3288
|
* ISO/IEC 14496-12:2012 - 8.1.2 Free Space Box
|
|
3290
3289
|
*
|
|
3291
|
-
* @param box - The FreeSpaceBox fields to write
|
|
3290
|
+
* @param box - The `FreeSpaceBox` fields to write
|
|
3292
3291
|
*
|
|
3293
|
-
* @returns An
|
|
3292
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3294
3293
|
*
|
|
3295
3294
|
* @public
|
|
3296
3295
|
*/
|
|
@@ -3303,13 +3302,13 @@ function writeSkip(box) {
|
|
|
3303
3302
|
//#endregion
|
|
3304
3303
|
//#region src/writers/writeSmhd.ts
|
|
3305
3304
|
/**
|
|
3306
|
-
* Write a SoundMediaHeaderBox to an
|
|
3305
|
+
* Write a `SoundMediaHeaderBox` to an `IsoBoxWriteView`.
|
|
3307
3306
|
*
|
|
3308
3307
|
* ISO/IEC 14496-12:2012 - 12.2.2 Sound Media Header Box
|
|
3309
3308
|
*
|
|
3310
|
-
* @param box - The SoundMediaHeaderBox fields to write
|
|
3309
|
+
* @param box - The `SoundMediaHeaderBox` fields to write
|
|
3311
3310
|
*
|
|
3312
|
-
* @returns An
|
|
3311
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3313
3312
|
*
|
|
3314
3313
|
* @public
|
|
3315
3314
|
*/
|
|
@@ -3324,13 +3323,13 @@ function writeSmhd(box) {
|
|
|
3324
3323
|
//#endregion
|
|
3325
3324
|
//#region src/writers/writeSsix.ts
|
|
3326
3325
|
/**
|
|
3327
|
-
* Write a SubsegmentIndexBox to an
|
|
3326
|
+
* Write a `SubsegmentIndexBox` to an `IsoBoxWriteView`.
|
|
3328
3327
|
*
|
|
3329
3328
|
* ISO/IEC 14496-12:2012 - 8.16.4 Subsegment Index Box
|
|
3330
3329
|
*
|
|
3331
|
-
* @param box - The SubsegmentIndexBox fields to write
|
|
3330
|
+
* @param box - The `SubsegmentIndexBox` fields to write
|
|
3332
3331
|
*
|
|
3333
|
-
* @returns An
|
|
3332
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3334
3333
|
*
|
|
3335
3334
|
* @public
|
|
3336
3335
|
*/
|
|
@@ -3359,13 +3358,13 @@ function writeSsix(box) {
|
|
|
3359
3358
|
//#endregion
|
|
3360
3359
|
//#region src/writers/writeSthd.ts
|
|
3361
3360
|
/**
|
|
3362
|
-
* Write a SubtitleMediaHeaderBox to an
|
|
3361
|
+
* Write a `SubtitleMediaHeaderBox` to an `IsoBoxWriteView`.
|
|
3363
3362
|
*
|
|
3364
3363
|
* ISO/IEC 14496-12:2012 - 12.6.2 Subtitle Media Header Box
|
|
3365
3364
|
*
|
|
3366
|
-
* @param box - The SubtitleMediaHeaderBox fields to write
|
|
3365
|
+
* @param box - The `SubtitleMediaHeaderBox` fields to write
|
|
3367
3366
|
*
|
|
3368
|
-
* @returns An
|
|
3367
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3369
3368
|
*
|
|
3370
3369
|
* @public
|
|
3371
3370
|
*/
|
|
@@ -3378,12 +3377,12 @@ function writeSthd(box) {
|
|
|
3378
3377
|
//#endregion
|
|
3379
3378
|
//#region src/writers/writeStsd.ts
|
|
3380
3379
|
/**
|
|
3381
|
-
* Write a SampleDescriptionBox to an
|
|
3380
|
+
* Write a `SampleDescriptionBox` to an `IsoBoxWriteView`.
|
|
3382
3381
|
*
|
|
3383
|
-
* @param box - The SampleDescriptionBox fields to write
|
|
3382
|
+
* @param box - The `SampleDescriptionBox` fields to write
|
|
3384
3383
|
* @param config - The IsoBoxWriteViewConfig to use
|
|
3385
3384
|
*
|
|
3386
|
-
* @returns An
|
|
3385
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3387
3386
|
*
|
|
3388
3387
|
* @public
|
|
3389
3388
|
*/
|
|
@@ -3403,13 +3402,13 @@ function writeStsd(box, config) {
|
|
|
3403
3402
|
//#endregion
|
|
3404
3403
|
//#region src/writers/writeStss.ts
|
|
3405
3404
|
/**
|
|
3406
|
-
* Write a SyncSampleBox to an
|
|
3405
|
+
* Write a `SyncSampleBox` to an `IsoBoxWriteView`.
|
|
3407
3406
|
*
|
|
3408
3407
|
* ISO/IEC 14496-12:2012 - 8.6.2 Sync Sample Box
|
|
3409
3408
|
*
|
|
3410
|
-
* @param box - The SyncSampleBox fields to write
|
|
3409
|
+
* @param box - The `SyncSampleBox` fields to write
|
|
3411
3410
|
*
|
|
3412
|
-
* @returns An
|
|
3411
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3413
3412
|
*
|
|
3414
3413
|
* @public
|
|
3415
3414
|
*/
|
|
@@ -3428,11 +3427,11 @@ function writeStss(box) {
|
|
|
3428
3427
|
//#endregion
|
|
3429
3428
|
//#region src/writers/writeSttg.ts
|
|
3430
3429
|
/**
|
|
3431
|
-
* Write a WebVttSettingsBox to an
|
|
3430
|
+
* Write a `WebVttSettingsBox` to an `IsoBoxWriteView`.
|
|
3432
3431
|
*
|
|
3433
|
-
* @param box - The WebVttSettingsBox fields to write
|
|
3432
|
+
* @param box - The `WebVttSettingsBox` fields to write
|
|
3434
3433
|
*
|
|
3435
|
-
* @returns An
|
|
3434
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3436
3435
|
*
|
|
3437
3436
|
* @public
|
|
3438
3437
|
*/
|
|
@@ -3445,13 +3444,13 @@ function writeSttg(box) {
|
|
|
3445
3444
|
//#endregion
|
|
3446
3445
|
//#region src/writers/writeStts.ts
|
|
3447
3446
|
/**
|
|
3448
|
-
* Write a DecodingTimeToSampleBox to an
|
|
3447
|
+
* Write a `DecodingTimeToSampleBox` to an `IsoBoxWriteView`.
|
|
3449
3448
|
*
|
|
3450
3449
|
* ISO/IEC 14496-12:2012 - 8.6.1.2 Decoding Time to Sample Box
|
|
3451
3450
|
*
|
|
3452
|
-
* @param box - The DecodingTimeToSampleBox fields to write
|
|
3451
|
+
* @param box - The `DecodingTimeToSampleBox` fields to write
|
|
3453
3452
|
*
|
|
3454
|
-
* @returns An
|
|
3453
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3455
3454
|
*
|
|
3456
3455
|
* @public
|
|
3457
3456
|
*/
|
|
@@ -3473,13 +3472,13 @@ function writeStts(box) {
|
|
|
3473
3472
|
//#endregion
|
|
3474
3473
|
//#region src/writers/writeStyp.ts
|
|
3475
3474
|
/**
|
|
3476
|
-
* Write a SegmentTypeBox to an
|
|
3475
|
+
* Write a `SegmentTypeBox` to an `IsoBoxWriteView`.
|
|
3477
3476
|
*
|
|
3478
3477
|
* ISO/IEC 14496-12:2012 - 8.16.2 Segment Type Box
|
|
3479
3478
|
*
|
|
3480
|
-
* @param box - The SegmentTypeBox fields to write
|
|
3479
|
+
* @param box - The `SegmentTypeBox` fields to write
|
|
3481
3480
|
*
|
|
3482
|
-
* @returns An
|
|
3481
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3483
3482
|
*
|
|
3484
3483
|
* @public
|
|
3485
3484
|
*/
|
|
@@ -3498,13 +3497,13 @@ function writeStyp(box) {
|
|
|
3498
3497
|
//#endregion
|
|
3499
3498
|
//#region src/writers/writeSubs.ts
|
|
3500
3499
|
/**
|
|
3501
|
-
* Write a SubsampleInformationBox to an
|
|
3500
|
+
* Write a `SubsampleInformationBox` to an `IsoBoxWriteView`.
|
|
3502
3501
|
*
|
|
3503
3502
|
* ISO/IEC 14496-12:2012 - 8.7.7 Sub-Sample Information Box
|
|
3504
3503
|
*
|
|
3505
|
-
* @param box - The SubsampleInformationBox fields to write
|
|
3504
|
+
* @param box - The `SubsampleInformationBox` fields to write
|
|
3506
3505
|
*
|
|
3507
|
-
* @returns An
|
|
3506
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3508
3507
|
*
|
|
3509
3508
|
* @public
|
|
3510
3509
|
*/
|
|
@@ -3535,13 +3534,13 @@ function writeSubs(box) {
|
|
|
3535
3534
|
//#endregion
|
|
3536
3535
|
//#region src/writers/writeTenc.ts
|
|
3537
3536
|
/**
|
|
3538
|
-
* Write a TrackEncryptionBox to an
|
|
3537
|
+
* Write a `TrackEncryptionBox` to an `IsoBoxWriteView`.
|
|
3539
3538
|
*
|
|
3540
3539
|
* ISO/IEC 23001-7 - 8.2 Track Encryption Box
|
|
3541
3540
|
*
|
|
3542
|
-
* @param box - The TrackEncryptionBox fields to write
|
|
3541
|
+
* @param box - The `TrackEncryptionBox` fields to write
|
|
3543
3542
|
*
|
|
3544
|
-
* @returns An
|
|
3543
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3545
3544
|
*
|
|
3546
3545
|
* @public
|
|
3547
3546
|
*/
|
|
@@ -3557,13 +3556,13 @@ function writeTenc(box) {
|
|
|
3557
3556
|
//#endregion
|
|
3558
3557
|
//#region src/writers/writeTfdt.ts
|
|
3559
3558
|
/**
|
|
3560
|
-
* Write a TrackFragmentBaseMediaDecodeTimeBox to an
|
|
3559
|
+
* Write a `TrackFragmentBaseMediaDecodeTimeBox` to an `IsoBoxWriteView`.
|
|
3561
3560
|
*
|
|
3562
3561
|
* ISO/IEC 14496-12:2012 - 8.8.12 Track Fragment Base Media Decode Time Box
|
|
3563
3562
|
*
|
|
3564
|
-
* @param box - The TrackFragmentBaseMediaDecodeTimeBox fields to write
|
|
3563
|
+
* @param box - The `TrackFragmentBaseMediaDecodeTimeBox` fields to write
|
|
3565
3564
|
*
|
|
3566
|
-
* @returns An
|
|
3565
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3567
3566
|
*
|
|
3568
3567
|
* @public
|
|
3569
3568
|
*/
|
|
@@ -3581,13 +3580,13 @@ function writeTfdt(box) {
|
|
|
3581
3580
|
//#endregion
|
|
3582
3581
|
//#region src/writers/writeTfhd.ts
|
|
3583
3582
|
/**
|
|
3584
|
-
* Write a TrackFragmentHeaderBox to an
|
|
3583
|
+
* Write a `TrackFragmentHeaderBox` to an `IsoBoxWriteView`.
|
|
3585
3584
|
*
|
|
3586
3585
|
* ISO/IEC 14496-12:2012 - 8.8.7 Track Fragment Header Box
|
|
3587
3586
|
*
|
|
3588
|
-
* @param box - The TrackFragmentHeaderBox fields to write
|
|
3587
|
+
* @param box - The `TrackFragmentHeaderBox` fields to write
|
|
3589
3588
|
*
|
|
3590
|
-
* @returns An
|
|
3589
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3591
3590
|
*
|
|
3592
3591
|
* @public
|
|
3593
3592
|
*/
|
|
@@ -3614,13 +3613,13 @@ function writeTfhd(box) {
|
|
|
3614
3613
|
//#endregion
|
|
3615
3614
|
//#region src/writers/writeTfra.ts
|
|
3616
3615
|
/**
|
|
3617
|
-
* Write a TrackFragmentRandomAccessBox to an
|
|
3616
|
+
* Write a `TrackFragmentRandomAccessBox` to an `IsoBoxWriteView`.
|
|
3618
3617
|
*
|
|
3619
3618
|
* ISO/IEC 14496-12:2012 - 8.8.10 Track Fragment Random Access Box
|
|
3620
3619
|
*
|
|
3621
|
-
* @param box - The TrackFragmentRandomAccessBox fields to write
|
|
3620
|
+
* @param box - The `TrackFragmentRandomAccessBox` fields to write
|
|
3622
3621
|
*
|
|
3623
|
-
* @returns An
|
|
3622
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3624
3623
|
*
|
|
3625
3624
|
* @public
|
|
3626
3625
|
*/
|
|
@@ -3652,13 +3651,13 @@ function writeTfra(box) {
|
|
|
3652
3651
|
//#endregion
|
|
3653
3652
|
//#region src/writers/writeTkhd.ts
|
|
3654
3653
|
/**
|
|
3655
|
-
* Write a TrackHeaderBox to an
|
|
3654
|
+
* Write a `TrackHeaderBox` to an `IsoBoxWriteView`.
|
|
3656
3655
|
*
|
|
3657
3656
|
* ISO/IEC 14496-12:2012 - 8.3.2 Track Header Box
|
|
3658
3657
|
*
|
|
3659
|
-
* @param box - The TrackHeaderBox fields to write
|
|
3658
|
+
* @param box - The `TrackHeaderBox` fields to write
|
|
3660
3659
|
*
|
|
3661
|
-
* @returns An
|
|
3660
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3662
3661
|
*
|
|
3663
3662
|
* @public
|
|
3664
3663
|
*/
|
|
@@ -3688,13 +3687,13 @@ function writeTkhd(box) {
|
|
|
3688
3687
|
//#endregion
|
|
3689
3688
|
//#region src/writers/writeTrex.ts
|
|
3690
3689
|
/**
|
|
3691
|
-
* Write a TrackExtendsBox to an
|
|
3690
|
+
* Write a `TrackExtendsBox` to an `IsoBoxWriteView`.
|
|
3692
3691
|
*
|
|
3693
3692
|
* ISO/IEC 14496-12:2012 - 8.8.3 Track Extends Box
|
|
3694
3693
|
*
|
|
3695
|
-
* @param box - The TrackExtendsBox fields to write
|
|
3694
|
+
* @param box - The `TrackExtendsBox` fields to write
|
|
3696
3695
|
*
|
|
3697
|
-
* @returns An
|
|
3696
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3698
3697
|
*
|
|
3699
3698
|
* @public
|
|
3700
3699
|
*/
|
|
@@ -3712,13 +3711,13 @@ function writeTrex(box) {
|
|
|
3712
3711
|
//#endregion
|
|
3713
3712
|
//#region src/writers/writeTrun.ts
|
|
3714
3713
|
/**
|
|
3715
|
-
* Write a TrackRunBox to an
|
|
3714
|
+
* Write a `TrackRunBox` to an `IsoBoxWriteView`.
|
|
3716
3715
|
*
|
|
3717
3716
|
* ISO/IEC 14496-12:2012 - 8.8.8 Track Run Box
|
|
3718
3717
|
*
|
|
3719
|
-
* @param box - The TrackRunBox fields to write
|
|
3718
|
+
* @param box - The `TrackRunBox` fields to write
|
|
3720
3719
|
*
|
|
3721
|
-
* @returns An
|
|
3720
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3722
3721
|
*
|
|
3723
3722
|
* @public
|
|
3724
3723
|
*/
|
|
@@ -3751,13 +3750,13 @@ function writeTrun(box) {
|
|
|
3751
3750
|
//#endregion
|
|
3752
3751
|
//#region src/writers/writeUrl.ts
|
|
3753
3752
|
/**
|
|
3754
|
-
* Write a
|
|
3753
|
+
* Write a `DataEntryUrlBox` to an `IsoBoxWriteView`.
|
|
3755
3754
|
*
|
|
3756
3755
|
* ISO/IEC 14496-12:2012 - 8.7.2 Data Reference Box
|
|
3757
3756
|
*
|
|
3758
|
-
* @param box - The
|
|
3757
|
+
* @param box - The `DataEntryUrlBox` fields to write
|
|
3759
3758
|
*
|
|
3760
|
-
* @returns An
|
|
3759
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3761
3760
|
*
|
|
3762
3761
|
* @public
|
|
3763
3762
|
*/
|
|
@@ -3774,13 +3773,13 @@ function writeUrl(box) {
|
|
|
3774
3773
|
//#endregion
|
|
3775
3774
|
//#region src/writers/writeUrn.ts
|
|
3776
3775
|
/**
|
|
3777
|
-
* Write a
|
|
3776
|
+
* Write a `DataEntryUrnBox` to an `IsoBoxWriteView`.
|
|
3778
3777
|
*
|
|
3779
3778
|
* ISO/IEC 14496-12:2012 - 8.7.2 Data Reference Box
|
|
3780
3779
|
*
|
|
3781
|
-
* @param box - The
|
|
3780
|
+
* @param box - The `DataEntryUrnBox` fields to write
|
|
3782
3781
|
*
|
|
3783
|
-
* @returns An
|
|
3782
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3784
3783
|
*
|
|
3785
3784
|
* @public
|
|
3786
3785
|
*/
|
|
@@ -3799,11 +3798,11 @@ function writeUrn(box) {
|
|
|
3799
3798
|
//#endregion
|
|
3800
3799
|
//#region src/writers/writeVlab.ts
|
|
3801
3800
|
/**
|
|
3802
|
-
* Write a WebVttSourceLabelBox to an
|
|
3801
|
+
* Write a `WebVttSourceLabelBox` to an `IsoBoxWriteView`.
|
|
3803
3802
|
*
|
|
3804
|
-
* @param box - The WebVttSourceLabelBox fields to write
|
|
3803
|
+
* @param box - The `WebVttSourceLabelBox` fields to write
|
|
3805
3804
|
*
|
|
3806
|
-
* @returns An
|
|
3805
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3807
3806
|
*
|
|
3808
3807
|
* @public
|
|
3809
3808
|
*/
|
|
@@ -3816,13 +3815,13 @@ function writeVlab(box) {
|
|
|
3816
3815
|
//#endregion
|
|
3817
3816
|
//#region src/writers/writeVmhd.ts
|
|
3818
3817
|
/**
|
|
3819
|
-
* Write a VideoMediaHeaderBox to an
|
|
3818
|
+
* Write a `VideoMediaHeaderBox` to an `IsoBoxWriteView`.
|
|
3820
3819
|
*
|
|
3821
3820
|
* ISO/IEC 14496-12:2012 - 12.1.2 Video Media Header Box
|
|
3822
3821
|
*
|
|
3823
|
-
* @param box - The VideoMediaHeaderBox fields to write
|
|
3822
|
+
* @param box - The `VideoMediaHeaderBox` fields to write
|
|
3824
3823
|
*
|
|
3825
|
-
* @returns An
|
|
3824
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3826
3825
|
*
|
|
3827
3826
|
* @public
|
|
3828
3827
|
*/
|
|
@@ -3837,11 +3836,11 @@ function writeVmhd(box) {
|
|
|
3837
3836
|
//#endregion
|
|
3838
3837
|
//#region src/writers/writeVttC.ts
|
|
3839
3838
|
/**
|
|
3840
|
-
* Write a WebVttConfigurationBox to an
|
|
3839
|
+
* Write a `WebVttConfigurationBox` to an `IsoBoxWriteView`.
|
|
3841
3840
|
*
|
|
3842
|
-
* @param box - The WebVttConfigurationBox fields to write
|
|
3841
|
+
* @param box - The `WebVttConfigurationBox` fields to write
|
|
3843
3842
|
*
|
|
3844
|
-
* @returns An
|
|
3843
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3845
3844
|
*
|
|
3846
3845
|
* @public
|
|
3847
3846
|
*/
|
|
@@ -3855,9 +3854,9 @@ function writeVttC(box) {
|
|
|
3855
3854
|
//#endregion
|
|
3856
3855
|
//#region src/writers/writeVtte.ts
|
|
3857
3856
|
/**
|
|
3858
|
-
* Write a WebVttEmptySampleBox to an
|
|
3857
|
+
* Write a `WebVttEmptySampleBox` to an `IsoBoxWriteView`.
|
|
3859
3858
|
*
|
|
3860
|
-
* @returns An
|
|
3859
|
+
* @returns An `IsoBoxWriteView` containing the encoded box
|
|
3861
3860
|
*
|
|
3862
3861
|
* @public
|
|
3863
3862
|
*/
|
|
@@ -3866,5 +3865,5 @@ function writeVtte(_) {
|
|
|
3866
3865
|
}
|
|
3867
3866
|
|
|
3868
3867
|
//#endregion
|
|
3869
|
-
export { CONTAINERS, IsoBoxReadableStream, 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, traverseIsoBoxes, 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 };
|
|
3868
|
+
export { CONTAINERS, DATA, INT, IsoBoxFields, IsoBoxReadView, IsoBoxReadableStream, IsoBoxWriteView, STRING, TEMPLATE, UINT, UTF8, 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, traverseIsoBoxes, 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 };
|
|
3870
3869
|
//# sourceMappingURL=index.js.map
|