Index: webrtc/examples/peerconnection/client/main_wnd.h |
diff --git a/webrtc/examples/peerconnection/client/main_wnd.h b/webrtc/examples/peerconnection/client/main_wnd.h |
index 03db80d0b6d693b9e28624ef301cfa10ca19b436..543b7ce573560996cfc20a5771eebcf1236d46f9 100644 |
--- a/webrtc/examples/peerconnection/client/main_wnd.h |
+++ b/webrtc/examples/peerconnection/client/main_wnd.h |
@@ -21,7 +21,7 @@ |
#include "webrtc/examples/peerconnection/client/peer_connection_client.h" |
#include "webrtc/media/base/mediachannel.h" |
#include "webrtc/media/base/videocommon.h" |
-#include "webrtc/media/base/videoframe.h" |
+#include "webrtc/video_frame.h" |
class MainWndCallback { |
public: |
@@ -102,7 +102,7 @@ class MainWnd : public MainWindow { |
HWND handle() const { return wnd_; } |
- class VideoRenderer : public rtc::VideoSinkInterface<cricket::VideoFrame> { |
+ class VideoRenderer : public rtc::VideoSinkInterface<webrtc::VideoFrame> { |
public: |
VideoRenderer(HWND wnd, int width, int height, |
webrtc::VideoTrackInterface* track_to_render); |
@@ -117,7 +117,7 @@ class MainWnd : public MainWindow { |
} |
// VideoSinkInterface implementation |
- void OnFrame(const cricket::VideoFrame& frame) override; |
+ void OnFrame(const webrtc::VideoFrame& frame) override; |
const BITMAPINFO& bmi() const { return bmi_; } |
const uint8_t* image() const { return image_.get(); } |