Skip to content
Snippets Groups Projects
Commit e39b9a66 authored by Vignesh Venkatasubramanian's avatar Vignesh Venkatasubramanian
Browse files

webmdec: Fix visual studio warnings.

Fix a couple of visual studio warnings.

Change-Id: I161edf4b37f5ac2defbe6eb5b7e34d219b1f52d9
parent 51a1cbfe
No related branches found
No related tags found
No related merge requests found
......@@ -108,8 +108,8 @@ int file_is_webm(struct WebmInputContext *webm_ctx,
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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment