aboutsummaryrefslogtreecommitdiff
path: root/test/superframe_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/superframe_test.cc')
-rw-r--r--test/superframe_test.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/superframe_test.cc b/test/superframe_test.cc
index a5c92e914..4c3aa1625 100644
--- a/test/superframe_test.cc
+++ b/test/superframe_test.cc
@@ -28,9 +28,9 @@ class SuperframeTest
protected:
SuperframeTest()
: EncoderTest(GET_PARAM(0)), modified_buf_(nullptr), last_sf_pts_(0) {}
- virtual ~SuperframeTest() {}
+ ~SuperframeTest() override = default;
- virtual void SetUp() {
+ void SetUp() override {
InitializeConfig();
const SuperframeTestParam input = GET_PARAM(1);
const libvpx_test::TestMode mode = std::get<kTestMode>(input);
@@ -39,17 +39,17 @@ class SuperframeTest
sf_count_max_ = INT_MAX;
}
- virtual void TearDown() { delete[] modified_buf_; }
+ void TearDown() override { delete[] modified_buf_; }
- virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video,
- libvpx_test::Encoder *encoder) {
+ void PreEncodeFrameHook(libvpx_test::VideoSource *video,
+ libvpx_test::Encoder *encoder) override {
if (video->frame() == 0) {
encoder->Control(VP8E_SET_ENABLEAUTOALTREF, 1);
}
}
- virtual const vpx_codec_cx_pkt_t *MutateEncoderOutputHook(
- const vpx_codec_cx_pkt_t *pkt) {
+ const vpx_codec_cx_pkt_t *MutateEncoderOutputHook(
+ const vpx_codec_cx_pkt_t *pkt) override {
if (pkt->kind != VPX_CODEC_CX_FRAME_PKT) return pkt;
const uint8_t *buffer = reinterpret_cast<uint8_t *>(pkt->data.frame.buf);