gkozlenko/node-video-lib

View on GitHub
lib/mp4/atoms/atom-hev1.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
'use strict';

const VideoSampleAtom = require('../video-sample-atom');
const Utils = require('../utils');

class AtomHEV1 extends VideoSampleAtom {

    type() {
        return Utils.ATOM_HEV1;
    }

    extraType() {
        return Utils.ATOM_HVCC;
    }

}

module.exports = AtomHEV1;