Ignore:
Timestamp:
12/29/06 15:21:35 (17 years ago)
Author:
r2d
Message:
  • moved libmpcdec includes in /mpc
  • removed mppdec.h and mpp.h
  • mpcenc defines cleanup
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/branches/r2d/libmpcdec/synth_filter.c

    r68 r195  
    3636/// \todo document me
    3737#include <string.h>
    38 #include <mpcdec/mpcdec.h>
     38#include <mpc/mpcdec.h>
    3939#include "decoder.h"
    4040#include "math.h"
     
    283283    A15 = MPC_SCALE_CONST_SHL((B14 - B15) , 0.7071067691f , 31, MPC_FIXED_POINT_SYNTH_FIX);
    284284
    285     // mehrfach verwendete Ausdrücke: A04+A06+A07, A09+A13+A15
     285    // mehrfach verwendete Ausdrcke: A04+A06+A07, A09+A13+A15
    286286    pV[ 5] = (pV[11] = (pV[13] = A07 + (pV[15] = A15)) + A11) + A05 + A13;
    287287    pV[ 7] = (pV[ 9] = A03 + A11 + A15) + A13;
     
    289289    pV[35] = -(pV[ 3] = A05 + A07 + A09 + A13 + A15) - A06 - A14;
    290290    pV[37] = (tmp = -(A10 + A11 + A13 + A14 + A15)) - A05 - A06 - A07;
    291     pV[39] = tmp - A02 - A03;                      // abhängig vom Befehl drüber
    292     pV[41] = (tmp += A13 - A12) - A02 - A03;       // abhängig vom Befehl 2 drüber
    293     pV[43] = tmp - A04 - A06 - A07;                // abhängig von Befehlen 1 und 3 drüber
     291    pV[39] = tmp - A02 - A03;                      // abhï¿œgig vom Befehl drber
     292    pV[41] = (tmp += A13 - A12) - A02 - A03;       // abhï¿œgig vom Befehl 2 drber
     293    pV[43] = tmp - A04 - A06 - A07;                // abhï¿œgig von Befehlen 1 und 3 drber
    294294    pV[47] = (tmp = -(A08 + A12 + A14 + A15)) - A00;
    295     pV[45] = tmp - A04 - A06 - A07;                // abhängig vom Befehl drüber
     295    pV[45] = tmp - A04 - A06 - A07;                // abhï¿œgig vom Befehl drber
    296296
    297297    pV[32] = -pV[ 0];
     
    329329}
    330330
    331 static void 
     331static void
    332332mpc_synthese_filter_float_internal(MPC_SAMPLE_FORMAT* p_out, MPC_SAMPLE_FORMAT* pV, const MPC_SAMPLE_FORMAT* pY)
    333333{
     
    356356
    357357void
    358 mpc_decoder_synthese_filter_float(mpc_decoder* p_dec, MPC_SAMPLE_FORMAT* p_out) 
     358mpc_decoder_synthese_filter_float(mpc_decoder* p_dec, MPC_SAMPLE_FORMAT* p_out)
    359359{
    360360    /********* left channel ********/
     
    411411 */
    412412mpc_uint32_t
    413 mpc_random_int(mpc_decoder* p_dec) 
     413mpc_random_int(mpc_decoder* p_dec)
    414414{
    415415#if 1
Note: See TracChangeset for help on using the changeset viewer.