Index: webrtc/examples/peerconnection/client/linux/main_wnd.h |
diff --git a/webrtc/examples/peerconnection/client/linux/main_wnd.h b/webrtc/examples/peerconnection/client/linux/main_wnd.h |
index a7eb25e9b1ea7ffa18ba1aaf6e1d6b308087e64a..29db8387397f64c4ce02b8c20f81fbf62c1358f0 100644 |
--- a/webrtc/examples/peerconnection/client/linux/main_wnd.h |
+++ b/webrtc/examples/peerconnection/client/linux/main_wnd.h |
@@ -77,9 +77,10 @@ class GtkMainWnd : public MainWindow { |
webrtc::VideoTrackInterface* track_to_render); |
virtual ~VideoRenderer(); |
- // VideoRendererInterface implementation |
- virtual void SetSize(int width, int height); |
- virtual void OnFrame(const cricket::VideoFrame& frame); |
+ // VideoSinkInterface implementation |
+ void OnFrame(const cricket::VideoFrame& frame) override; |
+ |
+ void SetSize(int width, int height); |
pthatcher1
2016/03/18 17:00:58
Is anything ever going to call this?
nisse-webrtc
2016/03/21 08:37:56
It's called by OnFrame. But there's no need for it
|
const uint8_t* image() const { return image_.get(); } |