search for: integerized

Displaying 20 results from an estimated 39 matches for "integerized".

2004 Aug 06
0
integerization
...very desirable when used as input for > further processing. > > I have most precision issues pretty well under control until before > I enter the Levinson Durbin algorithm. The Levinson Durbin routine > is where things go bad. I am currently losing 2 dB of SNR when I > apply the integerized version. The algorithm seems very sensitive > to rounding and precision issues. > > Is there a way to alter the algorithm or to condition the input > values and intermediate results such that the outcome is not quite > as sensitive to computation with integer arithmetics? > Do we...
2004 Aug 06
4
integerization
...d. -> 192 dB ;) That is not very desirable when used as input for further processing. I have most precision issues pretty well under control until before I enter the Levinson Durbin algorithm. The Levinson Durbin routine is where things go bad. I am currently losing 2 dB of SNR when I apply the integerized version. The algorithm seems very sensitive to rounding and precision issues. Is there a way to alter the algorithm or to condition the input values and intermediate results such that the outcome is not quite as sensitive to computation with integer arithmetics? Do we have some of the maths/signal...
2004 Aug 06
0
integerization
Le ven 27/06/2003 à 05:10, Christian Buchner a écrit : > Hi there. > > Just a little status update how that integerization is coming along. > I am trying to limit myself to 32 bit arithmetics. That means > not using any __int64 or long long datatypes at any point. If possible, it would be nice to restrict ourselves to 32x32->64 multiplies, so the code could run on almost any
2002 Apr 09
3
Porting Vorbis lib on Ti DSP ? How to ?
Hello All, I would be very interested to have your ideas to port the vorbis lib ( part of lib at least) on a DSP TMS320C5409 (running @ 90Mhz). I have reviewed messages and URLs related to: - 'ivdev' Integerized Vorbis Project - Ogg-on-a-Chip Project This is very interesting. In my case I think the best approach would be , in order to shorten porting work & time, to recompile the original library. Will it be really possible without too much painfull work ? Does any body have ideas of how to do that a...
2005 Apr 27
2
seek_absolute problem
...ith the integer > version > on our device, positioning doesn't work well - it seems, as if it > needs > a lot more time to get in to sync again if the files have been > encoded > with 1.1.2 integer only. > > Is that possible? Any idea? I guess it's possible, the integerized flavor is kind of new. I'll look into it... Josh __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
2002 Feb 20
1
Re: [iPAQ] Ogg Vorbis fixed-point math anyone ?
Actually, we have a integerized version of the vorbis libraries that are available, royalty free, with a simple attribution requirement. These libraries are 100% C code and run faster than real time on a cirrus 7312-74mhz processor (arm core). My guess is they should run at about 20-30% cpu utilization on a strongarm/200. Monty h...
2002 Feb 08
2
Vorbis bitstream specification...
Hi, I'm looking for more documentation on the Vorbis bitstream format. The goal for me is to write an optimized decoder using only integer or fixed point math for use on the Phatnoise Car Audio System (see http://www.phatnoise.com). I've already found the info on the Ogg framing system and I've already written my own thing for parsing through Ogg frames (easy). Also, is RTP
2002 Apr 05
4
slightly different audio output
Hi, I wonder if there is specific requirement or restriction for the decoder in order to be consider "Vorbis" compliant (or let's say, to be a "correct" vorbis decoder). I am experimenting with integerized libvorbis and the decoder delivers the audio data as following, (and compare with the floating point version below). $ tail audioout-int.txt 0290670 025e 085c 02cf 0895 0349 08b2 039e 087d 0290680 03ab 07df 03a0 0738 03de 06d6 0458 069f 0290690 04f2 066b 05c3 061a 069d 05cd 0784 057b 02906a0 0865...
2006 Feb 27
1
gauss.hermite function
Hi, I am trying to find a function that returns simply the weights and points of an n point gauss hermite integeration, so that I can use them to fit a non-standard likelihood. I have found some documentation for the function 'gauss.hermite' written by jim lindley, but can't find the actual binary on CRAN I'm aware there are lots of functions like glmm, glmmML etc to fit mixed
2009 Aug 25
1
converting a matrix into a fn
Dear All, I have a matrix m of the form  m             [,1]             [,2]   [1,]  9072.302 0.00000004462366   [2,]  9086.811 0.00000005628169   [3,]  9101.320 0.00000007126347   [4,]  9115.830 0.00000008986976   [5,]  9130.339 0.00000011260000   [6,]  9144.848 0.00000014018405   [7,]  9159.357 0.00000017344229   [8,]  9173.866 0.00000021363563   [9,]  9188.375 0.00000026389996  [10,]  9202.884
2002 Mar 19
1
mdct as hardware
Hi vorbis-dev! I'm working with Pattara in the oggonachip project, and wondering about the implementation of mdct.c as hardware. According your recomendations about using the floating point version, I would say, we have to implement the integerized version of mdct as a core, and use the fpu only to round the input values. By doing that, you think the result would be still acceptable? How feasible is adapt one dct core in to mdct? Changing the coefficients could be the way to do it? Could you refer me please to where can I get more informatio...
2002 Mar 26
0
int or float?
Hi Vorbis, Now I get libvorbis-rc3 + integerized mdct_backward + integerized window running. The sound output is ok. Now we have to go further on possible optimization of the code in order to have the music played realtime on our chip (LEON-Sparc). There are 2 possible ways: 1.Make everything integer, remove all floating point usage. Then we can...
2004 Apr 09
1
MDCT_INTEGERIZED
Hello, I have used "MDCT_INTEGERIZED" version of mdct and the resulting bitstream is absolutely silent. Do I have to make some other changes to the source code to get it working? I mean some int->float or float->int conversion before/after call a mdct function. Thanks Rado --- >8 ---- List archives: http://www.xiph.o...
2002 Aug 21
1
MDCT input and output data blocks
Hi, I'm trying to determine how the frequency data that is passed to the MDCT, and output time domain data obtained from the MDCT, is changed when setting #define MDCT_INTEGERIZED For instance, the trig array, for a size 256 window begins 1.000000 0.000000 0.998795 -0.049068 0.995185 -0.098017 if INTEGERIZED is set, then it begins 16384 0 16364 -803 16305 -1605 which is simply a left shift of TRIGBITS (14 in this case), or a multiply by 16384 if you prefer to think of it...
2004 Aug 06
0
Sphinx work-in-progress sourcecode
...the integer output of Sphinx. Both the Floating Point and Integer codepaths execute mostly in parallel, however the integer path is not yet complete. So completely ignore the integer SNR value for now. I am working through the encoder step by step. Now I have everything up to the LSP coefficients integerized. Then these coefficients get converted back into floating point and are used in the remaining floating point codepath. That is why currently only the Sphinx FP SNR value is of interest. If this value drops relative to the Speex SNR value, you know you have messed up ;) Regarding the API: I convert...
2001 Apr 19
1
0.0.6b conflict with raid patch
Hello all, I am trying to integerate 0.0.6b with our kernel RPM here and have come across an interesting conflict. I want to include the raid patch that Red Hat includes in their kernel but that patch includes the following hunk: --- linux/include/linux/fs.h.orig Tue Jan 16 13:30:09 2001 +++ linux/include/linux/fs.h Tue Jan 16 13:47:18 2001 @@ -191,6 +191,7 @@ #define BH_Req 3 /* 0 if the
2004 Aug 06
4
SHARC DSP
Anyone have any idea if the any of the Sharc or TigerSHARC DSPs are powerful enough to do realtime Speex? <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'speex-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed.
2004 Aug 06
5
Speex ACM no longer Beta (Houston, we have a release!)
The Speex ACM codec has been released as version 1.0.1.1. Enjoy! Here is a list of changes: * A setup application has been added to the release. Just click SETUP.EXE and follow the instructions. * The crash under Windows 95/98/ME was fixed. * A reported crash in VirtualDub, CDEx and possibly other applications was fixed * The codec's Format Tag was changed to an official Microsoft
2008 Aug 01
3
Asterisk Queues problem
Hi, I have Asterisk 1.4.18 and I have been running call center queues on it. Today it suddenly stopped adding inbound calls to queues. I am facing with following error: app_queue.c:3939 queue_exec: unable to join queue "myqueue" In extension file: Queue(myqueue|t|||120) And my agents are joining in following
2019 Nov 28
0
[PATCH 1/1] virtio_ring: fix return code on DMA mapping fails
On Thu, Nov 28, 2019 at 12:42:25AM +0000, Ashish Kalra wrote: > Why can't we leverage CMA instead of SWIOTLB for DMA when SEV is > enabled, CMA is well integerated with the DMA subsystem and handles > encrypted pages when force_dma_unencrypted() returns TRUE. > > Though, CMA might face the same issues as SWIOTLB bounce buffers, it's > size is similarly setup statically