blob: 3261791fbf0723131c6610d9fa68ce5c4bcbc10b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// Copyright 2014 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.
//
// This file contains an implementation of picture allocation for the
// X11 window system used by VaapiVideoDecodeAccelerator to produce
// output pictures.
#ifndef CONTENT_COMMON_GPU_MEDIA_VAAPI_TFP_PICTURE_H_
#define CONTENT_COMMON_GPU_MEDIA_VAAPI_TFP_PICTURE_H_
#include "base/callback.h"
#include "base/memory/ref_counted.h"
#include "content/common/gpu/media/vaapi_picture.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gl/gl_bindings.h"
namespace gfx {
class GLImageGLX;
class GLContextGLX;
}
namespace content {
class VaapiWrapper;
// Implementation of VaapiPicture for the X11 backed chromium.
class VaapiTFPPicture : public VaapiPicture {
public:
VaapiTFPPicture(VaapiWrapper* vaapi_wrapper,
const base::Callback<bool(void)> make_context_current,
int32 picture_buffer_id,
uint32 texture_id,
const gfx::Size& size);
~VaapiTFPPicture() override;
bool Initialize() override;
bool DownloadFromSurface(const scoped_refptr<VASurface>& va_surface) override;
scoped_refptr<gfx::GLImage> GetImageToBind() override;
private:
VaapiWrapper* vaapi_wrapper_; // Not owned.
base::Callback<bool(void)> make_context_current_;
Display* x_display_;
Pixmap x_pixmap_;
scoped_refptr<gfx::GLImageGLX> glx_image_;
DISALLOW_COPY_AND_ASSIGN(VaapiTFPPicture);
};
} // namespace content
#endif // CONTENT_COMMON_GPU_MEDIA_VAAPI_TFP_PICTURE_H_
|