Changeset 63 for trunk/A52

Show
Ignore:
Timestamp:
02/28/08 13:49:33 (10 months ago)
Author:
gbooker
Message:

Updated the liba52 lib (they switched to svn in some other location and didn't update any of the pointers on the sf site).

Fixes #51

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/A52/ACShepA52Decoder.cpp

    r60 r63  
    221221         
    222222        // Library setup 
    223         decoder_state = a52_init(0); // No optimizations here 
     223        a52_accel(A52_ACCEL_DJBFFT); 
     224        decoder_state = a52_init(); // No optimizations here 
    224225        if (decoder_state == NULL) { 
    225226                fprintf(stderr, "ACShepA52Decoder::Initialize: Umm... liba52 could not be loaded!\n"); 
     
    250251                a52_free(decoder_state); 
    251252        } 
    252         decoder_state = a52_init(0); 
     253        a52_accel(A52_ACCEL_DJBFFT); 
     254        decoder_state = a52_init(); 
    253255         
    254256        firstInput = true;