similar to: SIP to SIP no audio help

Displaying 20 results from an estimated 4000 matches similar to: "SIP to SIP no audio help"

2005 Oct 17
1
SIP to SIP sadness
Wow, after getting the O'Reilly book delivered last week along with two Digium TDM400P's, I'm really getting the hang of this. But the SIP to SIP issue is still a problem... and it seems silly because everything else (should have been?) so much harder but is working pretty flawlessly. Basically I get no audio either way, and it tries to do a "native bridge" (handoff?) So
2010 Jul 16
1
Troubles with DBI's dbWriteTable in RMySQL
I am feeling rather dumb right now. I created what I thought was a data.frame as follows: aaa <- lapply(split(moreinfo,list(moreinfo$m_id),drop = TRUE), fun_m_id) m_id_default_res <- do.call(rbind, aaa) print("==========================================") m_id_default_res print("==========================================") ndf <- m_id_default_res[, c('mid',
2008 May 09
1
FLAC__metadata_get_picture()
Hi all! I have a problem to get _all_ images from flac file. I have flac file with 3 images inside ( FLAC__METADATA_TYPE_PICTURE ) How to get _all_ images with bool FLAC::Metadata::get_picture() func? This function is wrapper FLAC__bool FLAC__metadata_get_picture(). flac-1.2.1/src/libFLAC/metadata_iterators.c: ... 285 FLAC_API FLAC__bool FLAC__metadata_get_picture(const char *filename,
2004 Oct 05
1
Popping and Clicking on Local WAN with X-Lite
I'm running a base demo install of Asterisk with ztdummy loaded on a 2Ghz Celeron with 256MB Ram - It's running on Fedora Core 2 in Text Only mode. I can connect with no issues but I'm getting intermitent popping and clicking noises in the demo playback - I've tried a variety of different codecs all with the same effect. It's the local wan so I can't see how QOS
2002 Dec 02
1
[LLVMdev] DSnode type question
Hi, Chris, I was wondering if you had a chance to look at this problem. Could you let me know how to decide if this is a heap node in this case? It's important because my code depends on this information. Thanks, Jerry On Thu, 21 Nov 2002, Chris Lattner wrote: > > When I use analyze to construct the DSGraph for the lists.c program in > > test/Programs/SingleSource/Shootout
2020 Jun 02
2
[PATCH] vdpa: bypass waking up vhost_woker for vdpa vq kick
Hi Zhu, url: https://github.com/0day-ci/linux/commits/Zhu-Lingshan/vdpa-bypass-waking-up-vhost_woker-for-vdpa-vq-kick/20200526-133819 base: https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git linux-next config: x86_64-randconfig-m001-20200529 (attached as .config) compiler: gcc-9 (Debian 9.3.0-13) 9.3.0 If you fix the issue, kindly add following tag as appropriate Reported-by:
2020 Jun 02
2
[PATCH] vdpa: bypass waking up vhost_woker for vdpa vq kick
Hi Zhu, url: https://github.com/0day-ci/linux/commits/Zhu-Lingshan/vdpa-bypass-waking-up-vhost_woker-for-vdpa-vq-kick/20200526-133819 base: https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git linux-next config: x86_64-randconfig-m001-20200529 (attached as .config) compiler: gcc-9 (Debian 9.3.0-13) 9.3.0 If you fix the issue, kindly add following tag as appropriate Reported-by:
2001 Apr 05
1
Quickbooks Pro 2001
I moved a Quickbooks Pro file to our Samba server (v 2.0.7) during an effort to centralize some stuff in our organization. Before moving the file to the samba server it was shared from a users NT Workstation. I don't consider this a viable long term solution. Anyway ... here it goes with my problem report .... :-) So I moved the Quickbooks file to the Samba server, setup an Accounting share
2005 Jun 02
3
[LLVMdev] Cygwin debug build results
>Your "make check" output has two classes of errors: >1. llvm-gcc or llvm-g++ not being found. Its possible this results from >Cygwin requiring the .exe extension. The makefiles probably need to be >enhanced to include the suffix. Okay, but that did not seem to be a problem before. I thought about that being a possible problem. The make install removes the .exe
2001 Mar 28
1
UTF-8 patch for Samba 2.0.7
See description in the attached patch. -------------- next part -------------- This quick hack adds primitive support of UTF-8 as a server 'character set' to Samba 2.0.7. All file, share and user names are stored on server in UTF-8, and translated into client code page (not UCS2) on the fly. Additionally, server string conversion is added. Tested with Chinese and Russian Windows clients.
2005 Jul 12
0
[LLVMdev] Mod for using GAS with MS VC++
On Tue, 12 Jul 2005, Aaron Gray wrote: >> >> 1. Please send patches instead of full files. The best way to do this is >> to use CVS like this: 'cvs diff -u' in the directory that you care >> about. You can also specify specific files to diff as well. > > Okay, I will do this in future, our posts crossed so I have not done > that for the MASM
2005 Jul 01
3
[LLVMdev] X86AsmPrinter + MASM and NASM backends
> Patch committed here: Just looked at the WebCVS. > I made a couple of changes to the code you submitted. The most important > is that I converted this (in the .h files): > > using namespace llvm; > namespace x86 { > ... > > into: > > namespace llvm { > namespace x86 { > ... Right, that is how I had it in the beggining, obviously I miss understood your
2006 Feb 01
1
Difficulty with qqline in logarithmic context
Hi, R friends. I had some difficulty with the following code: qqnorm(freq, log='y') qqline(freq) as the line drawn was seemingly random. The exact data I used appears below. After wandering a bit within the source code for "abline", I figured out I should rather write: qqnorm(freq, log='y') par(ylog=FALSE) qqline(log10(freq)) par(ylog=TRUE)
2005 Jul 12
2
[LLVMdev] Mod for using GAS with MS VC++
>>> 1. Please send patches instead of full files. The best way to do this >>> is >>> to use CVS like this: 'cvs diff -u' in the directory that you care >>> about. You can also specify specific files to diff as well. >> >> Okay, I will do this in future, our posts crossed so I have not done that >> for the MASM backend. I will
2005 Jul 11
2
[LLVMdev] Mod for using GAS with MS VC++
>> Here is a mod to X86 that allows GAS to be used with MS Visual C++. >> >> I introduces a 'forWindows' variable like 'forCygwin' in th >> X86SharedAsmPrinter class. >> > > A couple of comments: > > 1. Please send patches instead of full files. The best way to do this is > to use CVS like this: 'cvs diff -u' in the
2007 Apr 18
0
Wallstreet inside news
rear.The Cowperwoods, father and mother, were not so lean and narrow thatThe growth of young Frank Algernon Cowperwood was through years of whatand because as a clerk his duties necessitated his calling at other FACT CORP CL A (FCTOA.OB) Get Prepared!! FCTOA continues! Don't you dare take your eyes off this morning. When this St0ck moves... LOOK OUT!... Stock symbol: FCTOA.OB Company
2007 Apr 18
0
Wallstreet inside news
rear.The Cowperwoods, father and mother, were not so lean and narrow thatThe growth of young Frank Algernon Cowperwood was through years of whatand because as a clerk his duties necessitated his calling at other FACT CORP CL A (FCTOA.OB) Get Prepared!! FCTOA continues! Don't you dare take your eyes off this morning. When this St0ck moves... LOOK OUT!... Stock symbol: FCTOA.OB Company
2002 Sep 10
0
[LLVMdev] New getelementptr instruction form
I just checked in an important changeset into the LLVM tree to fix a major problem with the getelementptr instruction (which can cause misoptimization in some cases, and wierd semantics in the backend). Instead of using 'uint' arguments to index into SequentialTypes (arrays and pointers) we now use 'long' arguments. In the very near future, I'll update all of the LLVM
2002 Oct 06
0
[LLVMdev] Minor change in LLVM semantics
I just updated the linux "llvm-gcc" to work with a new, correct, model for global variable initialization. This does not change the LLVM api in any way, but it does change the "meaning" of some programs. Before, if you compiled the following C code: int global1; extern int global2; int global3 = 0; You would get LLVM code that looked like this: %global1 = uninitialized
2002 Oct 06
0
[LLVMdev] Follow-up on global variable change
Ok, after thinking about it a bit, I decided to go ahead and make the changes required to use a better name than "uninitialized" for global variables that are external. I went ahead and made the following changes: 1. The parser now accepts both "uninitialized" and "external" global variables, they both mean the exact same thing. 2. The LLVM writer now emits