ratectrl_rtc.h: quiet MSVC int64_t->int conv warning
authorJames Zern <jzern@google.com>
Fri, 2 Jul 2021 05:16:42 +0000 (22:16 -0700)
committerJames Zern <jzern@google.com>
Fri, 2 Jul 2021 05:20:30 +0000 (22:20 -0700)
commit350b0b47f2b126ae33607002590d58aca18033bc
treeab623dc10b26918918fab2145917037dc2045c60
parent40e7b4a5bec4c2f1f482b3db72cbaad22bac901f
ratectrl_rtc.h: quiet MSVC int64_t->int conv warning

target_bandwidth is int64_t, but layer_target_bitrate[0] is an int. this
is safe in the only place it's set because target_bandwidth defaults to
1000. target_bandwidth is later used to populate the cpi's target, which
is an unsigned int so there may be further fixes/cleanups that can be
done.

Change-Id: I35dbaa2e55a0fca22e0e2680dcac9ea4c6b2815a
vp9/ratectrl_rtc.h