blob: 373ca693131f32e4c9b6dcf71107ebca04c66c29 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_CHROMEOS_CAMERA_GPU_JPEG_ENCODE_ACCELERATOR_FACTORY_H_
#define COMPONENTS_CHROMEOS_CAMERA_GPU_JPEG_ENCODE_ACCELERATOR_FACTORY_H_
#include "base/memory/ref_counted.h"
#include "components/chromeos_camera/jpeg_encode_accelerator.h"
namespace base {
class SingleThreadTaskRunner;
}
namespace chromeos_camera {
class GpuJpegEncodeAcceleratorFactory {
public:
using CreateAcceleratorCB =
base::RepeatingCallback<std::unique_ptr<JpegEncodeAccelerator>(
scoped_refptr<base::SingleThreadTaskRunner>)>;
// Static query for JPEG supported. This query calls the appropriate
// platform-specific version.
static bool IsAcceleratedJpegEncodeSupported();
static std::vector<CreateAcceleratorCB> GetAcceleratorFactories();
};
} // namespace chromeos_camera
#endif // COMPONENTS_CHROMEOS_CAMERA_GPU_JPEG_ENCODE_ACCELERATOR_FACTORY_H_