ref: 71d09c34fff6f51a153b8732eef6bfb4e381fcbf
parent: 463d33145de28770f815466db0ffc85d14442043
author: James Zern <jzern@google.com>
date: Sat Jun 5 15:30:04 EDT 2021
simple_encode_test: fix input file path this allows the file to be located in LIBVPX_TEST_DATA_PATH similar to other test sources. Bug: webm:1731 Change-Id: I51606635d91871e7c179aa8d20d4841b0d60b6ad
--- a/test/simple_encode_test.cc
+++ b/test/simple_encode_test.cc
@@ -13,6 +13,7 @@
#include <string>
#include <vector>
#include "third_party/googletest/src/include/gtest/gtest.h"
+#include "test/video_source.h"
#include "vp9/simple_encode.h"
namespace vp9 {
@@ -36,7 +37,8 @@
const int frame_rate_den_ = 1;
const int target_bitrate_ = 1000;
const int num_frames_ = 17;
- const std::string in_file_path_str_ = "bus_352x288_420_f20_b8.yuv";
+ const std::string in_file_path_str_ =
+ libvpx_test::GetDataPath() + "/bus_352x288_420_f20_b8.yuv";
};
TEST_F(SimpleEncodeTest, ComputeFirstPassStats) {