similar to: AW: Possible bug in psy.c

Displaying 20 results from an estimated 7000 matches similar to: "AW: Possible bug in psy.c"

2000 Jul 03
2
Possible bug in psy.c
Hi all, I'm quite new to Vorbis, so please excuse me if I'm writing complete nonsense (and, if possible, tell me where I'm wrong). While searching for optimization possibilities in lib/psy.c, I found the following piece of code in _vp_compute_mask(): if(p->vi->smoothp){ /* compute power^.5 of three neighboring bins to smooth for peaks that get split twixt
2008 Mar 21
0
AW: Determining the duration of an ogg vorbis file
Thank you very much for your help, it worked that way. Mathias ----- Urspr?ngliche Mail ---- Von: "xiphmont@xiph.org" <xiphmont@xiph.org> An: Conrad Parker <conrad@metadecks.org> CC: Mathias Kunter <mathiaskunter@yahoo.de>; vorbis-dev@xiph.org Gesendet: Donnerstag, den 20. M?rz 2008, 12:49:16 Uhr Betreff: Re: [Vorbis-dev] Determining the duration of an ogg vorbis
2013 Apr 24
0
vorbis-psy compilation fix
This patch enables compilation with GCC 4.7.1 and --enable-shared=yes --enable-static=no --enable-vorbis-psy -------------- next part -------------- diff -r -u speex/configure.ac speex/configure.ac --- speex/configure.ac 2013-04-24 19:08:00.710564608 +0400 +++ speex/configure.ac 2013-04-24 20:04:33.589310544 +0400 @@ -204,7 +204,7 @@ AC_DEFINE([TI_C55X], , [Enable support for TI C55X DSP])
2012 Dec 12
1
[PATCH] psy.c tweak
Hi, I am submitting a small patch for Vorbis psy.c... * Make use of NEGINF constant where possible Does this look OK? - Michael Index: psy.c =================================================================== --- psy.c (revision 18737) +++ psy.c (working copy) @@ -29,7 +29,7 @@ #include "scales.h" #include "misc.h" -#define NEGINF -9999.f +#define NEGINF (-9999.f)
2000 Jun 28
2
trivial optimization to psy.c
Hi all, The following is a trivial patch to psy.c, but combining the two loops saves a percent or two (according to gprof). ================================================================= --- psy.c Mon Jun 19 12:05:57 2000 +++ - Wed Jun 28 15:14:17 2000 @@ -550,12 +550,11 @@ frameno++; memset(flr,0,n*sizeof(double)); - for(i=0;i<n;i++)work[i]=fabs(f[i]); - - /* find the highest
2005 Apr 26
0
psy version 0.65 released
Dear R users, psy version 0.65 is on CRAN now. psy provides several methods used in psychometry (kappa, icc, cronbach, screeplot (with simulations), non linear mapping, etc.) A bug has been fixed in function wkappa (weighted kappa): in particular circumstances, the 2*2 table presented levels in an order different to what was suggested in the help file. The fpca function (PCA plot with
2005 Apr 26
0
psy version 0.65 released
Dear R users, psy version 0.65 is on CRAN now. psy provides several methods used in psychometry (kappa, icc, cronbach, screeplot (with simulations), non linear mapping, etc.) A bug has been fixed in function wkappa (weighted kappa): in particular circumstances, the 2*2 table presented levels in an order different to what was suggested in the help file. The fpca function (PCA plot with
2001 Feb 01
1
minor psy.c modifications
Hello! Some minor bugfixes... source: psy.c function: _vp_psy_init 1. '-' or '+' in this line? maxoc=toOC((n*.5f - .25f)*rate/n)*(1<<(p->shiftoc+1))+.5f; maxoc=toOC((n*.5f + .25f)*rate/n)*(1<<(p->shiftoc+1))+.5f; 2. I know: sizeof(float *) and sizeof(float) are 4 bytes long, but... old lines: p->noisemedian=_ogg_malloc(n*sizeof(float *));
2007 Apr 17
1
question about spx_fft
Thanks for the explaination. Please see my questions and comment in lines. On 4/16/07, Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> wrote: > (keeping this on the list) > > William Zhang wrote: > > I read the mdf.c an my understanding is that N is actually window size for > > the FFT. The actual length L = N/2 which is the frame length. The > > second part
2005 Apr 22
1
AW: AW: AW: AW: Activate ingress policies on suse enterpr ise serv er 9
Hi, So far, if have understand correctly: I route the incoming tcpip message of port 8099 directly to 8080 and then the ingress filter on port 8099 has nothing to do!? Yes I think on different interface on one machine (different Ports for different Request, with different restriction). What has exactly to be done to set the policier before Prerouting! Which kernel options, or also extra
2011 Nov 21
0
WG: Re: AW: nagios_service does not replace target file
This module does basically what I have done in the very beginning. Create an empty directory as a preparation step for the configuration files. But this configuration also did not regenerate the files. Seems, I will stick with my workaround and delete the files manually and the restart the Puppet agent. If anyone is interested in details, see: http://wp.me/p1RukY-1n. Thanks for helping, Gabriel!
2002 Feb 07
1
AW: WinVC v0.91 released
Another suggestion: > Von: Carl-Eric Menzel [mailto:calle@bitforce.com] > One minor problem: A (configurable?) character replacement table is > needed. Some of the song titles I have contain characters like for > example "/", which can't be used in filenames. It would be nice to be > able to have them mapped automatically to a fitting character when > renaming (but
2004 May 06
2
AW: AW: Reading OGG embedded in a pack file
yes, you are right. i always search for quick and easy solution and forget in the meantime that vorbis is a low level codec library. so probably a wrapper lib is the right way. but as far as i understand vorbisfile is already a bunch of convenience functions? so to speak a wrapper lib ? so why not enhance a little bit vorbisfile ? and - i did not felt personally attacked. i just wanted to note
2001 Jan 30
2
Overflow in psy.c
In beta 3 (Windows, libvorbis-1.0beta3.zip, compiled using BCB), I get a runtime overflow on line 322 when encoding a simple pure tone (44100Hz, 96kbps, 128kbps, or 160kbps). Changing the float to a double avoids the problem. float val=decay[i]*decscale; float att=fabs(f[i]/val); /// floating point overflow ... Chris http://www.goldwave.com --- >8 ---- List archives:
2007 Sep 12
0
Problem with integrate()
Hello! I have a problem with integrate() in my function nctspa(). Integrate produces an error message "evaluation of function gave a result of wrong length". I don't know what that means. Could anyone suggest me what is wrong with my function? These are the examples of function calls that work OK: nctspa(a=1:10,n=5) nctspa(a=1:10, n=5, mu=2, theta=3, renorm=0) This does not work:
2007 Sep 12
1
Integrate() error message, I am at a loss
Hello! I have a problem with integrate() in my function nctspa(). Integrate produces an error message "evaluation of function gave a result of wrong length". I don't know what that means. Could anyone suggest me what is wrong with my function? These are the examples of function calls that work OK: nctspa(a=1:10,n=5) nctspa(a=1:10, n=5, mu=2, theta=3, renorm=0) This does not work:
2000 Dec 24
0
State of Vorbis: Monty's current offline development
Nothing on a branch yet; I'll be building a temp branch for my changes soon. First, I'm eliminating ordering dependancies in vorbis_block structures. They'll be totally sepreate and vorbis_analysis won't have a global state in vorbis_dsp_state that requires them being done in order. That way, a parallel-threaded encoder can run multiple vorbis_blocks through multiple
2014 Mar 29
2
one day AD use -> samba-tool dbcheck reports "Normalisation error for attribute 'objectClass'"
Hi all, Our migration is coming along nicely, everything seems to work like it should... I thought... Only samba-tool dbcheck reports five errors: root at dc1:~# samba-tool dbcheck Checking 1143 objects ERROR: Normalisation error for attribute 'objectClass' in 'CN=phdseminar,CN=Users,DC=my,DC=samba,DC=domain' Values/Order of values do/does not match: ['top',
2005 Mar 09
0
Illegal filenames produced by rename
Greetings. I have a Windows share mounted via Samba. I recently tried to rename some files; the destination filenames had some high-bit characters. The renaming had some completely unexpected consequences; the new filenames now contain the full pathname (including backslashes), plus other illegal characters (colons). The files can no longer be accessed or modified, either from the remote
2006 Oct 20
0
AW: AW: Belkin F6H650 on USB port
Philipp Leusmann wrote: > > Ok, I tried this and my results seem to bet he same as reported. Then I > think I=B4ll have to stick with the windows-driver at least on my main > machine.=20 > Or is there anything I can help to fix this driver? I don't know why we can't read anything from this device. There are many ways in which one could make a buggy device that works with