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:
parent
8cf0701eb0
commit
a368db81c6
@ -794,7 +794,7 @@ End: \
|
|||||||
dec->status_ = \
|
dec->status_ = \
|
||||||
(!br->eos_) ? VP8_STATUS_BITSTREAM_ERROR : VP8_STATUS_SUSPENDED; \
|
(!br->eos_) ? VP8_STATUS_BITSTREAM_ERROR : VP8_STATUS_SUSPENDED; \
|
||||||
} else { \
|
} else { \
|
||||||
dec->last_pixel_ = src - data; \
|
dec->last_pixel_ = (int)(src - data); \
|
||||||
if (src == src_end) dec->state_ = READ_DATA; \
|
if (src == src_end) dec->state_ = READ_DATA; \
|
||||||
} \
|
} \
|
||||||
return ok; \
|
return ok; \
|
||||||
|
Loading…
Reference in New Issue
Block a user