shithub: libvpx

Download patch

ref: 6811dbc4c8f71438c607656c7828718c93c4ed8f
parent: e3178d0c1c21534f933cb8196b79e420c5760d1a
author: Tom Finegan <tomfinegan@google.com>
date: Wed Feb 19 06:55:06 EST 2014

decode_with_drops.c: Cast away MSVC data loss warning.

Change-Id: Ib8ee2b9a4cb785176ca1054489df5dced004837a

--- a/examples/decode_with_drops.c
+++ b/examples/decode_with_drops.c
@@ -120,7 +120,7 @@
     int skip;
     const unsigned char *frame = vpx_video_reader_get_frame(reader,
                                                             &frame_size);
-    if (vpx_codec_decode(&codec, frame, frame_size, NULL, 0))
+    if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
       die_codec(&codec, "Failed to decode frame.");
 
     ++frame_cnt;
--