Skip to content
Snippets Groups Projects
Commit a3c521e1 authored by Tom Finegan's avatar Tom Finegan
Browse files

postproc.c: Cast away MSVC data loss warning.

Change-Id: Ib80d4f394692a981e369dc5fecd5432cbec488d1
parent e3178d0c
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment