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

Side by Side Diff: media/renderers/mock_gpu_video_accelerator_factories.h

Issue 2398463003: 16 bit capture and GPU&CPU memory buffer support.
Patch Set: fixes. Created 4 years, 2 months 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef MEDIA_RENDERERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ 5 #ifndef MEDIA_RENDERERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_
6 #define MEDIA_RENDERERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ 6 #define MEDIA_RENDERERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 MOCK_METHOD0(GetVideoEncodeAcceleratorSupportedProfiles, 50 MOCK_METHOD0(GetVideoEncodeAcceleratorSupportedProfiles,
51 VideoEncodeAccelerator::SupportedProfiles()); 51 VideoEncodeAccelerator::SupportedProfiles());
52 52
53 std::unique_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer( 53 std::unique_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer(
54 const gfx::Size& size, 54 const gfx::Size& size,
55 gfx::BufferFormat format, 55 gfx::BufferFormat format,
56 gfx::BufferUsage usage) override; 56 gfx::BufferUsage usage) override;
57 57
58 bool ShouldUseGpuMemoryBuffersForVideoFrames() const override; 58 bool ShouldUseGpuMemoryBuffersForVideoFrames() const override;
59 unsigned ImageTextureTarget(gfx::BufferFormat format) override; 59 unsigned ImageTextureTarget(gfx::BufferFormat format) override;
60 VideoPixelFormat VideoFrameOutputFormat() override { 60 VideoPixelFormat VideoFrameOutputFormat(VideoPixelFormat) override {
61 return video_frame_output_format_; 61 return video_frame_output_format_;
62 }; 62 };
63 63
64 std::unique_ptr<GpuVideoAcceleratorFactories::ScopedGLContextLock> 64 std::unique_ptr<GpuVideoAcceleratorFactories::ScopedGLContextLock>
65 GetGLContextLock() override; 65 GetGLContextLock() override;
66 66
67 void SetVideoFrameOutputFormat( 67 void SetVideoFrameOutputFormat(
68 const VideoPixelFormat video_frame_output_format) { 68 const VideoPixelFormat video_frame_output_format) {
69 video_frame_output_format_ = video_frame_output_format; 69 video_frame_output_format_ = video_frame_output_format;
70 }; 70 };
(...skipping 21 matching lines...) Expand all
92 VideoPixelFormat video_frame_output_format_ = PIXEL_FORMAT_I420; 92 VideoPixelFormat video_frame_output_format_ = PIXEL_FORMAT_I420;
93 93
94 bool fail_to_allocate_gpu_memory_buffer_ = false; 94 bool fail_to_allocate_gpu_memory_buffer_ = false;
95 95
96 gpu::gles2::GLES2Interface* gles2_; 96 gpu::gles2::GLES2Interface* gles2_;
97 }; 97 };
98 98
99 } // namespace media 99 } // namespace media
100 100
101 #endif // MEDIA_RENDERERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ 101 #endif // MEDIA_RENDERERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_
OLDNEW
« no previous file with comments | « media/renderers/gpu_video_accelerator_factories.h ('k') | media/video/gpu_memory_buffer_video_frame_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698