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

Side by Side Diff: webrtc/api/videotrack_unittest.cc

Issue 1691463002: Move talk/session/media -> webrtc/pc (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Last rebase 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
« no previous file with comments | « webrtc/api/videosource_unittest.cc ('k') | webrtc/api/webrtcsdp.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2012 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 #include <string> 11 #include <string>
12 12
13 #include "talk/session/media/channelmanager.h"
14 #include "webrtc/api/remotevideocapturer.h" 13 #include "webrtc/api/remotevideocapturer.h"
15 #include "webrtc/api/test/fakevideotrackrenderer.h" 14 #include "webrtc/api/test/fakevideotrackrenderer.h"
16 #include "webrtc/api/videosource.h" 15 #include "webrtc/api/videosource.h"
17 #include "webrtc/api/videotrack.h" 16 #include "webrtc/api/videotrack.h"
18 #include "webrtc/base/gunit.h" 17 #include "webrtc/base/gunit.h"
19 #include "webrtc/base/scoped_ptr.h" 18 #include "webrtc/base/scoped_ptr.h"
20 #include "webrtc/media/base/fakemediaengine.h" 19 #include "webrtc/media/base/fakemediaengine.h"
21 #include "webrtc/media/engine/webrtcvideoframe.h" 20 #include "webrtc/media/engine/webrtcvideoframe.h"
21 #include "webrtc/pc/channelmanager.h"
22 22
23 using webrtc::FakeVideoTrackRenderer; 23 using webrtc::FakeVideoTrackRenderer;
24 using webrtc::VideoSource; 24 using webrtc::VideoSource;
25 using webrtc::VideoTrack; 25 using webrtc::VideoTrack;
26 using webrtc::VideoTrackInterface; 26 using webrtc::VideoTrackInterface;
27 27
28 namespace { 28 namespace {
29 29
30 class WebRtcVideoTestFrame : public cricket::WebRtcVideoFrame { 30 class WebRtcVideoTestFrame : public cricket::WebRtcVideoFrame {
31 public: 31 public:
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 EXPECT_EQ(100, renderer->width()); 120 EXPECT_EQ(100, renderer->width());
121 EXPECT_EQ(200, renderer->height()); 121 EXPECT_EQ(200, renderer->height());
122 122
123 video_track_->set_enabled(true); 123 video_track_->set_enabled(true);
124 renderer_input->OnFrame(frame); 124 renderer_input->OnFrame(frame);
125 EXPECT_EQ(3, renderer->num_rendered_frames()); 125 EXPECT_EQ(3, renderer->num_rendered_frames());
126 EXPECT_FALSE(renderer->black_frame()); 126 EXPECT_FALSE(renderer->black_frame());
127 EXPECT_EQ(100, renderer->width()); 127 EXPECT_EQ(100, renderer->width());
128 EXPECT_EQ(200, renderer->height()); 128 EXPECT_EQ(200, renderer->height());
129 } 129 }
OLDNEW
« no previous file with comments | « webrtc/api/videosource_unittest.cc ('k') | webrtc/api/webrtcsdp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698