config_test.cc 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright (c) 2012 The WebM project authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #include "third_party/googletest/src/include/gtest/gtest.h"
  11. #include "test/codec_factory.h"
  12. #include "test/encode_test_driver.h"
  13. #include "test/util.h"
  14. #include "test/video_source.h"
  15. namespace {
  16. class ConfigTest
  17. : public ::libvpx_test::EncoderTest,
  18. public ::libvpx_test::CodecTestWithParam<libvpx_test::TestMode> {
  19. protected:
  20. ConfigTest()
  21. : EncoderTest(GET_PARAM(0)), frame_count_in_(0), frame_count_out_(0),
  22. frame_count_max_(0) {}
  23. virtual ~ConfigTest() {}
  24. virtual void SetUp() {
  25. InitializeConfig();
  26. SetMode(GET_PARAM(1));
  27. }
  28. virtual void BeginPassHook(unsigned int /*pass*/) {
  29. frame_count_in_ = 0;
  30. frame_count_out_ = 0;
  31. }
  32. virtual void PreEncodeFrameHook(libvpx_test::VideoSource * /*video*/) {
  33. ++frame_count_in_;
  34. abort_ |= (frame_count_in_ >= frame_count_max_);
  35. }
  36. virtual void FramePktHook(const vpx_codec_cx_pkt_t * /*pkt*/) {
  37. ++frame_count_out_;
  38. }
  39. unsigned int frame_count_in_;
  40. unsigned int frame_count_out_;
  41. unsigned int frame_count_max_;
  42. };
  43. TEST_P(ConfigTest, LagIsDisabled) {
  44. frame_count_max_ = 2;
  45. cfg_.g_lag_in_frames = 15;
  46. libvpx_test::DummyVideoSource video;
  47. ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
  48. EXPECT_EQ(frame_count_in_, frame_count_out_);
  49. }
  50. VP8_INSTANTIATE_TEST_CASE(ConfigTest, ONE_PASS_TEST_MODES);
  51. } // namespace