aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2024-05-01 13:41:25 -0700
committerJames Zern <jzern@google.com>2024-05-02 02:25:43 +0000
commite9be4f607b7224da22841af07b34dce3fd2ea420 (patch)
treea4b151fbf22f257f9315583181922c14a487b3b5
parent7a0089dc0855645547437c2679576fc56b692c8a (diff)
downloadlibvpx-e9be4f607b7224da22841af07b34dce3fd2ea420.tar.gz
encode_api_test.cc: apply iwyu
add missing <cstdio> and <cstdlib> and delete some unused headers. Change-Id: I6c66368f557e6df896bffb2aa90228811f14f027
-rw-r--r--test/encode_api_test.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/encode_api_test.cc b/test/encode_api_test.cc
index b9e3ebbde..f907c4929 100644
--- a/test/encode_api_test.cc
+++ b/test/encode_api_test.cc
@@ -11,16 +11,14 @@
#include <cassert>
#include <climits>
#include <cstdint>
+#include <cstdio>
+#include <cstdlib>
#include <cstring>
#include <initializer_list>
-#include <new>
#include <vector>
#include "third_party/googletest/src/include/gtest/gtest.h"
#include "test/acm_random.h"
-#include "test/codec_factory.h"
-#include "test/encode_test_driver.h"
-#include "test/i420_video_source.h"
#include "test/video_source.h"
#include "./vpx_config.h"
@@ -28,7 +26,6 @@
#include "vpx/vpx_codec.h"
#include "vpx/vpx_encoder.h"
#include "vpx/vpx_image.h"
-#include "vpx/vpx_tpl.h"
#include "vpx_ports/msvc.h"
namespace {