shithub: libvpx

Download patch

ref: 91344f0a36f83d73af1f5325be792235eb021802
parent: e1f2113af728f1979194e2ab6295ee109bcf4638
parent: e39b9a66a31fdc5371fb94b757867f61adacb81c
author: James Zern <jzern@google.com>
date: Thu May 8 08:43:54 EDT 2014

Merge "webmdec: Fix visual studio warnings."

--- a/webmdec.cc
+++ b/webmdec.cc
@@ -108,8 +108,8 @@
 
   vpx_ctx->framerate.denominator = 0;
   vpx_ctx->framerate.numerator = 0;
-  vpx_ctx->width = video_track->GetWidth();
-  vpx_ctx->height = video_track->GetHeight();
+  vpx_ctx->width = static_cast<uint32_t>(video_track->GetWidth());
+  vpx_ctx->height = static_cast<uint32_t>(video_track->GetHeight());
 
   get_first_cluster(webm_ctx);
 
--