- Timestamp:
- 02/28/08 13:49:33 (10 months ago)
- Files:
-
- trunk/A52/ACShepA52Decoder.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/A52/ACShepA52Decoder.cpp
r60 r63 221 221 222 222 // 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 224 225 if (decoder_state == NULL) { 225 226 fprintf(stderr, "ACShepA52Decoder::Initialize: Umm... liba52 could not be loaded!\n"); … … 250 251 a52_free(decoder_state); 251 252 } 252 decoder_state = a52_init(0); 253 a52_accel(A52_ACCEL_DJBFFT); 254 decoder_state = a52_init(); 253 255 254 256 firstInput = true;
