fix missing 'extern' for SSIM function in dsp/

Change-Id: Id8143120f01065dc088f4e90bd930f8ea7c3ae5a
This commit is contained in:
Pascal Massimino 2016-03-08 10:27:46 -08:00
parent 423ecaf484
commit a90edffb7e

View File

@ -238,8 +238,8 @@ typedef void (*VP8SSIMAccumulateFunc)(const uint8_t* src1, int stride1,
const uint8_t* src2, int stride2,
VP8DistoStats* const stats);
VP8SSIMAccumulateFunc VP8SSIMAccumulate; // unclipped / unchecked
VP8SSIMAccumulateClippedFunc VP8SSIMAccumulateClipped; // with clipping
extern VP8SSIMAccumulateFunc VP8SSIMAccumulate; // unclipped / unchecked
extern VP8SSIMAccumulateClippedFunc VP8SSIMAccumulateClipped; // with clipping
// must be called before using any of the above directly
void VP8SSIMDspInit(void);