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

Issue 112133002: Cast:Moving netwrok sender related code to a designated folder (Closed)

Created:
7 years ago by mikhal1
Modified:
7 years ago
Reviewers:
pwestin
CC:
chromium-reviews, feature-media-reviews_chromium.org, cbentzel+watch_chromium.org, miu+watch_chromium.org
Visibility:
Public.

Description

Cast:Moving netwrok sender related code to a designated folder This cl is a first step in splitting up the cast library. At the end of this effort, the cast sender will be split into two: Generic protocol and encoding remain as is, all handling of coded frames to transmission will be in a designated folder (currently named net). This cl ONLY handles the moving of the files. Future cl's will include: - New cast_net API - Adding RTCP handling - Designated target (and namespace) BUG=327482 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=240166

Patch Set 1 #

Total comments: 8

Patch Set 2 : Responding to review #

Total comments: 2

Patch Set 3 : Removing dups #

Patch Set 4 : moving const' to .cc #

Unified diffs Side-by-side diffs Delta from patch set Stats (+274 lines, -2097 lines) Patch
M media/cast/README View 2 chunks +2 lines, -2 lines 0 comments Download
M media/cast/audio_receiver/audio_decoder.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/audio_receiver/audio_receiver.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/audio_receiver/audio_receiver_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/audio_sender/audio_sender.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/audio_sender/audio_sender.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M media/cast/audio_sender/audio_sender.gypi View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/audio_sender/audio_sender_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/cast.gyp View 1 2 2 chunks +10 lines, -10 lines 0 comments Download
M media/cast/cast_defines.h View 2 chunks +1 line, -64 lines 0 comments Download
M media/cast/cast_receiver.gyp View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/cast_receiver_impl.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/cast_sender.gyp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M media/cast/cast_sender_impl.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/framer/cast_message_builder.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/framer/cast_message_builder_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/framer/frame_buffer.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/framer/frame_id_map.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/framer/frame_id_map.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/framer/framer.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/framer/framer_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
A media/cast/net/cast_net_defines.h View 1 chunk +81 lines, -0 lines 0 comments Download
A + media/cast/net/frame_id_wrap_helper_test.cc View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/net/pacing/mock_paced_packet_sender.h View 2 chunks +4 lines, -4 lines 0 comments Download
A + media/cast/net/pacing/mock_paced_packet_sender.cc View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/net/pacing/paced_sender.h View 2 chunks +3 lines, -3 lines 0 comments Download
A + media/cast/net/pacing/paced_sender.cc View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/net/pacing/paced_sender.gyp View 0 chunks +-1 lines, --1 lines 0 comments Download
A + media/cast/net/pacing/paced_sender_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/net/rtp_sender/mock_rtp_sender.h View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/net/rtp_sender/packet_storage/packet_storage.h View 2 chunks +3 lines, -3 lines 0 comments Download
A + media/cast/net/rtp_sender/packet_storage/packet_storage.cc View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/net/rtp_sender/packet_storage/packet_storage.gyp View 0 chunks +-1 lines, --1 lines 0 comments Download
A + media/cast/net/rtp_sender/packet_storage/packet_storage_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/net/rtp_sender/rtp_packetizer/rtp_packetizer.h View 2 chunks +5 lines, -6 lines 0 comments Download
A + media/cast/net/rtp_sender/rtp_packetizer/rtp_packetizer.cc View 1 chunk +2 lines, -2 lines 0 comments Download
A + media/cast/net/rtp_sender/rtp_packetizer/rtp_packetizer.gyp View 0 chunks +-1 lines, --1 lines 0 comments Download
A + media/cast/net/rtp_sender/rtp_packetizer/rtp_packetizer_config.h View 2 chunks +4 lines, -4 lines 0 comments Download
A + media/cast/net/rtp_sender/rtp_packetizer/rtp_packetizer_config.cc View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/net/rtp_sender/rtp_packetizer/rtp_packetizer_unittest.cc View 3 chunks +14 lines, -15 lines 0 comments Download
A media/cast/net/rtp_sender/rtp_packetizer/test/rtp_header_parser.h View 1 2 3 1 chunk +60 lines, -0 lines 0 comments Download
A + media/cast/net/rtp_sender/rtp_packetizer/test/rtp_header_parser.cc View 1 2 3 4 chunks +29 lines, -13 lines 0 comments Download
A + media/cast/net/rtp_sender/rtp_sender.h View 3 chunks +6 lines, -6 lines 0 comments Download
A + media/cast/net/rtp_sender/rtp_sender.cc View 1 chunk +2 lines, -2 lines 0 comments Download
A + media/cast/net/rtp_sender/rtp_sender.gyp View 0 chunks +-1 lines, --1 lines 0 comments Download
D media/cast/pacing/mock_paced_packet_sender.h View 1 chunk +0 lines, -27 lines 0 comments Download
D media/cast/pacing/mock_paced_packet_sender.cc View 1 chunk +0 lines, -17 lines 0 comments Download
D media/cast/pacing/paced_sender.h View 1 chunk +0 lines, -83 lines 0 comments Download
D media/cast/pacing/paced_sender.cc View 1 chunk +0 lines, -148 lines 0 comments Download
D media/cast/pacing/paced_sender.gyp View 1 chunk +0 lines, -22 lines 0 comments Download
D media/cast/pacing/paced_sender_unittest.cc View 1 chunk +0 lines, -257 lines 0 comments Download
M media/cast/rtcp/rtcp_receiver.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/cast/rtcp/rtcp_sender.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtcp/rtcp_sender_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtcp/rtcp_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
D media/cast/rtp_common/mock_rtp_payload_feedback.h View 1 chunk +0 lines, -26 lines 0 comments Download
D media/cast/rtp_common/mock_rtp_payload_feedback.cc View 1 chunk +0 lines, -17 lines 0 comments Download
D media/cast/rtp_common/rtp_defines.h View 1 chunk +0 lines, -48 lines 0 comments Download
A + media/cast/rtp_receiver/mock_rtp_payload_feedback.h View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/rtp_receiver/mock_rtp_payload_feedback.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtp_receiver/receiver_stats.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtp_receiver/receiver_stats.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtp_receiver/receiver_stats_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtp_receiver/rtp_parser/rtp_parser.h View 1 chunk +2 lines, -1 line 0 comments Download
M media/cast/rtp_receiver/rtp_parser/rtp_parser_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtp_receiver/rtp_parser/test/rtp_packet_builder.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtp_receiver/rtp_receiver.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtp_receiver/rtp_receiver.cc View 1 chunk +1 line, -1 line 0 comments Download
A + media/cast/rtp_receiver/rtp_receiver_defines.h View 2 chunks +3 lines, -3 lines 0 comments Download
D media/cast/rtp_sender/mock_rtp_sender.h View 1 chunk +0 lines, -34 lines 0 comments Download
D media/cast/rtp_sender/packet_storage/packet_storage.h View 1 chunk +0 lines, -55 lines 0 comments Download
D media/cast/rtp_sender/packet_storage/packet_storage.cc View 1 chunk +0 lines, -174 lines 0 comments Download
D media/cast/rtp_sender/packet_storage/packet_storage.gyp View 1 chunk +0 lines, -23 lines 0 comments Download
D media/cast/rtp_sender/packet_storage/packet_storage_unittest.cc View 1 chunk +0 lines, -110 lines 0 comments Download
D media/cast/rtp_sender/rtp_packetizer/rtp_packetizer.h View 1 chunk +0 lines, -74 lines 0 comments Download
D media/cast/rtp_sender/rtp_packetizer/rtp_packetizer.cc View 1 chunk +0 lines, -153 lines 0 comments Download
D media/cast/rtp_sender/rtp_packetizer/rtp_packetizer.gyp View 1 chunk +0 lines, -27 lines 0 comments Download
D media/cast/rtp_sender/rtp_packetizer/rtp_packetizer_config.h View 1 chunk +0 lines, -39 lines 0 comments Download
D media/cast/rtp_sender/rtp_packetizer/rtp_packetizer_config.cc View 1 chunk +0 lines, -21 lines 0 comments Download
D media/cast/rtp_sender/rtp_packetizer/rtp_packetizer_unittest.cc View 1 chunk +0 lines, -154 lines 0 comments Download
D media/cast/rtp_sender/rtp_packetizer/test/rtp_header_parser.h View 1 chunk +0 lines, -35 lines 0 comments Download
D media/cast/rtp_sender/rtp_packetizer/test/rtp_header_parser.cc View 1 chunk +0 lines, -87 lines 0 comments Download
D media/cast/rtp_sender/rtp_sender.h View 1 chunk +0 lines, -66 lines 0 comments Download
D media/cast/rtp_sender/rtp_sender.cc View 1 chunk +0 lines, -145 lines 0 comments Download
D media/cast/rtp_sender/rtp_sender.gyp View 1 chunk +0 lines, -26 lines 0 comments Download
D media/cast/test/frame_id_wrap_helper_test.cc View 1 chunk +0 lines, -48 lines 0 comments Download
M media/cast/video_receiver/video_receiver.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/video_receiver/video_receiver_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/video_sender/codecs/vp8/vp8_encoder.cc View 1 chunk +0 lines, -1 line 0 comments Download
M media/cast/video_sender/video_sender.h View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/video_sender/video_sender.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M media/cast/video_sender/video_sender.gypi View 1 chunk +1 line, -1 line 0 comments Download
M media/cast/video_sender/video_sender_unittest.cc View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
mikhal1
Please review, -Mikhal
7 years ago (2013-12-10 22:43:48 UTC) #1
pwestin
Some questions https://chromiumcodereview.appspot.com/112133002/diff/1/media/cast/cast.gyp File media/cast/cast.gyp (right): https://chromiumcodereview.appspot.com/112133002/diff/1/media/cast/cast.gyp#newcode69 media/cast/cast.gyp:69: 'net/pacing/mock_paced_packet_sender.cc', can you make all net/ to ...
7 years ago (2013-12-10 23:03:00 UTC) #2
mikhal1
PTAL https://chromiumcodereview.appspot.com/112133002/diff/1/media/cast/cast.gyp File media/cast/cast.gyp (right): https://chromiumcodereview.appspot.com/112133002/diff/1/media/cast/cast.gyp#newcode69 media/cast/cast.gyp:69: 'net/pacing/mock_paced_packet_sender.cc', On 2013/12/10 23:03:01, pwestin wrote: > can ...
7 years ago (2013-12-11 00:29:33 UTC) #3
pwestin
please remove duplicates in the gyp file https://chromiumcodereview.appspot.com/112133002/diff/20001/media/cast/cast.gyp File media/cast/cast.gyp (right): https://chromiumcodereview.appspot.com/112133002/diff/20001/media/cast/cast.gyp#newcode97 media/cast/cast.gyp:97: 'net/pacing/paced_sender_unittest.cc', these ...
7 years ago (2013-12-11 01:24:27 UTC) #4
mikhal1
PTAL https://chromiumcodereview.appspot.com/112133002/diff/20001/media/cast/cast.gyp File media/cast/cast.gyp (right): https://chromiumcodereview.appspot.com/112133002/diff/20001/media/cast/cast.gyp#newcode97 media/cast/cast.gyp:97: 'net/pacing/paced_sender_unittest.cc', On 2013/12/11 01:24:28, pwestin wrote: > these ...
7 years ago (2013-12-11 16:14:12 UTC) #5
pwestin
lgtm
7 years ago (2013-12-11 16:15:19 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mikhal@chromium.org/112133002/40001
7 years ago (2013-12-11 16:15:32 UTC) #7
commit-bot: I haz the power
Retried try job too often on linux_chromeos_clang for step(s) compile http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_chromeos_clang&number=62657
7 years ago (2013-12-11 17:16:02 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mikhal@chromium.org/112133002/60001
7 years ago (2013-12-11 18:12:13 UTC) #9
commit-bot: I haz the power
7 years ago (2013-12-11 20:23:50 UTC) #10
Message was sent while issue was closed.
Change committed as 240166

Powered by Google App Engine
This is Rietveld 408576698