summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTom Finegan <tomfinegan@google.com>2014-02-19 11:58:28 -0800
committerTom Finegan <tomfinegan@google.com>2014-02-19 11:58:28 -0800
commita3c521e14307f7218c5405b5274f873e9f5c84f5 (patch)
tree9a2eb4b6f1ad0b60a83da8ec53377d2fe40ec4df /examples
parente3178d0c1c21534f933cb8196b79e420c5760d1a (diff)
downloadlibvpx-a3c521e14307f7218c5405b5274f873e9f5c84f5.tar
libvpx-a3c521e14307f7218c5405b5274f873e9f5c84f5.tar.gz
libvpx-a3c521e14307f7218c5405b5274f873e9f5c84f5.tar.bz2
libvpx-a3c521e14307f7218c5405b5274f873e9f5c84f5.zip
postproc.c: Cast away MSVC data loss warning.
Change-Id: Ib80d4f394692a981e369dc5fecd5432cbec488d1
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) {