Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 // | |
| 5 // This file contains an interface of output pictures for the Vaapi | |
| 6 // video decoder. This is implemented by different window system | |
| 7 // (X11/Ozone) and used by VaapiVideoDecodeAccelerator to produce | |
| 8 // output pictures. | |
| 9 | |
| 10 #ifndef CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_H_ | |
| 11 #define CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_H_ | |
| 12 | |
| 13 #include "base/memory/ref_counted.h" | |
| 14 #include "base/threading/non_thread_safe.h" | |
| 15 #include "ui/gfx/size.h" | |
| 16 | |
| 17 namespace content { | |
| 18 | |
| 19 class VASurface; | |
| 20 | |
| 21 // Picture is native pixmap abstraction (X11/Ozone). | |
| 22 class VaapiPicture : public base::NonThreadSafe { | |
| 23 public: | |
| 24 virtual ~VaapiPicture() {} | |
| 25 | |
| 26 // Try to allocate the underlying resources for the picture. | |
| 27 virtual bool Initialize() = 0; | |
| 28 | |
| 29 int32 picture_buffer_id() const { return picture_buffer_id_; } | |
| 30 uint32 texture_id() const { return texture_id_; } | |
| 31 const gfx::Size& size() const { return size_; } | |
| 32 | |
| 33 // Downloads the |va_surface| into the picture, potentially scaling | |
| 34 // it if needed. | |
| 35 virtual bool DownloadFromSurface( | |
| 36 const scoped_refptr<VASurface>& va_surface) = 0; | |
| 37 | |
| 38 // Get the texture target used to bind EGLImages (either | |
| 39 // GL_TEXTURE_2D on X11 or GL_TEXTURE_EXTERNAL_OES on DRM). | |
| 40 static uint32 GetGLTextureTarget(); | |
|
Pawel Osciak
2014/12/08 10:55:15
Please instead of implementing this in each pictur
llandwerlin-old
2014/12/08 16:42:06
Done.
| |
| 41 | |
| 42 protected: | |
| 43 VaapiPicture(int32 picture_buffer_id, | |
| 44 uint32 texture_id, | |
| 45 const gfx::Size& size) | |
| 46 : picture_buffer_id_(picture_buffer_id), | |
| 47 texture_id_(texture_id), | |
| 48 size_(size) {} | |
| 49 | |
| 50 private: | |
| 51 int32 picture_buffer_id_; | |
| 52 uint32 texture_id_; | |
| 53 gfx::Size size_; | |
| 54 | |
| 55 DISALLOW_COPY_AND_ASSIGN(VaapiPicture); | |
| 56 }; | |
| 57 | |
| 58 } // namespace content | |
| 59 | |
| 60 #endif // CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_H_ | |
| OLD | NEW |