blob: 0c53026088d53479578e70d8e31a26a160df8800 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Copyright (c) 2010 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.
#ifndef MEDIA_TOOLS_PLAYER_X11_GL_VIDEO_RENDERER_H_
#define MEDIA_TOOLS_PLAYER_X11_GL_VIDEO_RENDERER_H_
#include <EGL/egl.h>
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include "base/lock.h"
#include "base/scoped_ptr.h"
#include "media/base/factory.h"
#include "media/filters/video_renderer_base.h"
class GlesVideoRenderer : public media::VideoRendererBase {
public:
static media::FilterFactory* CreateFactory(Display* display,
Window window) {
return new media::FilterFactoryImpl2<
GlesVideoRenderer, Display*, Window>(display, window);
}
GlesVideoRenderer(Display* display, Window window);
// This method is called to paint the current video frame to the assigned
// window.
void Paint();
// media::FilterFactoryImpl2 Implementation.
static bool IsMediaFormatSupported(const media::MediaFormat& media_format);
static GlesVideoRenderer* instance() { return instance_; }
protected:
// VideoRendererBase implementation.
virtual bool OnInitialize(media::VideoDecoder* decoder);
virtual void OnStop();
virtual void OnFrameAvailable();
private:
// Only allow to be deleted by reference counting.
friend class scoped_refptr<GlesVideoRenderer>;
virtual ~GlesVideoRenderer();
bool InitializeGles();
int width_;
int height_;
Display* display_;
Window window_;
// Protects |new_frame_|.
Lock lock_;
bool new_frame_;
// EGL context.
EGLDisplay egl_display_;
EGLSurface egl_surface_;
EGLContext egl_context_;
// 3 textures, one for each plane.
GLuint textures_[3];
static GlesVideoRenderer* instance_;
DISALLOW_COPY_AND_ASSIGN(GlesVideoRenderer);
};
#endif // MEDIA_TOOLS_PLAYER_X11_GLES_VIDEO_RENDERER_H_
|