dec/vp8l: quiet vs9 x64 type conversion warning

src\dec\vp8l.c(816) : warning C4244: '=' : conversion from '__int64' to
'int', possible loss of data
src\dec\vp8l.c(817) : warning C4244: '=' : conversion from '__int64' to
'int', possible loss of data

Change-Id: I1d376d5dea909395bff8741aba16e8eed83a6e8f
This commit is contained in:
James Zern 2013-06-14 19:24:54 -07:00
parent 8cf0701eb0
commit a368db81c6

View File

@ -794,7 +794,7 @@ End: \
dec->status_ = \
(!br->eos_) ? VP8_STATUS_BITSTREAM_ERROR : VP8_STATUS_SUSPENDED; \
} else { \
dec->last_pixel_ = src - data; \
dec->last_pixel_ = (int)(src - data); \
if (src == src_end) dec->state_ = READ_DATA; \
} \
return ok; \