| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_CAPTURE_VIDEO_VIDEO_CAPTURE_BUFFER_HANDLE_H_ | 5 #ifndef MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_BUFFER_HANDLE_H_ |
| 6 #define MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_BUFFER_HANDLE_H_ | 6 #define MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_BUFFER_HANDLE_H_ |
| 7 | 7 |
| 8 #include "base/files/file.h" | 8 #include "base/files/file.h" |
| 9 #include "media/base/video_frame.h" |
| 9 #include "media/capture/capture_export.h" | 10 #include "media/capture/capture_export.h" |
| 10 #include "ui/gfx/geometry/size.h" | 11 #include "ui/gfx/geometry/size.h" |
| 11 #include "ui/gfx/gpu_memory_buffer.h" | 12 #include "ui/gfx/gpu_memory_buffer.h" |
| 12 | 13 |
| 13 namespace media { | 14 namespace media { |
| 14 | 15 |
| 15 // Abstraction of a pool's buffer data buffer and size for clients. | 16 // Abstraction of a pool's buffer data buffer and size for clients. |
| 16 class CAPTURE_EXPORT VideoCaptureBufferHandle { | 17 class CAPTURE_EXPORT VideoCaptureBufferHandle { |
| 17 public: | 18 public: |
| 18 virtual ~VideoCaptureBufferHandle() {} | 19 virtual ~VideoCaptureBufferHandle() {} |
| 19 virtual gfx::Size dimensions() const = 0; | 20 virtual gfx::Size dimensions() const = 0; |
| 20 virtual size_t mapped_size() const = 0; | 21 virtual size_t mapped_size() const = 0; |
| 21 virtual void* data(int plane) = 0; | 22 virtual void* data(int plane) = 0; |
| 22 virtual ClientBuffer AsClientBuffer(int plane) = 0; | |
| 23 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 23 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 24 virtual base::FileDescriptor AsPlatformFile() = 0; | 24 virtual base::FileDescriptor AsPlatformFile() = 0; |
| 25 #endif | 25 #endif |
| 26 virtual bool IsBackedByVideoFrame() const = 0; |
| 27 virtual scoped_refptr<VideoFrame> GetVideoFrame() = 0; |
| 26 }; | 28 }; |
| 27 | 29 |
| 28 } // namespace media | 30 } // namespace media |
| 29 | 31 |
| 30 #endif // MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_BUFFER_HANDLE_H_ | 32 #endif // MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_BUFFER_HANDLE_H_ |
| OLD | NEW |