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 1097
Collapse All | Expand All

(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/session/phone/linphonemediaengine.cc (-3 / +3 lines)
Lines 27-33 Link Here
27
#include "talk/third_party/mediastreamer/msspeexdec.h"
27
#include "talk/third_party/mediastreamer/msspeexdec.h"
28
#endif
28
#endif
29
}
29
}
30
#include <ortp.h>
30
#include <ortp/ortp.h>
31
#include <netdb.h>
31
#include <netdb.h>
32
#include <unistd.h>
32
#include <unistd.h>
33
#include <fcntl.h>
33
#include <fcntl.h>
Lines 139-145 Link Here
139
 
139
 
140
#ifdef HAVE_SPEEX
140
#ifdef HAVE_SPEEX
141
  ms_speex_codec_init();
141
  ms_speex_codec_init();
142
  rtp_profile_set_payload(&av_profile, 110, &speex_wb);
142
  rtp_profile_set_payload(&av_profile, 110, &payload_type_speex_wb);
143
  codecs_.push_back(Codec(110, "speex", 8));
143
  codecs_.push_back(Codec(110, "speex", 8));
144
#endif
144
#endif
145
145
Lines 149-155 Link Here
149
  codecs_.push_back(Codec(102, "iLBC", 4));
149
  codecs_.push_back(Codec(102, "iLBC", 4));
150
#endif
150
#endif
151
151
152
  rtp_profile_set_payload(&av_profile, 0, &pcmu8000);
152
  rtp_profile_set_payload(&av_profile, 0, &payload_type_pcmu8000);
153
  codecs_.push_back(Codec(0, "PCMU", 2));
153
  codecs_.push_back(Codec(0, "PCMU", 2));
154
  
154
  
155
return true;
155
return true;
(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/third_party/mediastreamer/msrtprecv.h (-1 / +1 lines)
Lines 28-34 Link Here
28
/* because of a conflict between config.h from oRTP and config.h from linphone:*/
28
/* because of a conflict between config.h from oRTP and config.h from linphone:*/
29
#undef PACKAGE
29
#undef PACKAGE
30
#undef VERSION                                                
30
#undef VERSION                                                
31
#include <ortp.h>
31
#include <ortp/ortp.h>
32
32
33
/*this is the class that implements a copy filter*/
33
/*this is the class that implements a copy filter*/
34
34
(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/third_party/mediastreamer/msrtpsend.c (-1 / +1 lines)
Lines 19-25 Link Here
19
*/
19
*/
20
20
21
#include "msrtpsend.h"
21
#include "msrtpsend.h"
22
#include <telephonyevents.h>
22
#include <ortp/telephonyevents.h>
23
#include "mssync.h"
23
#include "mssync.h"
24
#include "mscodec.h"
24
#include "mscodec.h"
25
25
(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/third_party/mediastreamer/msrtpsend.h (-1 / +1 lines)
Lines 27-33 Link Here
27
27
28
#undef PACKAGE
28
#undef PACKAGE
29
#undef VERSION
29
#undef VERSION
30
#include <ortp.h>
30
#include <ortp/ortp.h>
31
31
32
32
33
/*this is the class that implements a sending through rtp filter*/
33
/*this is the class that implements a sending through rtp filter*/
(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/third_party/ortp/ortp.c (-1 / +1 lines)
Lines 17-23 Link Here
17
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
19
20
#include <ortp.h>
20
#include <ortp/ortp.h>
21
#include "scheduler.h"
21
#include "scheduler.h"
22
#include <stdlib.h>
22
#include <stdlib.h>
23
23
(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/third_party/ortp/rtcpparse.c (-1 / +1 lines)
Lines 21-27 Link Here
21
*/
21
*/
22
22
23
23
24
#include <ortp.h>
24
#include <ortp/ortp.h>
25
25
26
26
27
27
(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/third_party/ortp/rtpparse.c (-1 / +1 lines)
Lines 18-24 Link Here
18
*/
18
*/
19
19
20
20
21
#include <ortp.h>
21
#include <ortp/ortp.h>
22
#include "rtpmod.h"
22
#include "rtpmod.h"
23
#include "jitterctl.h"
23
#include "jitterctl.h"
24
24
(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/third_party/ortp/rtpsession.c (-2 / +2 lines)
Lines 18-25 Link Here
18
*/
18
*/
19
19
20
20
21
#include <ortp.h>
21
#include <ortp/ortp.h>
22
#include <telephonyevents.h>
22
#include <ortp/telephonyevents.h>
23
#include "rtpmod.h"
23
#include "rtpmod.h"
24
#include "jitterctl.h"
24
#include "jitterctl.h"
25
#include "scheduler.h"
25
#include "scheduler.h"
(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/third_party/ortp/sessionset.c (-1 / +1 lines)
Lines 17-23 Link Here
17
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
19
20
#include <ortp.h>
20
#include <ortp/ortp.h>
21
#include <sessionset.h>
21
#include <sessionset.h>
22
#include "scheduler.h"
22
#include "scheduler.h"
23
23
(-)tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/third_party/ortp/telephonyevents.c (-1 / +1 lines)
Lines 17-23 Link Here
17
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
19
20
#include <telephonyevents.h>
20
#include <ortp/telephonyevents.h>
21
21
22
22
23
PayloadType	telephone_event={
23
PayloadType	telephone_event={

Return to bug 1097