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 #ifndef CONTENT_RENDERER_RENDERER_GPU_VIDEO_DECODER_FACTORIES_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_GPU_VIDEO_DECODER_FACTORIES_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "base/basictypes.h" |
| 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/weak_ptr.h" |
| 12 #include "content/common/content_export.h" |
| 13 #include "media/filters/gpu_video_decoder.h" |
| 14 #include "ui/gfx/size.h" |
| 15 |
| 16 class GpuChannelHost; |
| 17 class RendererGLContext; |
| 18 |
| 19 // Glue code to expose functionality needed by media::GpuVideoDecoder to |
| 20 // RenderViewImpl. This class is entirely an implementation detail of |
| 21 // RenderViewImpl and only has its own header to allow extraction of its |
| 22 // implementation from render_view_impl.cc which is already far too large. |
| 23 class CONTENT_EXPORT RendererGpuVideoDecoderFactories |
| 24 : public media::GpuVideoDecoder::Factories { |
| 25 public: |
| 26 // Takes a ref on |gpu_channel_host| and tests |context| for NULL before each |
| 27 // use. |
| 28 RendererGpuVideoDecoderFactories(GpuChannelHost* gpu_channel_host, |
| 29 base::WeakPtr<RendererGLContext> context); |
| 30 |
| 31 virtual ~RendererGpuVideoDecoderFactories(); |
| 32 |
| 33 virtual media::VideoDecodeAccelerator* CreateVideoDecodeAccelerator( |
| 34 media::VideoDecodeAccelerator::Profile profile, |
| 35 media::VideoDecodeAccelerator::Client* client) OVERRIDE; |
| 36 |
| 37 virtual bool CreateTextures(int32 count, const gfx::Size& size, |
| 38 std::vector<uint32>* texture_ids) OVERRIDE; |
| 39 |
| 40 virtual bool DeleteTexture(uint32 texture_id) OVERRIDE; |
| 41 |
| 42 virtual base::SharedMemory* CreateSharedMemory(size_t size) OVERRIDE; |
| 43 |
| 44 private: |
| 45 scoped_refptr<GpuChannelHost> gpu_channel_host_; |
| 46 base::WeakPtr<RendererGLContext> context_; |
| 47 DISALLOW_IMPLICIT_CONSTRUCTORS(RendererGpuVideoDecoderFactories); |
| 48 }; |
| 49 |
| 50 #endif // CONTENT_RENDERER_RENDERER_GPU_VIDEO_DECODER_FACTORIES_H_ |
OLD | NEW |