freebsd-ports/net-im/libjingle/files/patch-talk__third_party__mediastreamer__mscodec.c
Mario Sergio Fujikawa Ferreira c170c3911b o More updates to libjingle's third party mediaphone (obtained from
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]
2006-05-11 04:53:30 +00:00

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