Changeset 110 for mppenc/trunk/src/mppenc.c
- Timestamp:
- 11/10/06 23:07:17 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mppenc/trunk/src/mppenc.c
r99 r110 184 184 " --thumb (--quality 3.00) low/medium quality (~ 90 kbps)\n" 185 185 " --radio (--quality 4.00) medium quality (~ 130 kbps)\n" 186 " --standard (--quality 5.00) high quality ,(dflt) (~ 180 kbps)\n"186 " --standard (--quality 5.00) high quality (dflt) (~ 180 kbps)\n" 187 187 " (or --normal)\n" 188 188 " --extreme (--quality 6.00) excellent quality (~ 210 kbps)\n" … … 219 219 " ean/upc, year, releasedate, genre, media, index, isrc,\n" 220 220 " abstract, bibliography, introplay, media, language, ...\n" 221 " --unicode unicode input from console \n"221 " --unicode unicode input from console (unix only)\n" 222 222 "\n" ); 223 223 … … 241 241 stderr_printf ( 242 242 " --scale x,y scale input signal, separate for each channel\n" ); 243 stderr_printf ( 244 "\n" ); 243 245 244 246 stderr_printf ( … … 761 763 762 764 static void 763 Allocate ( const int MaxBand, int* res, float* x, int* scf, const float* comp, const float* smr, const SCFTriple* Pow, const int* Transient )765 Allocate ( const int MaxBand, int* res, float* x, int* scf, const float* comp, const float* smr, const float* Pow[32], const int* Transient ) 764 766 { 765 767 int Band; … … 1798 1800 } 1799 1801 1800 Allocate ( Max_Band, Res_L, X[0].L, SCF_Index_L[0], SNR_comp_L, SMR.L, (const SCFTriple*) Power_L, Transient ); // allocate bits for left + right channel1801 Allocate ( Max_Band, Res_R, X[0].R, SCF_Index_R[0], SNR_comp_R, SMR.R, (const SCFTriple*) Power_R, Transient );1802 Allocate ( Max_Band, Res_L, X[0].L, SCF_Index_L[0], SNR_comp_L, SMR.L, (const float**) Power_L, Transient ); // allocate bits for left + right channel 1803 Allocate ( Max_Band, Res_R, X[0].R, SCF_Index_R[0], SNR_comp_R, SMR.R, (const float**) Power_R, Transient ); 1802 1804 1803 1805 Quantisierung ( Max_Band, Res_L, Res_R, X, Q ); // quantize samples
Note: See TracChangeset
for help on using the changeset viewer.