ref: 8491e3c8829268a6dd009a9f656f4d6a56e42c06
parent: 3ba5df491120f798cb1a7e44608866827d4c9e38
parent: a3c521e14307f7218c5405b5274f873e9f5c84f5
author: James Zern <[email protected]>
date: Wed Feb 19 09:04:01 EST 2014
Merge "postproc.c: Cast away MSVC data loss warning."
--- a/examples/postproc.c
+++ b/examples/postproc.c
@@ -118,7 +118,7 @@
};
// 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) {