Commit c2fa8390 authored by James Zern's avatar James Zern
Browse files

I420VideoSource: normalize framerate types

ctor inputs are ints as are vpx_rational_t members

Change-Id: I62a39bf3df123727a872e40b74e3ee9e55ef2ede
Showing with 2 additions and 2 deletions
...@@ -108,8 +108,8 @@ class I420VideoSource : public VideoSource { ...@@ -108,8 +108,8 @@ class I420VideoSource : public VideoSource {
unsigned int frame_; unsigned int frame_;
unsigned int width_; unsigned int width_;
unsigned int height_; unsigned int height_;
unsigned int framerate_numerator_; int framerate_numerator_;
unsigned int framerate_denominator_; int framerate_denominator_;
}; };
} // namespace libvpx_test } // namespace libvpx_test
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment