mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-17 06:19:54 +02:00
Compare commits
2 Commits
v1.2.3-rc1
...
v1.2.3
Author | SHA1 | Date | |
---|---|---|---|
3c4a0fbfbc | |||
56a480e80c |
@ -1,3 +1,5 @@
|
|||||||
|
56a480e8 dsp/cpu.h: add missing extern "C"
|
||||||
|
62b45bdd update ChangeLog (tag: v1.2.3-rc1)
|
||||||
8764ec7a Merge changes Idb037953,Id582e395 into 1.2.3
|
8764ec7a Merge changes Idb037953,Id582e395 into 1.2.3
|
||||||
bcb872c3 vwebp: fix file name display in windows unicode build
|
bcb872c3 vwebp: fix file name display in windows unicode build
|
||||||
67c44ac5 webpmux: fix -frame option in windows unicode build
|
67c44ac5 webpmux: fix -frame option in windows unicode build
|
||||||
|
@ -238,8 +238,17 @@ typedef enum {
|
|||||||
kMIPSdspR2,
|
kMIPSdspR2,
|
||||||
kMSA
|
kMSA
|
||||||
} CPUFeature;
|
} CPUFeature;
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
// returns true if the CPU supports the feature.
|
// returns true if the CPU supports the feature.
|
||||||
typedef int (*VP8CPUInfo)(CPUFeature feature);
|
typedef int (*VP8CPUInfo)(CPUFeature feature);
|
||||||
WEBP_EXTERN VP8CPUInfo VP8GetCPUInfo;
|
WEBP_EXTERN VP8CPUInfo VP8GetCPUInfo;
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
} // extern "C"
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // WEBP_DSP_CPU_H_
|
#endif // WEBP_DSP_CPU_H_
|
||||||
|
Reference in New Issue
Block a user