OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/renderer/renderer_gpu_video_decoder_factories.h" |
| 6 |
| 7 #include "content/common/child_thread.h" |
| 8 #include "content/renderer/gpu/command_buffer_proxy.h" |
| 9 #include "content/renderer/gpu/gpu_channel_host.h" |
| 10 #include "content/renderer/gpu/renderer_gl_context.h" |
| 11 #include "gpu/command_buffer/client/gles2_implementation.h" |
| 12 |
| 13 RendererGpuVideoDecoderFactories::~RendererGpuVideoDecoderFactories() {} |
| 14 RendererGpuVideoDecoderFactories::RendererGpuVideoDecoderFactories( |
| 15 GpuChannelHost* gpu_channel_host, base::WeakPtr<RendererGLContext> context) |
| 16 : gpu_channel_host_(gpu_channel_host), |
| 17 context_(context) { |
| 18 } |
| 19 |
| 20 media::VideoDecodeAccelerator* |
| 21 RendererGpuVideoDecoderFactories::CreateVideoDecodeAccelerator( |
| 22 media::VideoDecodeAccelerator::Profile profile, |
| 23 media::VideoDecodeAccelerator::Client* client) { |
| 24 if (!context_) |
| 25 return NULL; |
| 26 return gpu_channel_host_->CreateVideoDecoder( |
| 27 context_->GetCommandBufferProxy()->route_id(), profile, client); |
| 28 } |
| 29 |
| 30 bool RendererGpuVideoDecoderFactories::CreateTextures( |
| 31 int32 count, const gfx::Size& size, std::vector<uint32>* texture_ids) { |
| 32 if (!context_) |
| 33 return false; |
| 34 gpu::gles2::GLES2Implementation* gles2 = context_->GetImplementation(); |
| 35 texture_ids->resize(count); |
| 36 gles2->GenTextures(count, &texture_ids->at(0)); |
| 37 for (int i = 0; i < count; ++i) { |
| 38 gles2->ActiveTexture(GL_TEXTURE0); |
| 39 uint32 texture_id = texture_ids->at(i); |
| 40 gles2->BindTexture(GL_TEXTURE_2D, texture_id); |
| 41 gles2->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
| 42 gles2->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); |
| 43 gles2->TexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
| 44 gles2->TexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); |
| 45 gles2->TexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, size.width(), size.height(), |
| 46 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); |
| 47 } |
| 48 DCHECK_EQ(gles2->GetError(), static_cast<GLenum>(GL_NO_ERROR)); |
| 49 return true; |
| 50 } |
| 51 |
| 52 bool RendererGpuVideoDecoderFactories::DeleteTexture(uint32 texture_id) { |
| 53 if (!context_) |
| 54 return false; |
| 55 gpu::gles2::GLES2Implementation* gles2 = context_->GetImplementation(); |
| 56 gles2->DeleteTextures(1, &texture_id); |
| 57 DCHECK_EQ(gles2->GetError(), static_cast<GLenum>(GL_NO_ERROR)); |
| 58 return true; |
| 59 } |
| 60 |
| 61 base::SharedMemory* RendererGpuVideoDecoderFactories::CreateSharedMemory( |
| 62 size_t size) { |
| 63 return ChildThread::current()->AllocateSharedMemory(size); |
| 64 } |
OLD | NEW |