lossless: remove some size_t -> int conversions

Sizes are given as ints in the documentation and used as such elsewhere.

Change-Id: I51ecd9e501cf9b4e3948aa0e947d2c9b5c85a30f
This commit is contained in:
James Zern
2012-04-24 12:23:58 -07:00
parent 1349edade1
commit 532020f24a
3 changed files with 4 additions and 4 deletions

View File

@ -48,8 +48,8 @@ typedef struct VP8LTransform VP8LTransform;
struct VP8LTransform {
VP8LImageTransformType type_; // transform type.
int bits_; // subsampling bits defining transform window.
size_t xsize_; // transform window X index.
size_t ysize_; // transform window Y index.
int xsize_; // transform window X index.
int ysize_; // transform window Y index.
uint32_t *data_; // transform data.
};