blob: 095a5c1b8f2b52fd952681ec2f6b9bcd88d2ce7a [file] [log] [blame]
// Copyright 2017 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 MEDIA_GPU_ANDROID_DEVICE_INFO_H_
#define MEDIA_GPU_ANDROID_DEVICE_INFO_H_
#include "media/base/video_codecs.h"
#include "media/gpu/media_gpu_export.h"
namespace media {
class MediaCodecBridge;
// Info about the current platform and device with caching of the results that
// don't change. Virtual for testing.
struct MEDIA_GPU_EXPORT DeviceInfo {
static DeviceInfo* GetInstance();
virtual int SdkVersion();
virtual bool IsVp8DecoderAvailable();
virtual bool IsVp9DecoderAvailable();
virtual bool IsDecoderKnownUnaccelerated(VideoCodec codec);
virtual bool IsSetOutputSurfaceSupported();
virtual bool SupportsOverlaySurfaces();
virtual bool CodecNeedsFlushWorkaround(MediaCodecBridge* codec);
virtual bool IsAsyncApiSupported();
};
} // namespace media
#endif // MEDIA_GPU_ANDROID_DEVICE_INFO_H_