Skip to content
Snippets Groups Projects
Commit 71c9bbff authored by Timothy B. Terriberry's avatar Timothy B. Terriberry Committed by Jean-Marc Valin
Browse files

Updated pulse coding to simpler (slightly faster) code included with

parent 26c9e145
No related branches found
No related tags found
No related merge requests found
/* (C) 2007 Timothy Terriberry /* (C) 2007 Timothy B. Terriberry */
*/
/* /*
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions modification, are permitted provided that the following conditions
are met: are met:
- Redistributions of source code must retain the above copyright - Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer. notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright - Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution. documentation and/or other materials provided with the distribution.
- Neither the name of the Xiph.org Foundation nor the names of its - Neither the name of the Xiph.org Foundation nor the names of its
contributors may be used to endorse or promote products derived from contributors may be used to endorse or promote products derived from
this software without specific prior written permission. this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
...@@ -28,11 +27,7 @@ ...@@ -28,11 +27,7 @@
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
/*#include <stdio.h>*/
#include <stdlib.h> #include <stdlib.h>
#include "cwrs.h" #include "cwrs.h"
/*Returns the numer of ways of choosing _m elements from a set of size _n with /*Returns the numer of ways of choosing _m elements from a set of size _n with
...@@ -47,29 +42,7 @@ static unsigned ncwrs(int _n,int _m){ ...@@ -47,29 +42,7 @@ static unsigned ncwrs(int _n,int _m){
} }
return c[_n][_m]; return c[_n][_m];
} }
#else #else
/*Returns the greatest common divisor of _a and _b.*/
static unsigned gcd(unsigned _a,unsigned _b){
unsigned r;
while(_b){
r=_a%_b;
_a=_b;
_b=r;
}
return _a;
}
/*Returns _a*b/_d, under the assumption that the result is an integer, avoiding
overflow.
It is assumed, but not required, that _b is smaller than _a.*/
static unsigned umuldiv(unsigned _a,unsigned _b,unsigned _d){
unsigned d;
d=gcd(_b,_d);
return (_a/(_d/d))*(_b/d);
}
unsigned ncwrs(int _n,int _m){ unsigned ncwrs(int _n,int _m){
unsigned ret; unsigned ret;
unsigned f; unsigned f;
...@@ -83,40 +56,30 @@ unsigned ncwrs(int _n,int _m){ ...@@ -83,40 +56,30 @@ unsigned ncwrs(int _n,int _m){
d=1; d=1;
for(i=1;i<=_m;i++){ for(i=1;i<=_m;i++){
ret+=f*d<<i; ret+=f*d<<i;
#if 0
f=umuldiv(f,_n-i,i+1);
d=umuldiv(d,_m-i,i);
#else
f=(f*(_n-i))/(i+1); f=(f*(_n-i))/(i+1);
d=(d*(_m-i))/i; d=(d*(_m-i))/i;
#endif
} }
return ret; return ret;
} }
#endif #endif
celt_uint64_t ncwrs64(int _n,int _m){ celt_uint64_t ncwrs64(int _n,int _m){
celt_uint64_t ret; celt_uint64_t ret;
celt_uint64_t f; celt_uint64_t f;
celt_uint64_t d; celt_uint64_t d;
int i; int i;
if(_n<0||_m<0)return 0; if(_n<0||_m<0)return 0;
if(_m==0)return 1; if(_m==0)return 1;
if(_n==0)return 0; if(_n==0)return 0;
ret=0; ret=0;
f=_n; f=_n;
d=1; d=1;
for(i=1;i<=_m;i++){ for(i=1;i<=_m;i++){
ret+=f*d<<i; ret+=f*d<<i;
#if 0 f=(f*(_n-i))/(i+1);
f=umuldiv(f,_n-i,i+1); d=(d*(_m-i))/i;
d=umuldiv(d,_m-i,i); }
#else return ret;
f=(f*(_n-i))/(i+1);
d=(d*(_m-i))/i;
#endif
}
return ret;
} }
/*Returns the _i'th combination of _m elements chosen from a set of size _n /*Returns the _i'th combination of _m elements chosen from a set of size _n
...@@ -124,32 +87,29 @@ celt_uint64_t ncwrs64(int _n,int _m){ ...@@ -124,32 +87,29 @@ celt_uint64_t ncwrs64(int _n,int _m){
_x: Returns the combination with elements sorted in ascending order. _x: Returns the combination with elements sorted in ascending order.
_s: Returns the associated sign bits.*/ _s: Returns the associated sign bits.*/
void cwrsi(int _n,int _m,unsigned _i,int *_x,int *_s){ void cwrsi(int _n,int _m,unsigned _i,int *_x,int *_s){
unsigned pn; int j;
int j; int k;
int k;
pn=ncwrs(_n-1,_m);
for(k=j=0;k<_m;k++){ for(k=j=0;k<_m;k++){
unsigned pp; unsigned pn;
unsigned p; unsigned p;
unsigned t; unsigned t;
pp=0; p=ncwrs(_n-j,_m-k-1);
p=ncwrs(_n-j,_m-k)-pn; pn=ncwrs(_n-j-1,_m-k-1);
p+=pn;
if(k>0){ if(k>0){
t=p>>1; t=p>>1;
if(t<=_i||_s[k-1])_i+=t; if(t<=_i||_s[k-1])_i+=t;
} }
pn=ncwrs(_n-j-1,_m-k-1);
while(p<=_i){ while(p<=_i){
pp=p; _i-=p;
j++; j++;
p+=pn; p=pn;
pn=ncwrs(_n-j-1,_m-k-1); pn=ncwrs(_n-j-1,_m-k-1);
p+=pn; p+=pn;
} }
t=p-pp>>1; t=p>>1;
_s[k]=_i-pp>=t; _s[k]=_i>=t;
_x[k]=j; _x[k]=j;
_i-=pp;
if(_s[k])_i-=t; if(_s[k])_i-=t;
} }
} }
...@@ -159,66 +119,59 @@ void cwrsi(int _n,int _m,unsigned _i,int *_x,int *_s){ ...@@ -159,66 +119,59 @@ void cwrsi(int _n,int _m,unsigned _i,int *_x,int *_s){
_x: The combination with elements sorted in ascending order. _x: The combination with elements sorted in ascending order.
_s: The associated sign bits.*/ _s: The associated sign bits.*/
unsigned icwrs(int _n,int _m,const int *_x,const int *_s){ unsigned icwrs(int _n,int _m,const int *_x,const int *_s){
unsigned pn;
unsigned i; unsigned i;
int j; int j;
int k; int k;
i=0; i=0;
pn=ncwrs(_n-1,_m);
for(k=j=0;k<_m;k++){ for(k=j=0;k<_m;k++){
unsigned pp; unsigned pn;
unsigned p; unsigned p;
pp=0; p=ncwrs(_n-j,_m-k-1);
p=ncwrs(_n-j,_m-k)-pn;
if(k>0)p>>=1;
pn=ncwrs(_n-j-1,_m-k-1); pn=ncwrs(_n-j-1,_m-k-1);
p+=pn;
if(k>0)p>>=1;
while(j<_x[k]){ while(j<_x[k]){
pp=p; i+=p;
j++; j++;
p+=pn; p=pn;
pn=ncwrs(_n-j-1,_m-k-1); pn=ncwrs(_n-j-1,_m-k-1);
p+=pn; p+=pn;
} }
i+=pp; if((k==0||_x[k]!=_x[k-1])&&_s[k])i+=p>>1;
if((k==0||_x[k]!=_x[k-1])&&_s[k])i+=p-pp>>1;
} }
return i; return i;
} }
/*Returns the _i'th combination of _m elements chosen from a set of size _n /*Returns the _i'th combination of _m elements chosen from a set of size _n
with associated sign bits. with associated sign bits.
_x: Returns the combination with elements sorted in ascending order. _x: Returns the combination with elements sorted in ascending order.
_s: Returns the associated sign bits.*/ _s: Returns the associated sign bits.*/
void cwrsi64(int _n,int _m,celt_uint64_t _i,int *_x,int *_s){ void cwrsi64(int _n,int _m,celt_uint64_t _i,int *_x,int *_s){
celt_uint64_t pn; int j;
int j; int k;
int k; for(k=j=0;k<_m;k++){
pn=ncwrs64(_n-1,_m); celt_uint64_t pn;
for(k=j=0;k<_m;k++){ celt_uint64_t p;
celt_uint64_t pp; celt_uint64_t t;
celt_uint64_t p; p=ncwrs64(_n-j,_m-k-1);
celt_uint64_t t; pn=ncwrs64(_n-j-1,_m-k-1);
pp=0; p+=pn;
p=ncwrs64(_n-j,_m-k)-pn; if(k>0){
if(k>0){ t=p>>1;
t=p>>1; if(t<=_i||_s[k-1])_i+=t;
if(t<=_i||_s[k-1])_i+=t; }
} while(p<=_i){
_i-=p;
j++;
p=pn;
pn=ncwrs64(_n-j-1,_m-k-1); pn=ncwrs64(_n-j-1,_m-k-1);
while(p<=_i){ p+=pn;
pp=p; }
j++; t=p>>1;
p+=pn; _s[k]=_i>=t;
pn=ncwrs64(_n-j-1,_m-k-1); _x[k]=j;
p+=pn; if(_s[k])_i-=t;
} }
t=p-pp>>1;
_s[k]=_i-pp>=t;
_x[k]=j;
_i-=pp;
if(_s[k])_i-=t;
}
} }
/*Returns the index of the given combination of _m elements chosen from a set /*Returns the index of the given combination of _m elements chosen from a set
...@@ -226,33 +179,29 @@ void cwrsi64(int _n,int _m,celt_uint64_t _i,int *_x,int *_s){ ...@@ -226,33 +179,29 @@ void cwrsi64(int _n,int _m,celt_uint64_t _i,int *_x,int *_s){
_x: The combination with elements sorted in ascending order. _x: The combination with elements sorted in ascending order.
_s: The associated sign bits.*/ _s: The associated sign bits.*/
celt_uint64_t icwrs64(int _n,int _m,const int *_x,const int *_s){ celt_uint64_t icwrs64(int _n,int _m,const int *_x,const int *_s){
celt_uint64_t pn; celt_uint64_t i;
celt_uint64_t i; int j;
int j; int k;
int k; i=0;
i=0; for(k=j=0;k<_m;k++){
pn=ncwrs64(_n-1,_m); celt_uint64_t pn;
for(k=j=0;k<_m;k++){ celt_uint64_t p;
celt_uint64_t pp; p=ncwrs64(_n-j,_m-k-1);
celt_uint64_t p; pn=ncwrs64(_n-j-1,_m-k-1);
pp=0; p+=pn;
p=ncwrs64(_n-j,_m-k)-pn; if(k>0)p>>=1;
if(k>0)p>>=1; while(j<_x[k]){
i+=p;
j++;
p=pn;
pn=ncwrs64(_n-j-1,_m-k-1); pn=ncwrs64(_n-j-1,_m-k-1);
while(j<_x[k]){ p+=pn;
pp=p; }
j++; if((k==0||_x[k]!=_x[k-1])&&_s[k])i+=p>>1;
p+=pn; }
pn=ncwrs64(_n-j-1,_m-k-1); return i;
p+=pn;
}
i+=pp;
if((k==0||_x[k]!=_x[k-1])&&_s[k])i+=p-pp>>1;
}
return i;
} }
/*Converts a combination _x of _m unit pulses with associated sign bits _s into /*Converts a combination _x of _m unit pulses with associated sign bits _s into
a pulse vector _y of length _n. a pulse vector _y of length _n.
_y: Returns the vector of pulses. _y: Returns the vector of pulses.
...@@ -292,7 +241,8 @@ void pulse2comb(int _n,int _m,int *_x,int *_s,const int *_y){ ...@@ -292,7 +241,8 @@ void pulse2comb(int _n,int _m,int *_x,int *_s,const int *_y){
} }
} }
/* #if 0
#include <stdio.h>
#define NMAX (10) #define NMAX (10)
#define MMAX (9) #define MMAX (9)
...@@ -333,53 +283,53 @@ int main(int _argc,char **_argv){ ...@@ -333,53 +283,53 @@ int main(int _argc,char **_argv){
printf("\n"); printf("\n");
} }
} }
return 0; return -1;
} }
*/ #endif
/* #if 0
#include <stdio.h> #include <stdio.h>
#define NMAX (32) #define NMAX (32)
#define MMAX (16) #define MMAX (16)
int main(int _argc,char **_argv){ int main(int _argc,char **_argv){
int n; int n;
for(n=0;n<=NMAX;n+=3){ for(n=0;n<=NMAX;n+=3){
int m; int m;
for(m=0;m<=MMAX;m++){ for(m=0;m<=MMAX;m++){
celt_uint64_t nc; celt_uint64_t nc;
celt_uint64_t i; celt_uint64_t i;
nc=ncwrs64(n,m); nc=ncwrs64(n,m);
printf("%d/%d: %llu",n,m, nc); printf("%d/%d: %llu",n,m, nc);
for(i=0;i<nc;i+=100000){ for(i=0;i<nc;i+=100000){
int x[MMAX]; int x[MMAX];
int s[MMAX]; int s[MMAX];
int x2[MMAX]; int x2[MMAX];
int s2[MMAX]; int s2[MMAX];
int y[NMAX]; int y[NMAX];
int j; int j;
int k; int k;
cwrsi64(n,m,i,x,s); cwrsi64(n,m,i,x,s);
//printf("%llu of %llu:",i,nc); /*printf("%llu of %llu:",i,nc);
for(k=0;k<m;k++){ for(k=0;k<m;k++){
//printf(" %c%i",k>0&&x[k]==x[k-1]?' ':s[k]?'-':'+',x[k]); printf(" %c%i",k>0&&x[k]==x[k-1]?' ':s[k]?'-':'+',x[k]);
} }
//printf(" ->"); printf(" ->");*/
if(icwrs64(n,m,x,s)!=i){ if(icwrs64(n,m,x,s)!=i){
fprintf(stderr,"Combination-index mismatch.\n"); fprintf(stderr,"Combination-index mismatch.\n");
} }
comb2pulse(n,m,y,x,s); comb2pulse(n,m,y,x,s);
//for(j=0;j<n;j++)printf(" %c%i",y[j]?y[j]<0?'-':'+':' ',abs(y[j])); /*for(j=0;j<n;j++)printf(" %c%i",y[j]?y[j]<0?'-':'+':' ',abs(y[j]));
//printf("\n"); printf("\n");*/
pulse2comb(n,m,x2,s2,y); pulse2comb(n,m,x2,s2,y);
for(k=0;k<m;k++)if(x[k]!=x2[k]||s[k]!=s2[k]){ for(k=0;k<m;k++)if(x[k]!=x2[k]||s[k]!=s2[k]){
fprintf(stderr,"Pulse-combination mismatch.\n"); fprintf(stderr,"Pulse-combination mismatch.\n");
break; break;
} }
}
printf("\n");
} }
} printf("\n");
return 0; }
}
return 0;
} }
*/ #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment