Any changes are to allow conversion to BMP

Dependents:   Color_Targeting_Catapult

Fork of BaseJpegDecode by Norimasa Okamoto

aanIDCT.h

Committer:
kylepost3
Date:
2014-04-30
Revision:
7:5010d93af0b6
Parent:
3:a7547692071d

File content as of revision 7:5010d93af0b6:

#ifndef AAN_IDCT_H
#define AAN_IDCT_H

class aanIDCT {
public:
    void conv(int8_t output[], int16_t input[]);
private:
    int ws[64];
};

#endif // ANN_IDCT_H