| Index: source/libvpx/examples/simple_decoder.c
|
| ===================================================================
|
| --- source/libvpx/examples/simple_decoder.c (revision 254565)
|
| +++ source/libvpx/examples/simple_decoder.c (working copy)
|
| @@ -134,7 +134,7 @@
|
| size_t frame_size = 0;
|
| 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.");
|
|
|
| while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
|
|
|