[Pkg-voip-commits] r2773 - in yate/trunk/debian: . patches

Mikael Magnusson mikma-guest at alioth.debian.org
Sat Dec 2 14:31:30 CET 2006


Author: mikma-guest
Date: 2006-12-02 14:31:30 +0100 (Sat, 02 Dec 2006)
New Revision: 2773

Added:
   yate/trunk/debian/patches/osschan.dpatch
Modified:
   yate/trunk/debian/changelog
   yate/trunk/debian/patches/00list
Log:
* osschan: change to 20ms frames, fixes problem with garbled audio.

Modified: yate/trunk/debian/changelog
===================================================================
--- yate/trunk/debian/changelog	2006-12-02 11:33:07 UTC (rev 2772)
+++ yate/trunk/debian/changelog	2006-12-02 13:31:30 UTC (rev 2773)
@@ -7,12 +7,13 @@
   * yate: Add tonedetect module
   * Fix broken MD5 on Big Endian architectures. (Closes: #391454)
   * Bump Standards-Version to 3.7.2. No changes required.
+  * osschan: change to 20ms frames, fixes problem with garbled audio.
 
   [ Kilian Krause ]
   * Switch from postgresql-dev to libpq-dev for Build-Depends to pull only
     required amount of packages.
 
- -- Kilian Krause <kilian at debian.org>  Sun, 26 Nov 2006 13:50:55 +0100
+ -- Mikael Magnusson <mikma at users.sourceforge.net>  Sat,  2 Dec 2006 14:25:01 +0100
 
 yate (1.0.0-1.dfsg-2) unstable; urgency=low
 

Modified: yate/trunk/debian/patches/00list
===================================================================
--- yate/trunk/debian/patches/00list	2006-12-02 11:33:07 UTC (rev 2772)
+++ yate/trunk/debian/patches/00list	2006-12-02 13:31:30 UTC (rev 2773)
@@ -4,3 +4,4 @@
 #zapchan
 configure_ilbc
 ymd5_endian
+osschan

Added: yate/trunk/debian/patches/osschan.dpatch
===================================================================
--- yate/trunk/debian/patches/osschan.dpatch	2006-12-02 11:33:07 UTC (rev 2772)
+++ yate/trunk/debian/patches/osschan.dpatch	2006-12-02 13:31:30 UTC (rev 2773)
@@ -0,0 +1,20 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## osschan.dpatch by  <mikma at users.sourceforge.net>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Change to 20ms frame size. Fixes problem with garbled audio in
+## DP: the beginning of calls, and audio delay.
+
+ at DPATCH@
+diff -urNad yate-1.1.0-1.dfsg~/modules/osschan.cpp yate-1.1.0-1.dfsg/modules/osschan.cpp
+--- yate-1.1.0-1.dfsg~/modules/osschan.cpp	2006-06-10 19:34:54.000000000 +0200
++++ yate-1.1.0-1.dfsg/modules/osschan.cpp	2006-12-02 14:01:48.000000000 +0100
+@@ -198,7 +198,7 @@
+ 	    r = 1;
+ 	    continue;
+ 	}
+-	DataBlock data(0,480);
++	DataBlock data(0,320);
+ 	r = ::read(m_device->fd(), data.data(), data.length());
+ 	if (r < 0) {
+ 	    if (errno == EINTR || errno == EAGAIN) {




More information about the Pkg-voip-commits mailing list