mark VP8{,L}{GetInfo,CheckSignature} as WEBP_EXTERN

these functions are used by libwebpmux

Change-Id: Ifcb79e685f3a6b53007c0dc5f220737daba97d47
This commit is contained in:
James Zern
2012-04-24 18:04:38 -07:00
parent b9ae4f0d88
commit 228d96a538
4 changed files with 24 additions and 21 deletions

View File

@ -94,7 +94,7 @@ int VP8CheckSignature(const uint8_t* const data, size_t data_size) {
}
int VP8GetInfo(const uint8_t* data, size_t data_size, size_t chunk_size,
int* width, int* height) {
int* const width, int* const height) {
if (data == NULL || data_size < VP8_FRAME_HEADER_SIZE) {
return 0; // not enough data
}