Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: content/renderer/renderer_gpu_video_decoder_factories.h

Issue 8686010: <video> decode in hardware! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop INTRA/CONSTRAINED in profile, add missing 'virtual', add MEDIA_EXPORT, fix RemoveFilter loop Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698