1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48

media / gpu / vaapi / vaapi_image_decoder_test_common.h [blame]

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_GPU_VAAPI_VAAPI_IMAGE_DECODER_TEST_COMMON_H_
#define MEDIA_GPU_VAAPI_VAAPI_IMAGE_DECODER_TEST_COMMON_H_

#include <memory>
#include <string>

// This has to be included first.
// See http://code.google.com/p/googletest/issues/detail?id=371
#include "testing/gtest/include/gtest/gtest.h"

#include "media/gpu/vaapi/test_utils.h"

namespace base {
class FilePath;
}

namespace media {

class VaapiImageDecoder;

class VaapiImageDecoderTestCommon
    : public testing::TestWithParam<vaapi_test_utils::TestParam> {
 public:
  VaapiImageDecoderTestCommon(std::unique_ptr<VaapiImageDecoder> decoder);
  ~VaapiImageDecoderTestCommon();

  void SetUp() override;

  VaapiImageDecoder* Decoder() const { return decoder_.get(); }

  // Find the location of the specified test file. If a file with specified path
  // is not found, treat the file as being relative to the test file directory.
  // This is either a custom test data path provided by --test_data_path, or the
  // default test data path (//media/test/data).
  base::FilePath FindTestDataFilePath(const std::string& file_name) const;

 private:
  std::string test_data_path_;
  std::unique_ptr<VaapiImageDecoder> decoder_;
};

}  // namespace media

#endif  //  MEDIA_GPU_VAAPI_VAAPI_IMAGE_DECODER_TEST_COMMON_H_