Ignore:
Timestamp:
09/17/06 20:10:29 (19 years ago)
Author:
zorg
Message:

Fix segfaults when seeking
Fix compilation on posix
Forgot to remove some printf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/zorg/src/synth_filter.c

    r18 r25  
    335335        V -= 64;
    336336        Calculate_New_V ( Y, V );
     337        if(OutData)
    337338        {
    338339            MPC_SAMPLE_FORMAT * Data = OutData;
     
    366367
    367368    Synthese_Filter_float_internal(
    368         OutData,
     369        OutData? OutData +1: NULL,
    369370        (MPC_SAMPLE_FORMAT *)(d->V_L + MPC_V_MEM),
    370371        (MPC_SAMPLE_FORMAT *)(d->Y_L [0]));
     
    374375
    375376    Synthese_Filter_float_internal(
    376         OutData + 1,
     377        OutData? OutData +1: NULL,
    377378        (MPC_SAMPLE_FORMAT *)(d->V_R + MPC_V_MEM),
    378379        (MPC_SAMPLE_FORMAT *)(d->Y_R [0]));
Note: See TracChangeset for help on using the changeset viewer.