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

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

Issue 832953002: Cleanup: Update the path to gfx size headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 11 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/va_surface.h ('k') | content/common/gpu/media/vaapi_tfp_picture.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // This file contains an interface of output pictures for the Vaapi 5 // This file contains an interface of output pictures for the Vaapi
6 // video decoder. This is implemented by different window system 6 // video decoder. This is implemented by different window system
7 // (X11/Ozone) and used by VaapiVideoDecodeAccelerator to produce 7 // (X11/Ozone) and used by VaapiVideoDecodeAccelerator to produce
8 // output pictures. 8 // output pictures.
9 9
10 #ifndef CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_H_ 10 #ifndef CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_H_
11 #define CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_H_ 11 #define CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_H_
12 12
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/memory/linked_ptr.h" 14 #include "base/memory/linked_ptr.h"
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "base/threading/non_thread_safe.h" 16 #include "base/threading/non_thread_safe.h"
17 #include "ui/gfx/size.h" 17 #include "ui/gfx/geometry/size.h"
18 18
19 namespace content { 19 namespace content {
20 20
21 class VASurface; 21 class VASurface;
22 class VaapiWrapper; 22 class VaapiWrapper;
23 23
24 // Picture is native pixmap abstraction (X11/Ozone). 24 // Picture is native pixmap abstraction (X11/Ozone).
25 class VaapiPicture : public base::NonThreadSafe { 25 class VaapiPicture : public base::NonThreadSafe {
26 public: 26 public:
27 virtual ~VaapiPicture() {} 27 virtual ~VaapiPicture() {}
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 int32 picture_buffer_id_; 64 int32 picture_buffer_id_;
65 uint32 texture_id_; 65 uint32 texture_id_;
66 gfx::Size size_; 66 gfx::Size size_;
67 67
68 DISALLOW_COPY_AND_ASSIGN(VaapiPicture); 68 DISALLOW_COPY_AND_ASSIGN(VaapiPicture);
69 }; 69 };
70 70
71 } // namespace content 71 } // namespace content
72 72
73 #endif // CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_H_ 73 #endif // CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_H_
OLDNEW
« no previous file with comments | « content/common/gpu/media/va_surface.h ('k') | content/common/gpu/media/vaapi_tfp_picture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698