@webex/web-client-media-engine 1.40.3 → 1.40.5
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/cjs/index.js +236 -185
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +236 -185
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +3 -2
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ConnectionState, LocalTrack } from '@webex/webrtc-core';
|
|
2
2
|
export { AudioDeviceConstraints, ConnectionState, LocalCameraTrack, LocalDisplayTrack, LocalMicrophoneTrack, LocalTrack, LocalTrackEvents, MediaStreamTrackKind, PeerConnection, TrackEndEvent, TrackMuteEvent, TrackPublishEvent, VideoDeviceConstraints, WcmeError, createCameraTrack, createDisplayTrack, createMicrophoneTrack, getAudioInputDevices, getAudioOutputDevices, getDevices, getVideoInputDevices, setOnDeviceChangeHandler } from '@webex/webrtc-core';
|
|
3
|
-
import { StreamId, SourceState, Policy, PolicySpecificInfo, CodecInfo, JmpScrRequest, ActiveSpeakerNotificationMsg, MediaContent, MediaType, Source } from '@webex/json-multistream';
|
|
3
|
+
import { StreamId, SourceState, Policy, PolicySpecificInfo, CodecInfo, JmpScrRequest, ActiveSpeakerNotificationMsg, MediaContent, MediaType, Source, VideoContentHint } from '@webex/json-multistream';
|
|
4
4
|
export { Logger as JMPLogger, SourceState } from '@webex/json-multistream';
|
|
5
5
|
import TypedEmitter, { EventMap } from 'typed-emitter';
|
|
6
6
|
import { LogData } from '@webex/rtcstats';
|
|
@@ -161,7 +161,8 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
161
161
|
private updateRequestedStreams;
|
|
162
162
|
private createDataChannel;
|
|
163
163
|
close(): void;
|
|
164
|
-
|
|
164
|
+
private maybeSendSourceIndication;
|
|
165
|
+
sendSourceIndication(mediaType: MediaType, numLiveSources: number, sources?: Source[], videoContentHint?: VideoContentHint | undefined): void;
|
|
165
166
|
publishTrack(track: LocalTrack): Promise<void>;
|
|
166
167
|
unpublishTrack(track: LocalTrack): Promise<void>;
|
|
167
168
|
private addTrackListeners;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/web-client-media-engine",
|
|
3
|
-
"version": "1.40.
|
|
3
|
+
"version": "1.40.5",
|
|
4
4
|
"description": "Web Client Media Engine is common web code for interacting with the multistream media server.",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"yarn": ">=1.19.1"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@webex/json-multistream": "^1.
|
|
58
|
+
"@webex/json-multistream": "^1.22.0",
|
|
59
59
|
"@webex/rtcstats": "^1.0.1",
|
|
60
60
|
"@webex/ts-sdp": "1.3.1",
|
|
61
|
-
"@webex/webrtc-core": "^1.
|
|
61
|
+
"@webex/webrtc-core": "^1.5.0",
|
|
62
62
|
"bowser": "^2.11.0",
|
|
63
63
|
"js-logger": "^1.6.1",
|
|
64
64
|
"typed-emitter": "^2.1.0",
|