OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "content/gpu/media/fake_gl_video_device.h" | 5 #include "content/gpu/media/fake_gl_video_device.h" |
6 | 6 |
7 #include "app/gfx/gl/gl_bindings.h" | |
8 #include "media/base/video_frame.h" | 7 #include "media/base/video_frame.h" |
| 8 #include "ui/gfx/gl/gl_bindings.h" |
9 | 9 |
10 void* FakeGlVideoDevice::GetDevice() { | 10 void* FakeGlVideoDevice::GetDevice() { |
11 // No actual hardware device should be used. | 11 // No actual hardware device should be used. |
12 return NULL; | 12 return NULL; |
13 } | 13 } |
14 | 14 |
15 bool FakeGlVideoDevice::CreateVideoFrameFromGlTextures( | 15 bool FakeGlVideoDevice::CreateVideoFrameFromGlTextures( |
16 size_t width, size_t height, media::VideoFrame::Format format, | 16 size_t width, size_t height, media::VideoFrame::Format format, |
17 const std::vector<media::VideoFrame::GlTexture>& textures, | 17 const std::vector<media::VideoFrame::GlTexture>& textures, |
18 scoped_refptr<media::VideoFrame>* frame) { | 18 scoped_refptr<media::VideoFrame>* frame) { |
(...skipping 30 matching lines...) Expand all Loading... |
49 reinterpret_cast<media::VideoFrame*>(buffer)); | 49 reinterpret_cast<media::VideoFrame*>(buffer)); |
50 DCHECK_EQ(frame->width(), frame_to_upload->width()); | 50 DCHECK_EQ(frame->width(), frame_to_upload->width()); |
51 DCHECK_EQ(frame->height(), frame_to_upload->height()); | 51 DCHECK_EQ(frame->height(), frame_to_upload->height()); |
52 DCHECK_EQ(frame->format(), frame_to_upload->format()); | 52 DCHECK_EQ(frame->format(), frame_to_upload->format()); |
53 glTexImage2D( | 53 glTexImage2D( |
54 GL_TEXTURE_2D, 0, GL_RGBA, frame_to_upload->width(), | 54 GL_TEXTURE_2D, 0, GL_RGBA, frame_to_upload->width(), |
55 frame_to_upload->height(), 0, GL_RGBA, | 55 frame_to_upload->height(), 0, GL_RGBA, |
56 GL_UNSIGNED_BYTE, frame_to_upload->data(media::VideoFrame::kRGBPlane)); | 56 GL_UNSIGNED_BYTE, frame_to_upload->data(media::VideoFrame::kRGBPlane)); |
57 return true; | 57 return true; |
58 } | 58 } |
OLD | NEW |