@newgameplusinc/odyssey-audio-video-sdk-dev 1.0.44 → 1.0.46

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.
@@ -104,6 +104,21 @@ class MediasoupManager {
104
104
  async produce(track, appData) {
105
105
  if (!this.sendTransport)
106
106
  throw new Error("Send transport not initialized");
107
+ console.log(`🔍 [MediaSoup] Attempting to produce ${track.kind} track, transport state:`, {
108
+ id: this.sendTransport.id,
109
+ closed: this.sendTransport.closed,
110
+ connectionState: this.sendTransport.connectionState,
111
+ });
112
+ // Check if transport is closed or failed
113
+ if (this.sendTransport.closed) {
114
+ throw new Error("Send transport is closed");
115
+ }
116
+ // Check if this track is already being produced
117
+ const existingProducer = Array.from(this.producers.values()).find(p => p.track?.id === track.id);
118
+ if (existingProducer) {
119
+ console.log(`â„šī¸ [MediaSoup] Track ${track.id} already being produced, returning existing producer`);
120
+ return existingProducer;
121
+ }
107
122
  // Configure simulcast for video tracks for adaptive bitrate
108
123
  const produceOptions = { track, appData };
109
124
  if (track.kind === 'video') {
@@ -120,9 +135,16 @@ class MediasoupManager {
120
135
  videoGoogleStartBitrate: 1000
121
136
  };
122
137
  }
123
- const producer = await this.sendTransport.produce(produceOptions);
124
- this.producers.set(producer.id, producer);
125
- return producer;
138
+ try {
139
+ const producer = await this.sendTransport.produce(produceOptions);
140
+ this.producers.set(producer.id, producer);
141
+ console.log(`✅ [MediaSoup] Successfully produced ${track.kind} track`);
142
+ return producer;
143
+ }
144
+ catch (error) {
145
+ console.error(`❌ [MediaSoup] Failed to produce ${track.kind} track:`, error);
146
+ throw error;
147
+ }
126
148
  }
127
149
  async consume(data) {
128
150
  if (!this.recvTransport)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newgameplusinc/odyssey-audio-video-sdk-dev",
3
- "version": "1.0.44",
3
+ "version": "1.0.46",
4
4
  "description": "Odyssey Spatial Audio & Video SDK using MediaSoup for real-time communication",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",