Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: content/common/gpu/media/vp9_picture.h

Issue 1345943009: Reland: Add accelerated VP9 decode infrastructure and an implementation for VA-API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/common/gpu/media/vp9_decoder.cc ('k') | content/common/gpu/media/vp9_picture.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_COMMON_GPU_MEDIA_VP9_PICTURE_H_
6 #define CONTENT_COMMON_GPU_MEDIA_VP9_PICTURE_H_
7
8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "media/filters/vp9_parser.h"
11
12 namespace content {
13
14 class V4L2VP9Picture;
15 class VaapiVP9Picture;
16
17 class VP9Picture : public base::RefCounted<VP9Picture> {
18 public:
19 VP9Picture();
20
21 virtual V4L2VP9Picture* AsV4L2VP9Picture();
22 virtual VaapiVP9Picture* AsVaapiVP9Picture();
23
24 scoped_ptr<media::Vp9FrameHeader> frame_hdr;
25
26 protected:
27 friend class base::RefCounted<VP9Picture>;
28 virtual ~VP9Picture();
29
30 DISALLOW_COPY_AND_ASSIGN(VP9Picture);
31 };
32
33 } // namespace content
34
35 #endif // CONTENT_COMMON_GPU_MEDIA_VP9_PICTURE_H_
OLDNEW
« no previous file with comments | « content/common/gpu/media/vp9_decoder.cc ('k') | content/common/gpu/media/vp9_picture.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698