Re: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-29 Thread Michael Manousos

Jeremy McNamara wrote:
Michael Manousos wrote:
The performance of the oh323 channel driver is limited by OpenH323.
asterisk-oh323 uses the (more complete) RTP implementation offered by
the library, and not that of Asterisk. Of course there are pros
(adaptive jitter buffer, RTCP implementation) and cons (lower
performance). It's up to the user to select the one that performs
better for his application.

flamePut the crack pipe down./flame
I won't bite. We all know what you have done.
We have gone over this before, asterisk-oh323 is limited by the method 
you implemented to buffer the audio around.

Jeremy McNamara

Michael.
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-28 Thread administrator tootai
Scott Stingel a écrit :
Hi-
In answer to your questions:
Someone on Friday had said that disabling Fast Start corrected the audio
problem with H.323, so yesterday I tried to disable it in
~/asterisk/channels/h323/ast_h323.cpp.  Today, I noticed that Jeremy
(NuFone) uploaded a new version of this file with the same fix:
Change the line:
BOOL	noFastStart;
To:
BOOL	noFastStart = TRUE; 

Unfortunately, this made no difference for connections from my customer's
Cisco 5300, so I decided to abandon the built-in h323 in favour of oh323.
Maybe you'll have better luck with the original code.
 

I updated the to the cvs-27/06/04, applied the changes above and it 
works. I'm not using any cisco devices but  the GNUgk

[...]
--
dash
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-28 Thread Michael Manousos
Tommy,
Still waiting from you whether the CDRs are recorded with cdr_csv.
This is working just fine for me.
Michael.
T. Chan wrote:
Hi, Scott. Are you telling me that this native h.323 has been hardcoded
with fast start? Can you tell me where in ast_h323.cpp it is that you
disabled this faststart? Have you tried using the Stable cvs of the
Asterisk.
Can you let me know which version of the OH323 are you using ? Is it the
0.6.2A? Which version of the Pwlib and OpenH323 you used, is it the newest
version as stated? Did you apply the patch? I tried using this driver, but I
have problem with cdr_mysql, it is not recording cdr. Please share your
information, thanks alot.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott Stingel
Sent: Sunday, June 27, 2004 6:20 PM
To: [EMAIL PROTECTED]
Subject: [Asterisk-Users] H.323 Audio problem UPDATE
Update on this problem:
I gave up on  the native h.323 because, like others, I couldn't get audio
working.  (yes, I tried disabling FastStart in ast_h323.cpp - no change)
So I went and got the OH323 code from www.inaccessnetworks.com.  Glad to say
that everything seems to work so far.  Not only does audio work, but even
the handshaking is now working in both OpenPhone and even NetMeeting (for
the first time).
Notes to others who want to try OH323:
* The installation is a bit more complicated than h323.  Follow the
instructions in the ReadMe file exactly.
* You must choose and install the proper versions of PWLib and OpenH323, as
stated.
* Don't forget to edit the Makefile as stated.
Some load testing to following this week, but I'm encouraged!
Regards
Scott
Scott M. Stingel
President,
Emerging Voice Technology, Inc.
Palo Alto California  London England
www.evtmedia.com
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 6/15/2004
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 6/15/2004
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-28 Thread Brian Wilkins
Sorry this has nothing to do with your audio issue, but I noticed you were 
able to build oh323 1.13.5 and pwlib 1.6.6 sucessfully with asterisk-oh323 
0.6.2. I get the following errors when trying to compile the oh323 wrapper 
for asterisk:

-- snippet of errors --
In file included from asteriskaudio.cxx:37:
wrapper_misc.hxx:61: parse error before `{'
wrapper_misc.hxx:71: parse error before `protected'
In file included from asteriskaudio.cxx:38:
asteriskaudio.hxx:41: parse error before `{'
asteriskaudio.hxx:48: destructors must be member functions
asteriskaudio.hxx:55: parse error before `protected'
asteriskaudio.hxx:57: syntax error before `;'
asteriskaudio.hxx:61: parse error before `}'
asteriskaudio.hxx:69: parse error before `{'
asteriskaudio.hxx:76: destructors must be member functions
asteriskaudio.hxx:78: syntax error before `('
asteriskaudio.hxx:79: syntax error before `('
asteriskaudio.hxx:80: parse error before `'
--end snippet--

In my makefile, I have set the following settings : 

PWLIBDIR=/usr/src/pwlib
OPENH323DIR=/usr/src/openh323
ASTERISKINCDIR=/usr/src/asterisk/include
ASTERISKMODDIR=/usr/lib/asterisk/modules
OH323WRAPLIBDIR=/usr/local/lib

Both pwlib and openh323 build sucessfully, but when I try to build 
asterisk-oh323 I get those errors. Any clues? 

Regards, 

Brian Wilkins
--
Heritage Communications Corporation
  Melbourne, FL USA 32935

On Yaum al-Ahad 09 Jumaada al-Awal 1425 06:20 pm, Scott Stingel wrote:
 Update on this problem:

 I gave up on  the native h.323 because, like others, I couldn't get audio
 working.  (yes, I tried disabling FastStart in ast_h323.cpp - no change)

 So I went and got the OH323 code from www.inaccessnetworks.com.  Glad to
 say that everything seems to work so far.  Not only does audio work, but
 even the handshaking is now working in both OpenPhone and even NetMeeting
 (for the first time).

 Notes to others who want to try OH323:

 * The installation is a bit more complicated than h323.  Follow the
 instructions in the ReadMe file exactly.

 * You must choose and install the proper versions of PWLib and OpenH323, as
 stated.

 * Don't forget to edit the Makefile as stated.

 Some load testing to following this week, but I'm encouraged!

 Regards
 Scott

 Scott M. Stingel
 President,
 Emerging Voice Technology, Inc.
 Palo Alto California  London England
 www.evtmedia.com


 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-28 Thread Scott Stingel
Hi Brian-

I think you have to use 0.6.2a not 0.6.2.  Also, you might try the new
version from today:  0.6.3.

And just checking, in your Makefile, that you set ASTERISKSRCDIR =
/usr/src/asterisk.  (maybe this is a 0.6.2a thing)

Regards
Scott 


Scott M. Stingel
President,
Emerging Voice Technology, Inc.
Palo Alto California  London England
www.evtmedia.com 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Brian Wilkins
Sent: Monday, June 28, 2004 8:15 AM
To: [EMAIL PROTECTED]
Subject: Re: [Asterisk-Users] H.323 Audio problem UPDATE

Sorry this has nothing to do with your audio issue, but I noticed you were
able to build oh323 1.13.5 and pwlib 1.6.6 sucessfully with asterisk-oh323
0.6.2. I get the following errors when trying to compile the oh323 wrapper
for asterisk:

-- snippet of errors --
In file included from asteriskaudio.cxx:37:
wrapper_misc.hxx:61: parse error before `{'
wrapper_misc.hxx:71: parse error before `protected'
In file included from asteriskaudio.cxx:38:
asteriskaudio.hxx:41: parse error before `{'
asteriskaudio.hxx:48: destructors must be member functions
asteriskaudio.hxx:55: parse error before `protected'
asteriskaudio.hxx:57: syntax error before `;'
asteriskaudio.hxx:61: parse error before `}'
asteriskaudio.hxx:69: parse error before `{'
asteriskaudio.hxx:76: destructors must be member functions
asteriskaudio.hxx:78: syntax error before `('
asteriskaudio.hxx:79: syntax error before `('
asteriskaudio.hxx:80: parse error before `'
--end snippet--

In my makefile, I have set the following settings : 

PWLIBDIR=/usr/src/pwlib
OPENH323DIR=/usr/src/openh323
ASTERISKINCDIR=/usr/src/asterisk/include
ASTERISKMODDIR=/usr/lib/asterisk/modules
OH323WRAPLIBDIR=/usr/local/lib

Both pwlib and openh323 build sucessfully, but when I try to build
asterisk-oh323 I get those errors. Any clues? 

Regards, 

Brian Wilkins
--
Heritage Communications Corporation
  Melbourne, FL USA 32935

On Yaum al-Ahad 09 Jumaada al-Awal 1425 06:20 pm, Scott Stingel wrote:
 Update on this problem:

 I gave up on  the native h.323 because, like others, I couldn't get 
 audio working.  (yes, I tried disabling FastStart in ast_h323.cpp - no 
 change)

 So I went and got the OH323 code from www.inaccessnetworks.com.  Glad 
 to say that everything seems to work so far.  Not only does audio 
 work, but even the handshaking is now working in both OpenPhone and 
 even NetMeeting (for the first time).

 Notes to others who want to try OH323:

 * The installation is a bit more complicated than h323.  Follow the 
 instructions in the ReadMe file exactly.

 * You must choose and install the proper versions of PWLib and 
 OpenH323, as stated.

 * Don't forget to edit the Makefile as stated.

 Some load testing to following this week, but I'm encouraged!

 Regards
 Scott

 Scott M. Stingel
 President,
 Emerging Voice Technology, Inc.
 Palo Alto California  London England
 www.evtmedia.com


 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users



___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-28 Thread Michael Manousos
Did you apply to the OpenH323 the included patch BEFORE configuring the
library (openH323)?
Also, try to use the latest version (0.6.3) if you are running current
Asterisk CVS code.
Michael.
Brian Wilkins wrote:
Sorry this has nothing to do with your audio issue, but I noticed you were 
able to build oh323 1.13.5 and pwlib 1.6.6 sucessfully with asterisk-oh323 
0.6.2. I get the following errors when trying to compile the oh323 wrapper 
for asterisk:

-- snippet of errors --
In file included from asteriskaudio.cxx:37:
wrapper_misc.hxx:61: parse error before `{'
wrapper_misc.hxx:71: parse error before `protected'
In file included from asteriskaudio.cxx:38:
asteriskaudio.hxx:41: parse error before `{'
asteriskaudio.hxx:48: destructors must be member functions
asteriskaudio.hxx:55: parse error before `protected'
asteriskaudio.hxx:57: syntax error before `;'
asteriskaudio.hxx:61: parse error before `}'
asteriskaudio.hxx:69: parse error before `{'
asteriskaudio.hxx:76: destructors must be member functions
asteriskaudio.hxx:78: syntax error before `('
asteriskaudio.hxx:79: syntax error before `('
asteriskaudio.hxx:80: parse error before `'
--end snippet--
In my makefile, I have set the following settings : 

PWLIBDIR=/usr/src/pwlib
OPENH323DIR=/usr/src/openh323
ASTERISKINCDIR=/usr/src/asterisk/include
ASTERISKMODDIR=/usr/lib/asterisk/modules
OH323WRAPLIBDIR=/usr/local/lib
Both pwlib and openh323 build sucessfully, but when I try to build 
asterisk-oh323 I get those errors. Any clues? 

Regards, 

Brian Wilkins
--
Heritage Communications Corporation
  Melbourne, FL USA 32935

On Yaum al-Ahad 09 Jumaada al-Awal 1425 06:20 pm, Scott Stingel wrote:
Update on this problem:
I gave up on  the native h.323 because, like others, I couldn't get audio
working.  (yes, I tried disabling FastStart in ast_h323.cpp - no change)
So I went and got the OH323 code from www.inaccessnetworks.com.  Glad to
say that everything seems to work so far.  Not only does audio work, but
even the handshaking is now working in both OpenPhone and even NetMeeting
(for the first time).
Notes to others who want to try OH323:
* The installation is a bit more complicated than h323.  Follow the
instructions in the ReadMe file exactly.
* You must choose and install the proper versions of PWLib and OpenH323, as
stated.
* Don't forget to edit the Makefile as stated.
Some load testing to following this week, but I'm encouraged!
Regards
Scott
Scott M. Stingel
President,
Emerging Voice Technology, Inc.
Palo Alto California  London England
www.evtmedia.com
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-28 Thread Brian Wilkins
Michael: 
   Yes I did. 

On Yaum al-Ithnain 10 Jumaada al-Awal 1425 11:28 am, Michael Manousos wrote:
 Did you apply to the OpenH323 the included patch BEFORE configuring the
 library (openH323)?
 Also, try to use the latest version (0.6.3) if you are running current
 Asterisk CVS code.

 Michael.

 Brian Wilkins wrote:
  Sorry this has nothing to do with your audio issue, but I noticed you
  were able to build oh323 1.13.5 and pwlib 1.6.6 sucessfully with
  asterisk-oh323 0.6.2. I get the following errors when trying to compile
  the oh323 wrapper for asterisk:
 
  -- snippet of errors --
  In file included from asteriskaudio.cxx:37:
  wrapper_misc.hxx:61: parse error before `{'
  wrapper_misc.hxx:71: parse error before `protected'
  In file included from asteriskaudio.cxx:38:
  asteriskaudio.hxx:41: parse error before `{'
  asteriskaudio.hxx:48: destructors must be member functions
  asteriskaudio.hxx:55: parse error before `protected'
  asteriskaudio.hxx:57: syntax error before `;'
  asteriskaudio.hxx:61: parse error before `}'
  asteriskaudio.hxx:69: parse error before `{'
  asteriskaudio.hxx:76: destructors must be member functions
  asteriskaudio.hxx:78: syntax error before `('
  asteriskaudio.hxx:79: syntax error before `('
  asteriskaudio.hxx:80: parse error before `'
  --end snippet--
 
  In my makefile, I have set the following settings :
 
  PWLIBDIR=/usr/src/pwlib
  OPENH323DIR=/usr/src/openh323
  ASTERISKINCDIR=/usr/src/asterisk/include
  ASTERISKMODDIR=/usr/lib/asterisk/modules
  OH323WRAPLIBDIR=/usr/local/lib
 
  Both pwlib and openh323 build sucessfully, but when I try to build
  asterisk-oh323 I get those errors. Any clues?
 
  Regards,
 
  Brian Wilkins
  --
  Heritage Communications Corporation
Melbourne, FL USA 32935
 
  On Yaum al-Ahad 09 Jumaada al-Awal 1425 06:20 pm, Scott Stingel wrote:
 Update on this problem:
 
 I gave up on  the native h.323 because, like others, I couldn't get
  audio working.  (yes, I tried disabling FastStart in ast_h323.cpp - no
  change)
 
 So I went and got the OH323 code from www.inaccessnetworks.com.  Glad to
 say that everything seems to work so far.  Not only does audio work, but
 even the handshaking is now working in both OpenPhone and even NetMeeting
 (for the first time).
 
 Notes to others who want to try OH323:
 
 * The installation is a bit more complicated than h323.  Follow the
 instructions in the ReadMe file exactly.
 
 * You must choose and install the proper versions of PWLib and OpenH323,
  as stated.
 
 * Don't forget to edit the Makefile as stated.
 
 Some load testing to following this week, but I'm encouraged!
 
 Regards
 Scott
 
 Scott M. Stingel
 President,
 Emerging Voice Technology, Inc.
 Palo Alto California  London England
 www.evtmedia.com
 
 
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
 
  ___
  Asterisk-Users mailing list
  [EMAIL PROTECTED]
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users

 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

-- 
--
Heritage Communications Corporation
  Melbourne, FL USA 32935
http://www.hcc.net
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-28 Thread Brian Wilkins
Ok, 
I got it all to work finally. I removed everything and started from 
scratch. I also got the latest version of asterisk from the CVS. I built 
PWLib, then applied the patch to oh323 1.13.5 then built oh323, and finally 
built and installed the wrapper (0.6.3). I just started up Asterisk and 
everything is working fine. Thanks for all the help -

On Yaum al-Ithnain 10 Jumaada al-Awal 1425 11:28 am, Michael Manousos wrote:
 Did you apply to the OpenH323 the included patch BEFORE configuring the
 library (openH323)?
 Also, try to use the latest version (0.6.3) if you are running current
 Asterisk CVS code.

 Michael.

 Brian Wilkins wrote:
  Sorry this has nothing to do with your audio issue, but I noticed you
  were able to build oh323 1.13.5 and pwlib 1.6.6 sucessfully with
  asterisk-oh323 0.6.2. I get the following errors when trying to compile
  the oh323 wrapper for asterisk:
 
  -- snippet of errors --
  In file included from asteriskaudio.cxx:37:
  wrapper_misc.hxx:61: parse error before `{'
  wrapper_misc.hxx:71: parse error before `protected'
  In file included from asteriskaudio.cxx:38:
  asteriskaudio.hxx:41: parse error before `{'
  asteriskaudio.hxx:48: destructors must be member functions
  asteriskaudio.hxx:55: parse error before `protected'
  asteriskaudio.hxx:57: syntax error before `;'
  asteriskaudio.hxx:61: parse error before `}'
  asteriskaudio.hxx:69: parse error before `{'
  asteriskaudio.hxx:76: destructors must be member functions
  asteriskaudio.hxx:78: syntax error before `('
  asteriskaudio.hxx:79: syntax error before `('
  asteriskaudio.hxx:80: parse error before `'
  --end snippet--
 
  In my makefile, I have set the following settings :
 
  PWLIBDIR=/usr/src/pwlib
  OPENH323DIR=/usr/src/openh323
  ASTERISKINCDIR=/usr/src/asterisk/include
  ASTERISKMODDIR=/usr/lib/asterisk/modules
  OH323WRAPLIBDIR=/usr/local/lib
 
  Both pwlib and openh323 build sucessfully, but when I try to build
  asterisk-oh323 I get those errors. Any clues?
 
  Regards,
 
  Brian Wilkins
  --
  Heritage Communications Corporation
Melbourne, FL USA 32935
 
  On Yaum al-Ahad 09 Jumaada al-Awal 1425 06:20 pm, Scott Stingel wrote:
 Update on this problem:
 
 I gave up on  the native h.323 because, like others, I couldn't get
  audio working.  (yes, I tried disabling FastStart in ast_h323.cpp - no
  change)
 
 So I went and got the OH323 code from www.inaccessnetworks.com.  Glad to
 say that everything seems to work so far.  Not only does audio work, but
 even the handshaking is now working in both OpenPhone and even NetMeeting
 (for the first time).
 
 Notes to others who want to try OH323:
 
 * The installation is a bit more complicated than h323.  Follow the
 instructions in the ReadMe file exactly.
 
 * You must choose and install the proper versions of PWLib and OpenH323,
  as stated.
 
 * Don't forget to edit the Makefile as stated.
 
 Some load testing to following this week, but I'm encouraged!
 
 Regards
 Scott
 
 Scott M. Stingel
 President,
 Emerging Voice Technology, Inc.
 Palo Alto California  London England
 www.evtmedia.com
 
 
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
 
  ___
  Asterisk-Users mailing list
  [EMAIL PROTECTED]
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users

 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

-- 
--
Heritage Communications Corporation
  Melbourne, FL USA 32935
http://www.hcc.net
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-28 Thread Jeremy McNamara
Michael Manousos wrote:
The performance of the oh323 channel driver is limited by OpenH323.
asterisk-oh323 uses the (more complete) RTP implementation offered by
the library, and not that of Asterisk. Of course there are pros
(adaptive jitter buffer, RTCP implementation) and cons (lower
performance). It's up to the user to select the one that performs
better for his application.

flamePut the crack pipe down./flame
We have gone over this before, asterisk-oh323 is limited by the method 
you implemented to buffer the audio around.

Jeremy McNamara


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] H.323 Audio problem UPDATE

2004-06-27 Thread Scott Stingel
Update on this problem:
 
I gave up on  the native h.323 because, like others, I couldn't get audio
working.  (yes, I tried disabling FastStart in ast_h323.cpp - no change)
 
So I went and got the OH323 code from www.inaccessnetworks.com.  Glad to say
that everything seems to work so far.  Not only does audio work, but even
the handshaking is now working in both OpenPhone and even NetMeeting (for
the first time).

Notes to others who want to try OH323:

* The installation is a bit more complicated than h323.  Follow the
instructions in the ReadMe file exactly.

* You must choose and install the proper versions of PWLib and OpenH323, as
stated.

* Don't forget to edit the Makefile as stated.

Some load testing to following this week, but I'm encouraged!

Regards
Scott
 
Scott M. Stingel
President,
Emerging Voice Technology, Inc.
Palo Alto California  London England
www.evtmedia.com


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-27 Thread T. Chan
Hi, Scott. Are you telling me that this native h.323 has been hardcoded
with fast start? Can you tell me where in ast_h323.cpp it is that you
disabled this faststart? Have you tried using the Stable cvs of the
Asterisk.

Can you let me know which version of the OH323 are you using ? Is it the
0.6.2A? Which version of the Pwlib and OpenH323 you used, is it the newest
version as stated? Did you apply the patch? I tried using this driver, but I
have problem with cdr_mysql, it is not recording cdr. Please share your
information, thanks alot.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott Stingel
Sent: Sunday, June 27, 2004 6:20 PM
To: [EMAIL PROTECTED]
Subject: [Asterisk-Users] H.323 Audio problem UPDATE


Update on this problem:

I gave up on  the native h.323 because, like others, I couldn't get audio
working.  (yes, I tried disabling FastStart in ast_h323.cpp - no change)

So I went and got the OH323 code from www.inaccessnetworks.com.  Glad to say
that everything seems to work so far.  Not only does audio work, but even
the handshaking is now working in both OpenPhone and even NetMeeting (for
the first time).

Notes to others who want to try OH323:

* The installation is a bit more complicated than h323.  Follow the
instructions in the ReadMe file exactly.

* You must choose and install the proper versions of PWLib and OpenH323, as
stated.

* Don't forget to edit the Makefile as stated.

Some load testing to following this week, but I'm encouraged!

Regards
Scott

Scott M. Stingel
President,
Emerging Voice Technology, Inc.
Palo Alto California  London England
www.evtmedia.com


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 6/15/2004

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 6/15/2004

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-27 Thread Scott Stingel
Hi-

In answer to your questions:

Someone on Friday had said that disabling Fast Start corrected the audio
problem with H.323, so yesterday I tried to disable it in
~/asterisk/channels/h323/ast_h323.cpp.  Today, I noticed that Jeremy
(NuFone) uploaded a new version of this file with the same fix:

Change the line:
BOOLnoFastStart;
To:
BOOLnoFastStart = TRUE; 

Unfortunately, this made no difference for connections from my customer's
Cisco 5300, so I decided to abandon the built-in h323 in favour of oh323.
Maybe you'll have better luck with the original code.

I don't have the option of going back to the so-called STABLE version, since
there are now many fixes and updates in the current HEAD that effect me.

Anyway, so far I'm happy with Michael Manousos' oh323 drivers.  Here's the
full link:

http://www.inaccessnetworks.com/projects/asterisk-oh323

Suggest that you try it and see if it works for you, if you have any
problems with the built-in h323 code. The web site provides a lot of info
about versions and what is supported.

I'm running the latest oh323 0.6.2a, which requires PWLib 1.6.6 and OpenH323
1.13.5.  Don't use any other versions of these - might not work

Regards
Scott


Scott M. Stingel
President,
Emerging Voice Technology, Inc.
Palo Alto California  London England
www.evtmedia.com 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of T. Chan
Sent: Sunday, June 27, 2004 4:47 PM
To: [EMAIL PROTECTED]
Subject: RE: [Asterisk-Users] H.323 Audio problem UPDATE

Hi, Scott. Are you telling me that this native h.323 has been hardcoded
with fast start? Can you tell me where in ast_h323.cpp it is that you
disabled this faststart? Have you tried using the Stable cvs of the
Asterisk.

Can you let me know which version of the OH323 are you using ? Is it the
0.6.2A? Which version of the Pwlib and OpenH323 you used, is it the newest
version as stated? Did you apply the patch? I tried using this driver, but I
have problem with cdr_mysql, it is not recording cdr. Please share your
information, thanks alot.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott Stingel
Sent: Sunday, June 27, 2004 6:20 PM
To: [EMAIL PROTECTED]
Subject: [Asterisk-Users] H.323 Audio problem UPDATE


Update on this problem:

I gave up on  the native h.323 because, like others, I couldn't get audio
working.  (yes, I tried disabling FastStart in ast_h323.cpp - no change)

So I went and got the OH323 code from www.inaccessnetworks.com.  Glad to say
that everything seems to work so far.  Not only does audio work, but even
the handshaking is now working in both OpenPhone and even NetMeeting (for
the first time).

Notes to others who want to try OH323:

* The installation is a bit more complicated than h323.  Follow the
instructions in the ReadMe file exactly.

* You must choose and install the proper versions of PWLib and OpenH323, as
stated.

* Don't forget to edit the Makefile as stated.

Some load testing to following this week, but I'm encouraged!

Regards
Scott

Scott M. Stingel
President,
Emerging Voice Technology, Inc.
Palo Alto California  London England
www.evtmedia.com


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 6/15/2004

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 6/15/2004

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-27 Thread Jeremy McNamara
Scott Stingel wrote:
Some load testing to following this week, but I'm encouraged!

This is where you are going to be discouraged with that other H.323 
driver.  I guarantee it.

Disabling fast-start has solved the problems for quite a few other ppl 
using 5300s, so you must be doing something really nasty with them to 
still not work.

Jeremy McNamara
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] H.323 Audio problem UPDATE

2004-06-27 Thread T. Chan
Hi, Scott, I am very interested in knowing the result of your loading test,
please share after you have done it. Are you using Asterisk as a
pass-through (kinda softswitch) or do have have digium hardware and use it
as an endpoint, because I believe the maxiumum number of channels you can
run stably could be different, please share, thanks.

TC

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jeremy
McNamara
Sent: Sunday, June 27, 2004 9:26 PM
To: [EMAIL PROTECTED]
Subject: Re: [Asterisk-Users] H.323 Audio problem UPDATE


Scott Stingel wrote:

 Some load testing to following this week, but I'm encouraged!


This is where you are going to be discouraged with that other H.323
driver.  I guarantee it.

Disabling fast-start has solved the problems for quite a few other ppl
using 5300s, so you must be doing something really nasty with them to
still not work.


Jeremy McNamara
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 6/15/2004

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 6/15/2004

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users