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

Side by Side Diff: webrtc/media/base/videosinkinterface.h

Issue 1655793003: Make cricket::VideoCapturer implement VideoSourceInterface (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Adding VideoSourceInterface and letting cricket::VideoCapturer implement it Created 4 years, 10 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 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MEDIA_BASE_VIDEOSINKINTERFACE_H_ 11 #ifndef WEBRTC_MEDIA_BASE_VIDEOSINKINTERFACE_H_
12 #define WEBRTC_MEDIA_BASE_VIDEOSINKINTERFACE_H_ 12 #define WEBRTC_MEDIA_BASE_VIDEOSINKINTERFACE_H_
13 13
14 namespace rtc { 14 namespace rtc {
15 15
16 struct VideoSinkCapabilities {
17 bool can_apply_rotation_ = false;
pthatcher 2016/02/01 18:40:54 Shouldn't that be can_apply_rotation (no "_" on th
perkj_webrtc 2016/02/02 16:24:00 Done.
18 };
19
16 template <typename VideoFrameT> 20 template <typename VideoFrameT>
17 class VideoSinkInterface { 21 class VideoSinkInterface {
18 public: 22 public:
19 virtual void OnFrame(const VideoFrameT& frame) = 0; 23 virtual void OnFrame(const VideoFrameT& frame) = 0;
24 virtual VideoSinkCapabilities getCapabilities() { return VideoSinkCapabilitie s(); }
pthatcher 2016/02/01 18:40:54 These needs a SignalCapabilitiesChanged signal to
pthatcher 2016/02/01 18:40:54 Can you rename getCapabilities() to be just capabi
nisse-webrtc 2016/02/02 09:52:30 Will all flags really be capabilities, or is it be
nisse-webrtc 2016/02/02 09:52:30 I'm not sure what you mean by "signal" here. We re
perkj_webrtc 2016/02/02 16:24:00 I had not got that far yesterday but I would reall
20 25
21 protected: 26 protected:
22 ~VideoSinkInterface() {} 27 ~VideoSinkInterface() {}
23 }; 28 };
24 29
25 } // namespace rtc 30 } // namespace rtc
26 31
27 #endif // WEBRTC_MEDIA_BASE_VIDEOSINKINTERFACE_H_ 32 #endif // WEBRTC_MEDIA_BASE_VIDEOSINKINTERFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698