OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_VIDEO_FRAME_ADAPTER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_VIDEO_FRAME_ADAPTER_H_ |
6 #define CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_VIDEO_FRAME_ADAPTER_H_ | 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_VIDEO_FRAME_ADAPTER_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include "media/base/video_frame.h" | 10 #include "media/base/video_frame.h" |
9 #include "third_party/webrtc/common_video/include/video_frame_buffer.h" | 11 #include "third_party/webrtc/common_video/include/video_frame_buffer.h" |
10 | 12 |
11 namespace content { | 13 namespace content { |
12 // Thin adapter from media::VideoFrame to webrtc::VideoFrameBuffer. This | 14 // Thin adapter from media::VideoFrame to webrtc::VideoFrameBuffer. This |
13 // implementation is read-only and will return null if trying to get a | 15 // implementation is read-only and will return null if trying to get a |
14 // non-const pointer to the pixel data. This object will be accessed from | 16 // non-const pointer to the pixel data. This object will be accessed from |
15 // different threads, but that's safe since it's read-only. | 17 // different threads, but that's safe since it's read-only. |
16 class WebRtcVideoFrameAdapter : public webrtc::VideoFrameBuffer { | 18 class WebRtcVideoFrameAdapter : public webrtc::VideoFrameBuffer { |
17 public: | 19 public: |
(...skipping 16 matching lines...) Expand all Loading... |
34 | 36 |
35 protected: | 37 protected: |
36 ~WebRtcVideoFrameAdapter() override; | 38 ~WebRtcVideoFrameAdapter() override; |
37 | 39 |
38 scoped_refptr<media::VideoFrame> frame_; | 40 scoped_refptr<media::VideoFrame> frame_; |
39 }; | 41 }; |
40 | 42 |
41 } // namespace content | 43 } // namespace content |
42 | 44 |
43 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_VIDEO_FRAME_ADAPTER_H_ | 45 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_VIDEO_FRAME_ADAPTER_H_ |
OLD | NEW |