Merge "postproc.c: Cast away MSVC data loss warning."

This commit is contained in:
James Zern 2014-02-19 14:04:01 -08:00 committed by Gerrit Code Review
commit 8491e3c882

View File

@ -118,7 +118,7 @@ int main(int argc, char **argv) {
};
// Decode the frame with 15ms deadline
if (vpx_codec_decode(&codec, frame, frame_size, NULL, 15000))
if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 15000))
die_codec(&codec, "Failed to decode frame");
while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {