Ignore:
Timestamp:
11/10/06 23:07:17 (18 years ago)
Author:
zorg
Message:

Cosmetics
Remove one annoying warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mppenc/trunk/src/mppenc.c

    r99 r110  
    184184             "  --thumb          (--quality 3.00)   low/medium quality    (~  90 kbps)\n"
    185185             "  --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"
    187187             "   (or --normal)\n"
    188188             "  --extreme        (--quality 6.00)   excellent quality     (~ 210 kbps)\n"
     
    219219             "                   ean/upc, year, releasedate, genre, media, index, isrc,\n"
    220220             "                   abstract, bibliography, introplay, media, language, ...\n"
    221              "  --unicode        unicode input from console\n"
     221             "  --unicode        unicode input from console (unix only)\n"
    222222             "\n" );
    223223
     
    241241    stderr_printf (
    242242             "  --scale x,y      scale input signal, separate for each channel\n" );
     243    stderr_printf (
     244             "\n" );
    243245
    244246    stderr_printf (
     
    761763
    762764static void
    763 Allocate ( const int MaxBand, int* res, float* x, int* scf, const float* comp, const float* smr, const SCFTriple* Pow, const int* Transient )
     765Allocate ( const int MaxBand, int* res, float* x, int* scf, const float* comp, const float* smr, const float* Pow[32], const int* Transient )
    764766{
    765767    int    Band;
     
    17981800            }
    17991801
    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 channel
    1801             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 );
    18021804
    18031805            Quantisierung ( Max_Band, Res_L, Res_R, X, Q );             // quantize samples
Note: See TracChangeset for help on using the changeset viewer.