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

media / gpu / vaapi / vaapi_image_decoder_test_common.cc [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.

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

#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/logging.h"
#include "media/base/test_data_util.h"
#include "media/gpu/vaapi/vaapi_image_decoder.h"

namespace media {

VaapiImageDecoderTestCommon::VaapiImageDecoderTestCommon(
    std::unique_ptr<VaapiImageDecoder> decoder)
    : decoder_(std::move(decoder)) {
  const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess();
  if (cmd_line && cmd_line->HasSwitch("test_data_path"))
    test_data_path_ = cmd_line->GetSwitchValueASCII("test_data_path");
}

VaapiImageDecoderTestCommon::~VaapiImageDecoderTestCommon() = default;

void VaapiImageDecoderTestCommon::SetUp() {
  ASSERT_TRUE(
      decoder_->Initialize(base::BindRepeating([](VaapiFunctions function) {
        LOG(FATAL) << "Oh noes! Decoder failed";
      })));
}

base::FilePath VaapiImageDecoderTestCommon::FindTestDataFilePath(
    const std::string& file_name) const {
  const base::FilePath file_path = base::FilePath(file_name);
  if (base::PathExists(file_path))
    return file_path;
  if (!test_data_path_.empty())
    return base::FilePath(test_data_path_).Append(file_path);
  return GetTestDataFilePath(file_name);
}

}  // namespace media