By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2187
Collapse All | Expand All

(-)a/kopete/protocols/jabber/jingle/libjingle/talk/session/phone/linphonemediaengine.cc (-6 / +7 lines)
Lines 47-52 void *thread_function(void *data) Link Here
47
    if (iface && (mc->mute()==FALSE))
47
    if (iface && (mc->mute()==FALSE))
48
      iface->SendPacket(buf, len);
48
      iface->SendPacket(buf, len);
49
  }
49
  }
50
  return NULL;
50
}
51
}
51
52
52
LinphoneMediaChannel::LinphoneMediaChannel() {
53
LinphoneMediaChannel::LinphoneMediaChannel() {
Lines 118-125 void LinphoneMediaChannel::SetSend(bool send) { Link Here
118
  mute_ = !send;
119
  mute_ = !send;
119
}
120
}
120
121
121
float LinphoneMediaChannel::GetCurrentQuality() {}
122
float LinphoneMediaChannel::GetCurrentQuality() { return 0; }
122
int LinphoneMediaChannel::GetOutputLevel() {}
123
int LinphoneMediaChannel::GetOutputLevel() { return 0; }
123
124
124
LinphoneMediaEngine::LinphoneMediaEngine() {}
125
LinphoneMediaEngine::LinphoneMediaEngine() {}
125
LinphoneMediaEngine::~LinphoneMediaEngine() {}
126
LinphoneMediaEngine::~LinphoneMediaEngine() {}
Lines 163-170 MediaChannel *LinphoneMediaEngine::CreateChannel() { Link Here
163
  return new LinphoneMediaChannel();
164
  return new LinphoneMediaChannel();
164
}
165
}
165
166
166
int LinphoneMediaEngine::SetAudioOptions(int options) {}
167
int LinphoneMediaEngine::SetAudioOptions(int options) { return 0; }
167
int LinphoneMediaEngine::SetSoundDevices(int wave_in_device, int wave_out_device) {}
168
int LinphoneMediaEngine::SetSoundDevices(int wave_in_device, int wave_out_device) { return 0; }
168
169
169
float LinphoneMediaEngine::GetCurrentQuality() {}
170
float LinphoneMediaEngine::GetCurrentQuality() { return 0; }
170
int LinphoneMediaEngine::GetInputLevel() {}
171
int LinphoneMediaEngine::GetInputLevel() { return 0; }
(-)a/kopete/protocols/jabber/jingle/libjingle/talk/third_party/mediastreamer/audiostream.c (+1 lines)
Lines 340-343 gint audio_stream_send_dtmf(AudioStream *stream, gchar dtmf) Link Here
340
{
340
{
341
	ms_rtp_send_dtmf(MS_RTP_SEND(stream->rtpsend), dtmf);
341
	ms_rtp_send_dtmf(MS_RTP_SEND(stream->rtpsend), dtmf);
342
	ms_oss_write_play_dtmf(MS_OSS_WRITE(stream->soundwrite),dtmf);
342
	ms_oss_write_play_dtmf(MS_OSS_WRITE(stream->soundwrite),dtmf);
343
	return 0;
343
}
344
}
(-)a/kopete/protocols/jabber/jingle/libjingle/talk/third_party/mediastreamer/msread.c (+1 lines)
Lines 172-177 gint ms_read_close(MSRead *obj) Link Here
172
		obj->fd=-1;
172
		obj->fd=-1;
173
		obj->state=MS_READ_STATE_STOPPED;
173
		obj->state=MS_READ_STATE_STOPPED;
174
	}
174
	}
175
	return 0;
175
}
176
}
176
177
177
178
(-)a/kopete/protocols/jabber/jingle/libjingle/talk/third_party/mediastreamer/mssync.c (+1 lines)
Lines 189-193 int ms_sync_uninit(MSSync *sync) Link Here
189
	g_mutex_free(sync->lock);
189
	g_mutex_free(sync->lock);
190
	g_cond_free(sync->thread_cond);
190
	g_cond_free(sync->thread_cond);
191
	g_cond_free(sync->stop_cond);
191
	g_cond_free(sync->stop_cond);
192
	return 0;
192
}
193
}
193
194

Return to bug 2187