current CVS of net/linphone http://savannah.gnu.org/projects/linphone/) library [1] o Pacify gcc: add missing "return" values to non-void functions o This last round of patches get voice communications to "realtime" responsiveness levels. Previously, there were a couple seconds of latency on communications which made them a patience test. - Particularly, the change on talk/third_party/mediastreamer/msrtprecv.c where we now rely on the rtp session's send_pt payload instead of the recv_pt one o Bump PORTREVISION Obtained from: linphone's CVS [1]
18 lines
605 B
C
18 lines
605 B
C
--- ./talk/third_party/mediastreamer/mscodec.c.orig Thu May 11 00:01:12 2006
|
|
+++ ./talk/third_party/mediastreamer/mscodec.c Thu May 11 00:01:45 2006
|
|
@@ -21,6 +21,7 @@
|
|
|
|
#include "mscodec.h"
|
|
#include "msMUlawdec.h"
|
|
+#include "msAlawdec.h"
|
|
|
|
#ifdef TRUESPEECH
|
|
extern MSCodecInfo TrueSpeechinfo;
|
|
@@ -43,6 +44,7 @@
|
|
// ms_filter_register(MS_FILTER_INFO(&GSMinfo));
|
|
// ms_filter_register(MS_FILTER_INFO(&LPC10info));
|
|
ms_filter_register(MS_FILTER_INFO(&MULAWinfo));
|
|
+ ms_filter_register(MS_FILTER_INFO(&ALAWinfo));
|
|
#ifdef TRUESPEECH
|
|
ms_filter_register(MS_FILTER_INFO(&TrueSpeechinfo));
|
|
#endif
|