examples: quiet -Wshorten-64-to-32 warnings
all around usage of strtol/strtoul
ported from libvpx:
08b8b6bb8 examples: quiet -Wshorten-64-to-32 warnings
Change-Id: If907c89f107a068987aa71ddd93cee9a7389e4cd
diff --git a/examples/set_maps.c b/examples/set_maps.c
index b4916cf..e88cd42 100644
--- a/examples/set_maps.c
+++ b/examples/set_maps.c
@@ -143,8 +143,8 @@
}
assert(encoder != NULL);
info.codec_fourcc = encoder->fourcc;
- info.frame_width = strtol(argv[2], NULL, 0);
- info.frame_height = strtol(argv[3], NULL, 0);
+ info.frame_width = (int)strtol(argv[2], NULL, 0);
+ info.frame_height = (int)strtol(argv[3], NULL, 0);
info.time_base.numerator = 1;
info.time_base.denominator = fps;