mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed some documentation and minor GCC warnings. Fixed a JACK bug that would have mixed up the input/output channels.
This commit is contained in:
parent
4d4321bea1
commit
c16c3a7c28
17 changed files with 90 additions and 116 deletions
|
|
@ -144,7 +144,7 @@ static void floor0_map_lazy_init(vorbis_block *vb,
|
|||
}
|
||||
}
|
||||
|
||||
static vorbis_look_floor *floor0_look(vorbis_dsp_state *vd,
|
||||
static vorbis_look_floor *floor0_look(vorbis_dsp_state* /* vd */,
|
||||
vorbis_info_floor *i){
|
||||
vorbis_info_floor0 *info=(vorbis_info_floor0 *)i;
|
||||
vorbis_look_floor0 *look=(vorbis_look_floor0*)_ogg_calloc(1,sizeof(*look));
|
||||
|
|
|
|||
|
|
@ -175,7 +175,7 @@ static vorbis_info_floor *floor1_unpack (vorbis_info *vi,oggpack_buffer *opb){
|
|||
return(NULL);
|
||||
}
|
||||
|
||||
static vorbis_look_floor *floor1_look(vorbis_dsp_state *vd,
|
||||
static vorbis_look_floor *floor1_look(vorbis_dsp_state* /* vd */,
|
||||
vorbis_info_floor *in){
|
||||
|
||||
int *sortpointer[VIF_POSIT+2];
|
||||
|
|
|
|||
|
|
@ -155,10 +155,10 @@ static __inline int vorbis_ftoi(double f){
|
|||
return _mm_cvtsd_si32(_mm_load_sd(&f));
|
||||
}
|
||||
|
||||
static __inline void vorbis_fpu_setround(vorbis_fpu_control *fpu){
|
||||
static __inline void vorbis_fpu_setround(vorbis_fpu_control*){
|
||||
}
|
||||
|
||||
static __inline void vorbis_fpu_restore(vorbis_fpu_control fpu){
|
||||
static __inline void vorbis_fpu_restore(vorbis_fpu_control){
|
||||
}
|
||||
|
||||
#endif /* Special MSVC x64 implementation */
|
||||
|
|
|
|||
|
|
@ -393,7 +393,7 @@ static int local_book_besterror(codebook *book,int *a){
|
|||
}
|
||||
|
||||
static int _encodepart(oggpack_buffer *opb,int *vec, int n,
|
||||
codebook *book,long *acc){
|
||||
codebook *book,long* /* acc */){
|
||||
int i,bits=0;
|
||||
int dim=book->dim;
|
||||
int step=n/dim;
|
||||
|
|
@ -536,12 +536,12 @@ static long **_2class(vorbis_block *vb,vorbis_look_residue *vl,int **in,
|
|||
}
|
||||
|
||||
static int _01forward(oggpack_buffer *opb,
|
||||
vorbis_block *vb,vorbis_look_residue *vl,
|
||||
vorbis_block*, vorbis_look_residue *vl,
|
||||
int **in,int ch,
|
||||
long **partword,
|
||||
int (*encode)(oggpack_buffer *,int *,int,
|
||||
codebook *,long *),
|
||||
int submap){
|
||||
int /* submap */){
|
||||
long i,j,k,s;
|
||||
vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl;
|
||||
vorbis_info_residue0 *info=look->info;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue