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

Side by Side Diff: content/renderer/media/webrtc/webrtc_video_frame_adapter.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 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
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_
OLDNEW
« no previous file with comments | « content/renderer/media/webrtc/webrtc_video_capturer_adapter.cc ('k') | content/renderer/media/webrtc_audio_capturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698