react-native-webrtc
Version:
WebRTC for React Native
22 lines (21 loc) • 672 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
/**
* @brief represents codec capabilities for senders and receivers.
*/
class RTCRtpCapabilities {
constructor(codecs) {
_defineProperty(this, "_codecs", []);
this._codecs = codecs;
Object.freeze(this);
}
get codecs() {
return this._codecs;
}
}
exports.default = RTCRtpCapabilities;
//# sourceMappingURL=RTCRtpCapabilities.js.map
;