From: James Zern Date: Sat, 22 Jun 2013 02:34:51 +0000 (-0700) Subject: I420VideoSource: normalize framerate types X-Git-Tag: v1.3.0~1027^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c2fa8390f69ca709e2a4442ab8ac4b98e9c56d53;p=libvpx I420VideoSource: normalize framerate types ctor inputs are ints as are vpx_rational_t members Change-Id: I62a39bf3df123727a872e40b74e3ee9e55ef2ede --- diff --git a/test/i420_video_source.h b/test/i420_video_source.h index 12a6ab1d3..0dc29319c 100644 --- a/test/i420_video_source.h +++ b/test/i420_video_source.h @@ -108,8 +108,8 @@ class I420VideoSource : public VideoSource { unsigned int frame_; unsigned int width_; unsigned int height_; - unsigned int framerate_numerator_; - unsigned int framerate_denominator_; + int framerate_numerator_; + int framerate_denominator_; }; } // namespace libvpx_test