Files
android_external_libvpx/test/test_rc_interface.cc
Jerome Jiang 65a1751e5b Add vp8 support to rc lib
For 1 layer CBR only.
Support for temporal layers comes later.

Rename the library to libvpxrc

Bug: b/188853141

Change-Id: Ib7f977b64c05b1a0596870cb7f8e6768cb483850
2021-09-10 10:46:26 -07:00

7 lines
165 B
C++

#include "third_party/googletest/src/include/gtest/gtest.h"
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}