aboutsummaryrefslogtreecommitdiff
path: root/accel/video_decode_accelerator.h
diff options
context:
space:
mode:
Diffstat (limited to 'accel/video_decode_accelerator.h')
-rw-r--r--accel/video_decode_accelerator.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/accel/video_decode_accelerator.h b/accel/video_decode_accelerator.h
deleted file mode 100644
index 6a6020f..0000000
--- a/accel/video_decode_accelerator.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2012 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.
-// Note: ported from Chromium commit head: 85fdf90
-
-#ifndef VIDEO_DECODE_ACCELERATOR_H_
-#define VIDEO_DECODE_ACCELERATOR_H_
-
-#include <vector>
-
-#include "base/memory/ref_counted.h"
-#include "base/memory/weak_ptr.h"
-
-#include "size.h"
-#include "video_codecs.h"
-
-namespace media {
-
-// Video decoder interface.
-// This interface is extended by the various components that ultimately
-// implement the backend of PPB_VideoDecoder_Dev.
-class VideoDecodeAccelerator {
- public:
- // Specification of a decoding profile supported by an decoder.
- // |max_resolution| and |min_resolution| are inclusive.
- struct SupportedProfile {
- SupportedProfile();
- ~SupportedProfile();
- VideoCodecProfile profile;
- Size max_resolution;
- Size min_resolution;
- bool encrypted_only;
- };
- using SupportedProfiles = std::vector<SupportedProfile>;
-};
-
-} // namespace media
-
-#endif // VIDEO_DECODE_ACCELERATOR_H_