Source: lib/cea/ts_cea_parser.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.cea.TsCeaParser');
  7. goog.require('shaka.cea.CeaUtils');
  8. goog.require('shaka.cea.SeiProcessor');
  9. goog.require('shaka.media.ClosedCaptionParser');
  10. goog.require('shaka.util.BufferUtils');
  11. goog.require('shaka.util.TsParser');
  12. /**
  13. * MPEG TS CEA parser.
  14. * @implements {shaka.extern.ICeaParser}
  15. * @export
  16. */
  17. shaka.cea.TsCeaParser = class {
  18. /** */
  19. constructor() {
  20. /**
  21. * SEI data processor.
  22. * @private
  23. * @const {!shaka.cea.SeiProcessor}
  24. */
  25. this.seiProcessor_ = new shaka.cea.SeiProcessor();
  26. /** @private {?shaka.util.TsParser} */
  27. this.tsParser_ = null;
  28. }
  29. /**
  30. * @override
  31. */
  32. init(initSegment) {
  33. // TS hasn't init segment
  34. }
  35. /**
  36. * @override
  37. */
  38. parse(mediaSegment) {
  39. const CeaUtils = shaka.cea.CeaUtils;
  40. if (!this.tsParser_) {
  41. this.tsParser_ = new shaka.util.TsParser();
  42. } else {
  43. this.tsParser_.clearData();
  44. }
  45. /** @type {!Array<!shaka.extern.ICeaParser.CaptionPacket>} **/
  46. const captionPackets = [];
  47. const uint8ArrayData = shaka.util.BufferUtils.toUint8(mediaSegment);
  48. if (!shaka.util.TsParser.probe(uint8ArrayData)) {
  49. return captionPackets;
  50. }
  51. const tsParser = this.tsParser_.parse(uint8ArrayData);
  52. const codecs = tsParser.getCodecs();
  53. const videoNalus = tsParser.getVideoNalus();
  54. const validNaluTypes = [];
  55. switch (codecs.video) {
  56. case 'avc':
  57. validNaluTypes.push(CeaUtils.H264_NALU_TYPE_SEI);
  58. break;
  59. case 'hvc':
  60. validNaluTypes.push(CeaUtils.H265_PREFIX_NALU_TYPE_SEI);
  61. validNaluTypes.push(CeaUtils.H265_SUFFIX_NALU_TYPE_SEI);
  62. break;
  63. }
  64. if (!validNaluTypes.length) {
  65. return captionPackets;
  66. }
  67. for (const nalu of videoNalus) {
  68. if (validNaluTypes.includes(nalu.type) && nalu.time != null) {
  69. for (const packet of this.seiProcessor_.process(nalu.data)) {
  70. captionPackets.push({
  71. packet: packet,
  72. pts: nalu.time,
  73. });
  74. }
  75. }
  76. }
  77. return captionPackets;
  78. }
  79. };
  80. shaka.media.ClosedCaptionParser.registerParser('video/mp2t',
  81. () => new shaka.cea.TsCeaParser());