Changeset 87 for mppenc/branches/zorg/src/mppenc.c
- Timestamp:
- 11/03/06 01:44:02 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mppenc/branches/zorg/src/mppenc.c
r86 r87 39 39 int PredictionBands = 0; 40 40 int CombPenalities = -1; 41 extern floatKBD1 = 2;42 extern floatKBD2 = -1.;41 float KBD1 = 2; 42 float KBD2 = -1.; 43 43 int DisplayUpdateTime = 1; 44 44 int APE_Version = 2000; … … 334 334 " --radio (--quality 4.00) medium quality (~ 130 kbps)\n" 335 335 " --standard (--quality 5.00) high quality, (dflt) (~ 180 kbps)\n" 336 " -- extreme (--quality 6.00) excellent quality (~ 210 kbps)\n"336 " --insane (--quality 7.00) excellent quality (~ 240 kbps)\n" 337 337 "\n" 338 338 … … 340 340 " mppenc inputfile.wav\n" 341 341 " mppenc inputfile.wav outputfile.mpc\n" 342 " mppenc -- extreme inputfile.wav outputfile.mpc\n"342 " mppenc --insane inputfile.wav outputfile.mpc\n" 343 343 " mppenc --silent --radio inputfile.wav outputfile.mpc\n" 344 344 "\n" 345 "For further information see the file 'MANUAL.TXT' oruse option --longhelp.\n" );345 "For further information use option --longhelp.\n" ); 346 346 } 347 347 … … 1804 1804 } 1805 1805 1806 Allocate ( Max_Band, Res_L, X[0].L, SCF_Index_L[0], SNR_comp_L, SMR.L, Power_L, Transient ); // allocate bits for left + right channel1807 Allocate ( Max_Band, Res_R, X[0].R, SCF_Index_R[0], SNR_comp_R, SMR.R, Power_R, Transient );1806 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 channel 1807 Allocate ( Max_Band, Res_R, X[0].R, SCF_Index_R[0], SNR_comp_R, SMR.R, (const SCFTriple*) Power_R, Transient ); 1808 1808 1809 1809 Quantisierung ( Max_Band, Res_L, Res_R, X, Q ); // quantize samples … … 1835 1835 memmove ( Main.S, Main.S + BLOCK, CENTER * sizeof(float) ); 1836 1836 1837 if ( AllSamplesRead + BLOCK > SamplesInWAVE )1838 {1839 int n = 0;1840 }1837 //if ( AllSamplesRead + BLOCK > SamplesInWAVE ) 1838 //{ 1839 // int n = 0; 1840 //} 1841 1841 1842 1842 // read samples
Note: See TracChangeset
for help on using the changeset viewer.