summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-02-19 14:04:01 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-02-19 14:04:01 -0800
commit8491e3c8829268a6dd009a9f656f4d6a56e42c06 (patch)
treeaf38300ead699b7c8843707ac1a722f38b4de7bc /examples
parent3ba5df491120f798cb1a7e44608866827d4c9e38 (diff)
parenta3c521e14307f7218c5405b5274f873e9f5c84f5 (diff)
downloadlibvpx-8491e3c8829268a6dd009a9f656f4d6a56e42c06.tar
libvpx-8491e3c8829268a6dd009a9f656f4d6a56e42c06.tar.gz
libvpx-8491e3c8829268a6dd009a9f656f4d6a56e42c06.tar.bz2
libvpx-8491e3c8829268a6dd009a9f656f4d6a56e42c06.zip
Merge "postproc.c: Cast away MSVC data loss warning."
Diffstat (limited to 'examples')
-rw-r--r--examples/postproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/postproc.c b/examples/postproc.c
index 2912fe6de..be08e920b 100644
--- a/examples/postproc.c
+++ b/examples/postproc.c
@@ -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) {