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

Issue 1844143002: Add VideoLayout message. (Closed)

Created:
4 years, 8 months ago by Sergey Ulanov
Modified:
4 years, 8 months ago
Reviewers:
Jamie
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, extensions-reviews_chromium.org, chromoting-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add VideoLayout message. Added new VideoLayout message that's sent from host to client when using WebRTC protocol. The message is used to notify the client about screen configuration. Currently both host and client support only a single video stream, but in the future the same VideoLayout message can be used to specify layout of multiple video streams. When using ICE protocol the message is not sent and instead it's generated on the client side by ClientVideoDispatcher. Committed: https://crrev.com/00a67b14ac400858d86fd572bf46490e22ff0f25 Cr-Commit-Position: refs/heads/master@{#384440}

Patch Set 1 #

Patch Set 2 : #

Total comments: 8

Patch Set 3 : #

Total comments: 2

Patch Set 4 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+238 lines, -75 lines) Patch
M remoting/base/constants.h View 1 chunk +2 lines, -0 lines 0 comments Download
M remoting/client/chromoting_client.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/client/chromoting_client.cc View 1 2 3 3 chunks +23 lines, -0 lines 0 comments Download
M remoting/client/client_user_interface.h View 1 2 2 chunks +10 lines, -0 lines 0 comments Download
M remoting/client/jni/chromoting_jni_instance.h View 1 chunk +2 lines, -0 lines 0 comments Download
M remoting/client/jni/chromoting_jni_instance.cc View 1 1 chunk +6 lines, -0 lines 0 comments Download
M remoting/client/plugin/chromoting_instance.h View 2 chunks +2 lines, -2 lines 0 comments Download
M remoting/client/plugin/chromoting_instance.cc View 1 2 2 chunks +15 lines, -15 lines 0 comments Download
M remoting/client/plugin/pepper_video_renderer.h View 1 chunk +0 lines, -4 lines 0 comments Download
M remoting/client/plugin/pepper_video_renderer_2d.h View 1 chunk +0 lines, -3 lines 0 comments Download
M remoting/client/plugin/pepper_video_renderer_2d.cc View 1 chunk +0 lines, -8 lines 0 comments Download
M remoting/client/plugin/pepper_video_renderer_3d.h View 1 chunk +0 lines, -1 line 0 comments Download
M remoting/client/plugin/pepper_video_renderer_3d.cc View 1 chunk +2 lines, -20 lines 0 comments Download
M remoting/host/client_session.h View 1 chunk +2 lines, -1 line 0 comments Download
M remoting/host/client_session.cc View 4 chunks +18 lines, -5 lines 0 comments Download
M remoting/host/client_session_unittest.cc View 1 chunk +2 lines, -1 line 0 comments Download
M remoting/host/security_key/gnubby_extension_session_unittest.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M remoting/proto/control.proto View 1 chunk +24 lines, -1 line 0 comments Download
M remoting/proto/internal.proto View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/protocol/client_control_dispatcher.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M remoting/protocol/client_stub.h View 2 chunks +4 lines, -0 lines 0 comments Download
M remoting/protocol/client_video_dispatcher.h View 2 chunks +9 lines, -1 line 0 comments Download
M remoting/protocol/client_video_dispatcher.cc View 3 chunks +43 lines, -1 line 0 comments Download
M remoting/protocol/client_video_dispatcher_unittest.cc View 4 chunks +34 lines, -1 line 0 comments Download
M remoting/protocol/host_control_dispatcher.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/protocol/host_control_dispatcher.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M remoting/protocol/ice_connection_to_host.cc View 1 chunk +1 line, -1 line 0 comments Download
M remoting/protocol/protocol_mock_objects.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/protocol/video_frame_pump.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/protocol/video_frame_pump.cc View 1 chunk +4 lines, -2 lines 0 comments Download
M remoting/protocol/video_stream.h View 2 chunks +6 lines, -2 lines 0 comments Download
M remoting/protocol/webrtc_video_capturer_adapter.h View 1 2 3 chunks +3 lines, -4 lines 0 comments Download
M remoting/protocol/webrtc_video_capturer_adapter.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M remoting/test/protocol_perftest.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M remoting/test/test_chromoting_client.h View 1 chunk +2 lines, -0 lines 0 comments Download
M remoting/test/test_chromoting_client.cc View 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 12 (4 generated)
Sergey Ulanov
4 years, 8 months ago (2016-03-30 23:25:55 UTC) #2
Jamie
https://codereview.chromium.org/1844143002/diff/20001/remoting/client/chromoting_client.cc File remoting/client/chromoting_client.cc (right): https://codereview.chromium.org/1844143002/diff/20001/remoting/client/chromoting_client.cc#newcode153 remoting/client/chromoting_client.cc:153: if (layout.video_track_size() < 1) { I assume that the ...
4 years, 8 months ago (2016-03-31 00:35:53 UTC) #3
Sergey Ulanov
https://codereview.chromium.org/1844143002/diff/20001/remoting/client/chromoting_client.cc File remoting/client/chromoting_client.cc (right): https://codereview.chromium.org/1844143002/diff/20001/remoting/client/chromoting_client.cc#newcode153 remoting/client/chromoting_client.cc:153: if (layout.video_track_size() < 1) { On 2016/03/31 00:35:53, Jamie ...
4 years, 8 months ago (2016-03-31 06:25:14 UTC) #4
Jamie
lgtm https://codereview.chromium.org/1844143002/diff/40001/remoting/client/chromoting_client.cc File remoting/client/chromoting_client.cc (right): https://codereview.chromium.org/1844143002/diff/40001/remoting/client/chromoting_client.cc#newcode159 remoting/client/chromoting_client.cc:159: if (layout.video_track_size() > 2) { Replace this call ...
4 years, 8 months ago (2016-03-31 22:36:44 UTC) #5
Sergey Ulanov
https://codereview.chromium.org/1844143002/diff/40001/remoting/client/chromoting_client.cc File remoting/client/chromoting_client.cc (right): https://codereview.chromium.org/1844143002/diff/40001/remoting/client/chromoting_client.cc#newcode159 remoting/client/chromoting_client.cc:159: if (layout.video_track_size() > 2) { On 2016/03/31 22:36:44, Jamie ...
4 years, 8 months ago (2016-03-31 23:05:25 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1844143002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1844143002/60001
4 years, 8 months ago (2016-03-31 23:06:23 UTC) #9
commit-bot: I haz the power
Committed patchset #4 (id:60001)
4 years, 8 months ago (2016-04-01 00:07:09 UTC) #10
commit-bot: I haz the power
4 years, 8 months ago (2016-04-01 00:09:41 UTC) #12
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/00a67b14ac400858d86fd572bf46490e22ff0f25
Cr-Commit-Position: refs/heads/master@{#384440}

Powered by Google App Engine
This is Rietveld 408576698