|
create a separate WebMediaPlayer for URL derived from media stream
When the "src" of <video> is derived from media stream, WebMediaPlayerMS is created.
Its real time charateristics allows it to simplify some controls in WebMediaPlayer, e.g., no buffering, no preload, etc.
WebMediaPlayerMS has 2 different VideoFrameProviders: LocalVideoCapture(for local preview) and RTCVideoRender(for remote view).
Audio will be added in the following patches.
BUG= 142988, 110938
TEST=turn on WebMediaPlayer_MS, run apprtc.appspot.com/?debug=loopback
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=158490
Total comments: 84
Total comments: 18
Total comments: 14
Total comments: 2
Total comments: 2
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+1377 lines, -16 lines) |
Patch |
 |
M |
content/browser/renderer_host/render_process_host_impl.cc
|
View
|
1
2
3
4
5
6
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
content/content_renderer.gypi
|
View
|
1
2
3
4
5
6
|
2 chunks |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/public/common/content_switches.h
|
View
|
1
2
3
4
5
6
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
content/public/common/content_switches.cc
|
View
|
1
2
3
4
5
6
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
A |
content/renderer/media/local_video_capture.h
|
View
|
1
2
3
|
1 chunk |
+79 lines, -0 lines |
0 comments
|
Download
|
 |
A |
content/renderer/media/local_video_capture.cc
|
View
|
1
2
3
4
|
1 chunk |
+153 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/media/media_stream_impl.h
|
View
|
1
2
3
4
5
6
|
2 chunks |
+15 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/media/media_stream_impl.cc
|
View
|
1
2
3
4
5
6
|
3 chunks |
+92 lines, -0 lines |
0 comments
|
Download
|
 |
A |
content/renderer/media/rtc_video_renderer.h
|
View
|
1
2
3
|
1 chunk |
+73 lines, -0 lines |
0 comments
|
Download
|
 |
A |
content/renderer/media/rtc_video_renderer.cc
|
View
|
1
2
3
|
1 chunk |
+107 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/render_view_impl.cc
|
View
|
1
2
3
4
5
6
7
|
3 chunks |
+12 lines, -2 lines |
0 comments
|
Download
|
 |
M |
media/video/capture/video_capture.h
|
View
|
1
2
3
4
5
6
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
webkit/media/media_stream_client.h
|
View
|
1
2
3
4
5
6
|
2 chunks |
+10 lines, -0 lines |
0 comments
|
Download
|
 |
A |
webkit/media/simple_video_frame_provider.h
|
View
|
1
2
3
|
1 chunk |
+60 lines, -0 lines |
0 comments
|
Download
|
 |
A |
webkit/media/simple_video_frame_provider.cc
|
View
|
1
2
3
|
1 chunk |
+85 lines, -0 lines |
0 comments
|
Download
|
 |
A |
webkit/media/video_frame_provider.h
|
View
|
1
2
3
4
|
1 chunk |
+50 lines, -0 lines |
0 comments
|
Download
|
 |
A |
webkit/media/video_frame_provider.cc
|
View
|
|
1 chunk |
+13 lines, -0 lines |
0 comments
|
Download
|
 |
M |
webkit/media/webkit_media.gypi
|
View
|
1
2
3
4
5
6
|
1 chunk |
+6 lines, -0 lines |
0 comments
|
Download
|
 |
A |
webkit/media/webmediaplayer_ms.h
|
View
|
1
2
3
4
5
|
1 chunk |
+170 lines, -0 lines |
0 comments
|
Download
|
 |
A |
webkit/media/webmediaplayer_ms.cc
|
View
|
1
2
3
4
|
1 chunk |
+398 lines, -0 lines |
0 comments
|
Download
|
 |
M |
webkit/support/test_media_stream_client.h
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+8 lines, -13 lines |
0 comments
|
Download
|
 |
M |
webkit/support/test_media_stream_client.cc
|
View
|
1
2
3
4
5
6
|
2 chunks |
+24 lines, -1 line |
0 comments
|
Download
|
 |
M |
webkit/support/webkit_support.cc
|
View
|
1
2
3
4
5
6
|
2 chunks |
+11 lines, -0 lines |
0 comments
|
Download
|
Total messages: 13 (0 generated)
|