hls.js 1.5.9-0.canary.10276 → 1.5.9-0.canary.10277
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/hls.js +4 -4
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +5 -6
- package/dist/hls.light.js.map +1 -1
- package/dist/hls.light.min.js +1 -1
- package/dist/hls.light.min.js.map +1 -1
- package/dist/hls.light.mjs +5 -6
- package/dist/hls.light.mjs.map +1 -1
- package/dist/hls.min.js +1 -1
- package/dist/hls.min.js.map +1 -1
- package/dist/hls.mjs +4 -4
- package/dist/hls.mjs.map +1 -1
- package/dist/hls.worker.js +1 -1
- package/dist/hls.worker.js.map +1 -1
- package/package.json +1 -1
- package/src/demux/transmuxer-interface.ts +1 -0
- package/src/demux/tsdemuxer.ts +2 -3
package/package.json
CHANGED
package/src/demux/tsdemuxer.ts
CHANGED
@@ -897,8 +897,7 @@ function parsePMT(
|
|
897
897
|
case 0xc2: // SAMPLE-AES EC3
|
898
898
|
/* falls through */
|
899
899
|
case 0x87:
|
900
|
-
|
901
|
-
break;
|
900
|
+
throw new Error('Unsupported EC-3 in M2TS found');
|
902
901
|
|
903
902
|
case 0x24: // ITU-T Rec. H.265 and ISO/IEC 23008-2 (HEVC)
|
904
903
|
if (__USE_M2TS_ADVANCED_CODECS__) {
|
@@ -908,7 +907,7 @@ function parsePMT(
|
|
908
907
|
logger.log('HEVC in M2TS found');
|
909
908
|
}
|
910
909
|
} else {
|
911
|
-
|
910
|
+
throw new Error('Unsupported HEVC in M2TS found');
|
912
911
|
}
|
913
912
|
break;
|
914
913
|
|