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

Issue 2685783014: Replace NULL with nullptr in all C++ files. (Closed)

Created:
3 years, 10 months ago by Taylor Brandstetter
Modified:
3 years, 6 months ago
Reviewers:
tommi
CC:
webrtc-reviews_webrtc.org, yujie_mao (webrtc), zhuangzesen_agora.io, tlegrand-webrtc, qiang.lu, peah-webrtc, bjornv1, video-team_agora.io, tterriberry_mozilla.com, fengyue_agora.io, sdk-team_agora.io, minyue-webrtc, mflodman, Andrew MacDonald, zhengzhonghou_agora.io, stefan-webrtc, kwiberg-webrtc, danilchap, henrika_webrtc, audio-team_agora.io, hlundin-webrtc, niklas.enbom, the sun, perkj_webrtc, aluebs-webrtc
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Replace NULL with nullptr in all C++ files. This matches our style guide, and eliminates the current inconsistency, which can cause (very slight) lost productivity. This CL *doesn't* replace NULL with nullptr in comments or log statements, for two reasons. One, it often sounds more clunky. "If this argument is null..." vs. "If this argument is nullptr..." Also, since "nullptr" takes 3 more characters, it messes up line wrapping. So, instead, "NULL" is replaced with "null" in comments, now referring to the abstract concept of nullness rather than the NULL constant. BUG=webrtc:7147

Patch Set 1 #

Patch Set 2 : Fix strings, and mac/windows specific issues. #

Patch Set 3 : Fixing android. #

Total comments: 4
Unified diffs Side-by-side diffs Delta from patch set Stats (+6962 lines, -7453 lines) Patch
M webrtc/api/statstypes.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/audio/audio_receive_stream.cc View 1 2 1 chunk +1 line, -1 line 2 comments Download
M webrtc/audio/audio_receive_stream_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/audio/audio_send_stream_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/asyncinvoker.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/asyncsocket.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/asynctcpsocket.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M webrtc/base/asyncudpsocket.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/autodetectproxy.cc View 1 2 4 chunks +4 lines, -5 lines 0 comments Download
M webrtc/base/autodetectproxy_unittest.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/base64.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/base64_unittest.cc View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/base/bitbuffer.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/base/bitbuffer_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/base/bytebuffer.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/base/checks.cc View 1 2 2 chunks +4 lines, -3 lines 0 comments Download
M webrtc/base/common.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/diskcache.cc View 1 2 5 chunks +10 lines, -10 lines 0 comments Download
M webrtc/base/event.cc View 1 2 3 chunks +6 lines, -7 lines 2 comments Download
M webrtc/base/event_tracer_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/fileutils.cc View 1 2 4 chunks +6 lines, -6 lines 0 comments Download
M webrtc/base/fileutils_unittest.cc View 1 2 3 chunks +8 lines, -8 lines 0 comments Download
M webrtc/base/firewallsocketserver.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/flags.cc View 1 2 7 chunks +15 lines, -17 lines 0 comments Download
M webrtc/base/httpbase.cc View 1 2 11 chunks +22 lines, -19 lines 0 comments Download
M webrtc/base/httpbase_unittest.cc View 1 2 8 chunks +15 lines, -12 lines 0 comments Download
M webrtc/base/httpclient.cc View 1 2 16 chunks +38 lines, -33 lines 0 comments Download
M webrtc/base/httpcommon.cc View 1 2 5 chunks +9 lines, -9 lines 0 comments Download
M webrtc/base/httpserver.cc View 1 2 8 chunks +14 lines, -12 lines 0 comments Download
M webrtc/base/httpserver_unittest.cc View 1 2 4 chunks +4 lines, -4 lines 0 comments Download
M webrtc/base/ifaddrs-android.cc View 1 2 5 chunks +6 lines, -6 lines 0 comments Download
M webrtc/base/logging.cc View 1 2 8 chunks +14 lines, -10 lines 0 comments Download
M webrtc/base/logging_unittest.cc View 1 2 6 chunks +8 lines, -8 lines 0 comments Download
M webrtc/base/macconversion.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/macutils.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/messagedigest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/messagequeue.cc View 1 2 5 chunks +6 lines, -6 lines 0 comments Download
M webrtc/base/messagequeue_unittest.cc View 1 2 2 chunks +7 lines, -7 lines 0 comments Download
M webrtc/base/nat_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/natsocketfactory.cc View 1 2 9 chunks +15 lines, -12 lines 0 comments Download
M webrtc/base/nethelpers.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/network.cc View 1 2 5 chunks +9 lines, -8 lines 0 comments Download
M webrtc/base/openssladapter.cc View 1 2 19 chunks +56 lines, -64 lines 0 comments Download
M webrtc/base/openssldigest.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/base/opensslidentity.cc View 1 2 13 chunks +28 lines, -28 lines 0 comments Download
M webrtc/base/opensslstreamadapter.cc View 1 2 13 chunks +78 lines, -94 lines 0 comments Download
M webrtc/base/optionsfile_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/pathutils.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/physicalsocketserver.cc View 1 2 6 chunks +8 lines, -8 lines 0 comments Download
M webrtc/base/physicalsocketserver_unittest.cc View 1 2 4 chunks +5 lines, -5 lines 0 comments Download
M webrtc/base/platform_file.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/base/platform_thread.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/proxy_unittest.cc View 1 2 4 chunks +5 lines, -7 lines 0 comments Download
M webrtc/base/proxydetect.cc View 1 2 11 chunks +15 lines, -20 lines 0 comments Download
M webrtc/base/proxyserver.cc View 1 2 6 chunks +7 lines, -7 lines 0 comments Download
M webrtc/base/sharedexclusivelock_unittest.cc View 1 2 4 chunks +4 lines, -4 lines 0 comments Download
M webrtc/base/signalthread.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/signalthread_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/sigslot.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/sigslot_unittest.cc View 1 2 2 chunks +2 lines, -3 lines 0 comments Download
M webrtc/base/sigslottester_unittest.cc View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/base/socket_unittest.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/socketadapters.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/base/socketaddress.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/socketaddress_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/socketpool.cc View 1 2 6 chunks +7 lines, -8 lines 0 comments Download
M webrtc/base/socketstream.cc View 1 2 5 chunks +6 lines, -6 lines 0 comments Download
M webrtc/base/ssladapter_unittest.cc View 1 2 4 chunks +6 lines, -6 lines 0 comments Download
M webrtc/base/sslfingerprint.cc View 1 2 4 chunks +5 lines, -5 lines 0 comments Download
M webrtc/base/sslsocketfactory.cc View 1 2 6 chunks +13 lines, -11 lines 0 comments Download
M webrtc/base/sslstreamadapter_unittest.cc View 1 2 5 chunks +9 lines, -9 lines 0 comments Download
M webrtc/base/stream.cc View 1 2 25 chunks +38 lines, -43 lines 0 comments Download
M webrtc/base/stream_unittest.cc View 1 2 12 chunks +62 lines, -62 lines 0 comments Download
M webrtc/base/stringencode.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/stringencode_unittest.cc View 1 2 3 chunks +14 lines, -14 lines 0 comments Download
M webrtc/base/stringutils_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/base/task_queue_win.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/task_unittest.cc View 1 2 5 chunks +5 lines, -5 lines 0 comments Download
M webrtc/base/taskparent.cc View 1 2 2 chunks +6 lines, -7 lines 0 comments Download
M webrtc/base/taskrunner.cc View 1 2 6 chunks +12 lines, -13 lines 0 comments Download
M webrtc/base/testclient.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/testclient_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/thread.cc View 1 2 13 chunks +17 lines, -17 lines 0 comments Download
M webrtc/base/thread_checker_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/thread_unittest.cc View 1 2 4 chunks +4 lines, -4 lines 0 comments Download
M webrtc/base/timeutils.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/transformadapter.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/unittest_main.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/unixfilesystem.cc View 1 2 9 chunks +14 lines, -14 lines 0 comments Download
M webrtc/base/virtualsocket_unittest.cc View 1 2 10 chunks +13 lines, -15 lines 0 comments Download
M webrtc/base/virtualsocketserver.cc View 1 2 14 chunks +17 lines, -17 lines 0 comments Download
M webrtc/base/weak_ptr.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/win32.cc View 1 2 9 chunks +12 lines, -13 lines 0 comments Download
M webrtc/base/win32filesystem.cc View 1 2 6 chunks +8 lines, -8 lines 0 comments Download
M webrtc/base/win32socketserver.cc View 1 2 12 chunks +27 lines, -22 lines 0 comments Download
M webrtc/base/win32socketserver_unittest.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/base/win32window.cc View 1 2 3 chunks +8 lines, -9 lines 0 comments Download
M webrtc/base/win32window_unittest.cc View 1 2 2 chunks +7 lines, -7 lines 0 comments Download
M webrtc/base/winping.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/call/audio_send_stream.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/common_audio/fir_filter.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/common_audio/resampler/resampler.cc View 1 2 1 chunk +7 lines, -7 lines 0 comments Download
M webrtc/common_audio/resampler/sinc_resampler.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/common_audio/ring_buffer_unittest.cc View 1 2 5 chunks +11 lines, -11 lines 0 comments Download
M webrtc/common_audio/signal_processing/real_fft_unittest.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/common_audio/vad/vad_core_unittest.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/common_audio/wav_file.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/common_video/libyuv/libyuv_unittest.cc View 1 2 5 chunks +7 lines, -7 lines 0 comments Download
M webrtc/config.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/examples/peerconnection/client/conductor.cc View 1 2 9 chunks +22 lines, -23 lines 0 comments Download
M webrtc/examples/peerconnection/client/linux/main.cc View 1 2 4 chunks +7 lines, -7 lines 0 comments Download
M webrtc/examples/peerconnection/client/linux/main_wnd.cc View 1 2 14 chunks +38 lines, -29 lines 0 comments Download
M webrtc/examples/peerconnection/client/main.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/examples/peerconnection/client/main_wnd.cc View 1 2 12 chunks +37 lines, -25 lines 0 comments Download
M webrtc/examples/peerconnection/client/peer_connection_client.cc View 1 2 7 chunks +15 lines, -16 lines 0 comments Download
M webrtc/examples/peerconnection/server/data_socket.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/examples/peerconnection/server/main.cc View 1 2 2 chunks +3 lines, -2 lines 0 comments Download
M webrtc/examples/peerconnection/server/peer_channel.cc View 1 2 10 chunks +17 lines, -15 lines 0 comments Download
M webrtc/media/base/mediaengine.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/media/base/rtpdataengine.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/media/base/streamparams.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/media/base/streamparams_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/media/engine/fakewebrtccall.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/media/engine/webrtcvideocapturer.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/media/engine/webrtcvideocapturer_unittest.cc View 1 2 6 chunks +8 lines, -8 lines 0 comments Download
M webrtc/media/engine/webrtcvideoengine2.cc View 1 2 15 chunks +19 lines, -20 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/media/sctp/sctptransport.cc View 1 2 4 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/audio_coding/acm2/acm_receiver_unittest.cc View 1 2 3 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/audio_coding/acm2/acm_send_test.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/acm2/audio_coding_module.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/acm2/audio_coding_module_unittest.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/cng/cng_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/g711/test/testG711.cc View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/g722/test/testG722.cc View 1 2 1 chunk +9 lines, -9 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/isac/fix/test/kenny.cc View 1 2 14 chunks +19 lines, -19 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/isac/main/source/isac_unittest.cc View 1 2 2 chunks +6 lines, -8 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ReleaseTest-API.cc View 1 2 14 chunks +21 lines, -21 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/isac/main/test/SwitchingSampRate/SwitchingSampRate.cc View 1 2 2 chunks +2 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/opus_fec_test.cc View 1 2 2 chunks +3 lines, -4 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/opus_speed_test.cc View 1 2 1 chunk +2 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/opus_unittest.cc View 1 2 4 chunks +9 lines, -10 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red_unittest.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/tools/audio_codec_speed_test.cc View 1 2 3 chunks +3 lines, -4 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/audio_decoder_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/audio_multi_vector_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/decision_logic.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/neteq/decoder_database.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/decoder_database_unittest.cc View 1 2 4 chunks +14 lines, -14 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/delay_manager.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/delay_manager_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/neteq/dtmf_tone_generator_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/expand_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/neteq/neteq_impl.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/neteq_impl_unittest.cc View 1 2 2 chunks +4 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/neteq_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/packet_buffer_unittest.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/test/NETEQTEST_RTPpacket.cc View 1 2 6 chunks +17 lines, -19 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/test/RTPchange.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/test/RTPencode.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/neteq/test/RTPjitter.cc View 1 2 5 chunks +13 lines, -10 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/test/RTPtimeshift.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/neteq/test/neteq_isac_quality_test.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/test/neteq_opus_quality_test.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/time_stretch_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/timestamp_scaler_unittest.cc View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/packet.cc View 1 2 4 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/rtp_file_source.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/rtpcat.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/test/APITest.cc View 1 2 5 chunks +18 lines, -18 lines 0 comments Download
M webrtc/modules/audio_coding/test/Channel.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/audio_coding/test/EncodeDecodeTest.cc View 1 2 1 chunk +1 line, -5 lines 0 comments Download
M webrtc/modules/audio_coding/test/PCMFile.cc View 1 2 6 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/audio_coding/test/RTPFile.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/test/TestAllCodecs.cc View 1 2 5 chunks +7 lines, -8 lines 0 comments Download
M webrtc/modules/audio_coding/test/TestRedFec.cc View 1 2 2 chunks +5 lines, -6 lines 0 comments Download
M webrtc/modules/audio_coding/test/TestStereo.cc View 1 2 5 chunks +20 lines, -17 lines 0 comments Download
M webrtc/modules/audio_coding/test/TwoWayCommunication.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/test/delay_test.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/test/insert_packet_with_timing.cc View 1 2 4 chunks +14 lines, -14 lines 0 comments Download
M webrtc/modules/audio_coding/test/opus_test.cc View 1 2 3 chunks +13 lines, -13 lines 0 comments Download
M webrtc/modules/audio_coding/test/target_delay_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/test/utility.cc View 1 2 4 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/audio_conference_mixer/source/audio_conference_mixer_impl.cc View 1 2 12 chunks +27 lines, -31 lines 0 comments Download
M webrtc/modules/audio_device/android/audio_manager.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_device/android/ensure_initialized.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_device/android/opensles_recorder.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_device/audio_device_impl.cc View 1 2 12 chunks +15 lines, -15 lines 0 comments Download
M webrtc/modules/audio_device/dummy/file_audio_device.cc View 1 2 5 chunks +22 lines, -23 lines 0 comments Download
M webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc View 1 2 22 chunks +166 lines, -192 lines 0 comments Download
M webrtc/modules/audio_device/linux/audio_device_pulse_linux.cc View 1 2 43 chunks +166 lines, -198 lines 0 comments Download
M webrtc/modules/audio_device/linux/audio_mixer_manager_alsa_linux.cc View 1 2 41 chunks +264 lines, -326 lines 0 comments Download
M webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.cc View 1 2 15 chunks +37 lines, -48 lines 0 comments Download
M webrtc/modules/audio_device/linux/latebindingsymboltable_linux.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_device/mac/audio_device_mac.cc View 1 2 46 chunks +78 lines, -75 lines 0 comments Download
M webrtc/modules/audio_device/mac/audio_mixer_manager_mac.cc View 1 2 21 chunks +26 lines, -24 lines 0 comments Download
M webrtc/modules/audio_device/test/audio_device_test_api.cc View 1 2 16 chunks +57 lines, -52 lines 0 comments Download
M webrtc/modules/audio_device/win/audio_device_core_win.cc View 1 2 89 chunks +599 lines, -665 lines 0 comments Download
M webrtc/modules/audio_device/win/audio_device_wave_win.cc View 1 2 33 chunks +245 lines, -217 lines 0 comments Download
M webrtc/modules/audio_device/win/audio_mixer_manager_win.cc View 1 2 43 chunks +165 lines, -166 lines 0 comments Download
M webrtc/modules/audio_mixer/audio_mixer_impl.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/aec/aec_core.cc View 1 2 5 chunks +8 lines, -8 lines 0 comments Download
M webrtc/modules/audio_processing/aec/echo_cancellation.cc View 1 2 9 chunks +13 lines, -13 lines 0 comments Download
M webrtc/modules/audio_processing/aec/echo_cancellation_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/aec/system_delay_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/aecm/aecm_core.cc View 1 2 9 chunks +32 lines, -43 lines 0 comments Download
M webrtc/modules/audio_processing/aecm/aecm_core_c.cc View 1 2 5 chunks +5 lines, -10 lines 0 comments Download
M webrtc/modules/audio_processing/aecm/aecm_core_mips.cc View 1 2 5 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/audio_processing/aecm/echo_control_mobile.cc View 1 2 12 chunks +30 lines, -40 lines 0 comments Download
M webrtc/modules/audio_processing/agc/loudness_histogram.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/agc/loudness_histogram_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/audio_buffer.cc View 1 2 3 chunks +15 lines, -15 lines 0 comments Download
M webrtc/modules/audio_processing/audio_processing_unittest.cc View 1 2 19 chunks +48 lines, -47 lines 0 comments Download
M webrtc/modules/audio_processing/config_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/echo_cancellation_impl.cc View 1 2 4 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/audio_processing/echo_cancellation_impl_unittest.cc View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/audio_processing/echo_control_mobile_impl.cc View 1 2 6 chunks +10 lines, -10 lines 0 comments Download
M webrtc/modules/audio_processing/transient/click_annotate.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/transient/dyadic_decimator_unittest.cc View 1 2 1 chunk +8 lines, -10 lines 0 comments Download
M webrtc/modules/audio_processing/transient/file_utils_unittest.cc View 1 2 2 chunks +14 lines, -13 lines 0 comments Download
M webrtc/modules/audio_processing/transient/transient_detector.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/transient/transient_detector_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/transient/transient_suppression_test.cc View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/audio_processing/transient/transient_suppressor.cc View 1 2 2 chunks +2 lines, -3 lines 0 comments Download
M webrtc/modules/audio_processing/transient/wpd_node_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/transient/wpd_tree.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/transient/wpd_tree_unittest.cc View 1 2 1 chunk +10 lines, -10 lines 0 comments Download
M webrtc/modules/audio_processing/utility/delay_estimator.cc View 1 2 5 chunks +28 lines, -30 lines 0 comments Download
M webrtc/modules/audio_processing/utility/delay_estimator_unittest.cc View 1 2 10 chunks +72 lines, -72 lines 0 comments Download
M webrtc/modules/audio_processing/utility/delay_estimator_wrapper.cc View 1 2 16 chunks +34 lines, -34 lines 0 comments Download
M webrtc/modules/audio_processing/vad/pitch_based_vad_unittest.cc View 1 2 1 chunk +4 lines, -4 lines 0 comments Download
M webrtc/modules/audio_processing/vad/pole_zero_filter.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_processing/vad/standalone_vad_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/vad/vad_audio_proc_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/vad/vad_circular_buffer.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/cropping_window_capturer.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/desktop_capture/cropping_window_capturer_win.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/desktop_capture/desktop_frame.cc View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/modules/desktop_capture/desktop_region_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/mac/scoped_pixel_buffer_object.cc View 1 2 3 chunks +4 lines, -6 lines 0 comments Download
M webrtc/modules/desktop_capture/mac/window_list_utils.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/desktop_capture/mouse_cursor_monitor_null.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/mouse_cursor_monitor_win.cc View 1 2 3 chunks +8 lines, -8 lines 0 comments Download
M webrtc/modules/desktop_capture/mouse_cursor_monitor_x11.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/desktop_capture/screen_capturer_mac_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/desktop_capture/screen_capturer_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/desktop_capture/screen_capturer_x11.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/screen_drawer_win.cc View 1 2 3 chunks +9 lines, -8 lines 0 comments Download
M webrtc/modules/desktop_capture/shared_memory.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/desktop_capture/win/cursor.cc View 1 2 4 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/desktop_capture/win/cursor_unittest.cc View 1 2 1 chunk +4 lines, -4 lines 0 comments Download
M webrtc/modules/desktop_capture/win/desktop.cc View 1 2 4 chunks +9 lines, -9 lines 0 comments Download
M webrtc/modules/desktop_capture/win/scoped_thread_desktop.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/win/screen_capture_utils.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/desktop_capture/win/screen_capturer_win_magnifier.cc View 1 2 3 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/desktop_capture/x11/shared_x_display.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/x11/x_error_trap.cc View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/media_file/media_file_impl.cc View 1 2 24 chunks +98 lines, -126 lines 0 comments Download
M webrtc/modules/media_file/media_file_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/media_file/media_file_utility.cc View 1 2 11 chunks +33 lines, -47 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/inter_arrival.cc View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/bwe.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/bwe_test_baselinefile.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/bwe_test_fileutils.cc View 1 2 4 chunks +7 lines, -7 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework_unittest.cc View 1 2 20 chunks +22 lines, -22 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/estimators/nada.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/nack_rtx_unittest.cc View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/receive_statistics_impl.cc View 1 2 5 chunks +8 lines, -8 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/receive_statistics_unittest.cc View 1 2 6 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc View 1 2 2 chunks +3 lines, -4 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc View 1 2 9 chunks +10 lines, -12 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.cc View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp8_unittest.cc View 1 2 8 chunks +10 lines, -10 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp9_unittest.cc View 1 2 4 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_receiver_video.cc View 1 2 2 chunks +5 lines, -4 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc View 1 2 5 chunks +8 lines, -9 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc View 1 2 1 chunk +3 lines, -4 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender_audio.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_utility.cc View 1 2 2 chunks +2 lines, -3 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/ulpfec_generator_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/vp8_partition_aggregator.cc View 1 2 6 chunks +10 lines, -10 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/vp8_partition_aggregator_unittest.cc View 1 2 4 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/test/testAPI/test_api_video.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/utility/source/helpers_android.cc View 1 2 3 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/video_capture/device_info_impl.cc View 1 2 2 chunks +11 lines, -14 lines 0 comments Download
M webrtc/modules/video_capture/linux/video_capture_linux.cc View 1 2 3 chunks +4 lines, -6 lines 0 comments Download
M webrtc/modules/video_capture/test/video_capture_unittest.cc View 1 2 5 chunks +6 lines, -7 lines 0 comments Download
M webrtc/modules/video_capture/video_capture_impl.cc View 1 2 2 chunks +9 lines, -9 lines 0 comments Download
M webrtc/modules/video_capture/windows/device_info_ds.cc View 1 2 13 chunks +132 lines, -141 lines 0 comments Download
M webrtc/modules/video_capture/windows/help_functions_ds.cc View 1 2 1 chunk +35 lines, -40 lines 0 comments Download
M webrtc/modules/video_capture/windows/sink_filter_ds.cc View 1 2 10 chunks +43 lines, -46 lines 0 comments Download
M webrtc/modules/video_capture/windows/video_capture_ds.cc View 1 2 8 chunks +33 lines, -34 lines 0 comments Download
M webrtc/modules/video_coding/codecs/i420/i420.cc View 1 2 8 chunks +12 lines, -15 lines 0 comments Download
M webrtc/modules/video_coding/codecs/test/packet_manipulator.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/video_coding/codecs/tools/video_quality_measurement.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/realtime_temporal_layers.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc View 1 2 4 chunks +8 lines, -8 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc View 1 2 13 chunks +25 lines, -25 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/vp8_sequence_coder.cc View 1 2 5 chunks +16 lines, -15 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc View 1 2 13 chunks +33 lines, -33 lines 0 comments Download
M webrtc/modules/video_coding/decoding_state.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/video_coding/encoded_frame.cc View 1 2 3 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/video_coding/frame_buffer.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/generic_decoder.cc View 1 2 5 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/video_coding/generic_encoder.cc View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/modules/video_coding/jitter_buffer.cc View 1 2 9 chunks +12 lines, -12 lines 0 comments Download
M webrtc/modules/video_coding/jitter_buffer_unittest.cc View 1 2 39 chunks +45 lines, -45 lines 0 comments Download
M webrtc/modules/video_coding/packet.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/receiver.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/video_coding/receiver_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/video_coding/session_info.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/video_coding/test/rtp_player.cc View 1 2 8 chunks +12 lines, -11 lines 0 comments Download
M webrtc/modules/video_coding/test/stream_generator.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/video_coding/test/test_util.cc View 1 2 3 chunks +8 lines, -8 lines 0 comments Download
M webrtc/modules/video_coding/test/vcm_payload_sink_factory.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/video_coding/test/video_rtp_play.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/video_coding/timing.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/video_coding/video_coding_robustness_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/video_receiver_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/video_sender_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/p2p/base/asyncstuntcpsocket.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/p2p/base/asyncstuntcpsocket_unittest.cc View 1 2 2 chunks +2 lines, -4 lines 0 comments Download
M webrtc/p2p/base/basicpacketsocketfactory.cc View 1 2 7 chunks +13 lines, -19 lines 0 comments Download
M webrtc/p2p/base/dtlstransportchannel.cc View 1 2 5 chunks +6 lines, -5 lines 0 comments Download
M webrtc/p2p/base/dtlstransportchannel_unittest.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M webrtc/p2p/base/jseptransport.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/p2p/base/jseptransport_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/p2p/base/p2ptransportchannel.cc View 1 2 4 chunks +4 lines, -4 lines 0 comments Download
M webrtc/p2p/base/p2ptransportchannel_unittest.cc View 1 2 13 chunks +46 lines, -33 lines 0 comments Download
M webrtc/p2p/base/port.cc View 1 2 5 chunks +7 lines, -7 lines 0 comments Download
M webrtc/p2p/base/port_unittest.cc View 1 2 51 chunks +101 lines, -102 lines 0 comments Download
M webrtc/p2p/base/pseudotcp.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/p2p/base/pseudotcp_unittest.cc View 1 2 10 chunks +12 lines, -14 lines 0 comments Download
M webrtc/p2p/base/relayport.cc View 1 2 6 chunks +16 lines, -14 lines 0 comments Download
M webrtc/p2p/base/relayport_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/p2p/base/relayserver.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/p2p/base/relayserver_unittest.cc View 1 2 14 chunks +18 lines, -18 lines 0 comments Download
M webrtc/p2p/base/sessiondescription.cc View 1 2 10 chunks +13 lines, -13 lines 0 comments Download
M webrtc/p2p/base/stun.cc View 1 2 6 chunks +10 lines, -13 lines 0 comments Download
M webrtc/p2p/base/stun_unittest.cc View 1 2 22 chunks +35 lines, -35 lines 0 comments Download
M webrtc/p2p/base/stunport.cc View 1 2 4 chunks +6 lines, -6 lines 0 comments Download
M webrtc/p2p/base/stunport_unittest.cc View 1 2 2 chunks +3 lines, -4 lines 0 comments Download
M webrtc/p2p/base/stunrequest.cc View 1 2 6 chunks +7 lines, -7 lines 0 comments Download
M webrtc/p2p/base/stunrequest_unittest.cc View 1 2 6 chunks +13 lines, -10 lines 0 comments Download
M webrtc/p2p/base/stunserver_unittest.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/p2p/base/tcpport.cc View 1 2 5 chunks +11 lines, -11 lines 0 comments Download
M webrtc/p2p/base/transportdescriptionfactory.cc View 1 2 3 chunks +7 lines, -7 lines 0 comments Download
M webrtc/p2p/base/transportdescriptionfactory_unittest.cc View 1 2 12 chunks +35 lines, -37 lines 0 comments Download
M webrtc/p2p/base/turnport.cc View 1 2 12 chunks +14 lines, -14 lines 0 comments Download
M webrtc/p2p/base/turnport_unittest.cc View 1 2 10 chunks +13 lines, -13 lines 0 comments Download
M webrtc/p2p/base/turnserver.cc View 1 2 11 chunks +17 lines, -17 lines 0 comments Download
M webrtc/p2p/client/basicportallocator.cc View 1 2 14 chunks +16 lines, -17 lines 0 comments Download
M webrtc/p2p/quic/quictransport.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/pc/channel.cc View 1 2 12 chunks +15 lines, -14 lines 0 comments Download
M webrtc/pc/channel_unittest.cc View 1 2 33 chunks +84 lines, -81 lines 0 comments Download
M webrtc/pc/channelmanager.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M webrtc/pc/channelmanager_unittest.cc View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/pc/datachannel.cc View 1 2 3 chunks +4 lines, -3 lines 0 comments Download
M webrtc/pc/dtmfsender.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/pc/dtmfsender_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/pc/externalhmac.cc View 1 2 2 chunks +9 lines, -9 lines 0 comments Download
M webrtc/pc/jsepicecandidate.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/pc/jsepsessiondescription.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/pc/jsepsessiondescription_unittest.cc View 1 2 5 chunks +9 lines, -9 lines 0 comments Download
M webrtc/pc/mediasession.cc View 1 2 15 chunks +25 lines, -23 lines 0 comments Download
M webrtc/pc/mediasession_unittest.cc View 1 2 70 chunks +289 lines, -289 lines 0 comments Download
M webrtc/pc/mediastream.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/pc/mediastream_unittest.cc View 1 2 2 chunks +8 lines, -6 lines 0 comments Download
M webrtc/pc/peerconnection.cc View 1 2 10 chunks +13 lines, -13 lines 0 comments Download
M webrtc/pc/peerconnectionendtoend_unittest.cc View 1 2 2 chunks +2 lines, -6 lines 0 comments Download
M webrtc/pc/peerconnectionfactory.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/pc/peerconnectionfactory_unittest.cc View 1 2 8 chunks +10 lines, -10 lines 0 comments Download
M webrtc/pc/peerconnectioninterface_unittest.cc View 1 2 35 chunks +68 lines, -73 lines 0 comments Download
M webrtc/pc/quicdatachannel.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/pc/quicdatachannel_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/pc/quicdatatransport.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/pc/remoteaudiosource.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/pc/rtpsenderreceiver_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/pc/sctputils.cc View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/pc/srtpfilter_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/pc/statscollector.cc View 1 2 8 chunks +9 lines, -9 lines 0 comments Download
M webrtc/pc/statscollector_unittest.cc View 1 2 32 chunks +47 lines, -45 lines 0 comments Download
M webrtc/pc/test/androidtestinitializer.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/pc/test/fakeaudiocapturemodule_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/pc/test/peerconnectiontestwrapper.cc View 1 2 5 chunks +7 lines, -7 lines 0 comments Download
M webrtc/pc/videocapturertracksource.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/pc/videocapturertracksource_unittest.cc View 1 2 12 chunks +12 lines, -12 lines 0 comments Download
M webrtc/pc/webrtcsdp.cc View 1 2 18 chunks +26 lines, -26 lines 0 comments Download
M webrtc/pc/webrtcsdp_unittest.cc View 1 2 12 chunks +14 lines, -14 lines 0 comments Download
M webrtc/pc/webrtcsession.cc View 1 2 10 chunks +13 lines, -13 lines 0 comments Download
M webrtc/pc/webrtcsession_unittest.cc View 1 2 90 chunks +166 lines, -164 lines 0 comments Download
M webrtc/sdk/android/src/jni/androidmediadecoder_jni.cc View 1 2 5 chunks +12 lines, -12 lines 0 comments Download
M webrtc/sdk/android/src/jni/androidmediaencoder_jni.cc View 1 2 4 chunks +5 lines, -5 lines 0 comments Download
M webrtc/sdk/android/src/jni/jni_helpers.cc View 1 2 7 chunks +10 lines, -10 lines 0 comments Download
M webrtc/sdk/android/src/jni/peerconnection_jni.cc View 1 2 16 chunks +27 lines, -27 lines 0 comments Download
M webrtc/system_wrappers/source/aligned_malloc.cc View 1 2 4 chunks +7 lines, -7 lines 0 comments Download
M webrtc/system_wrappers/source/aligned_malloc_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/system_wrappers/source/clock.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/system_wrappers/source/condition_variable_event_win.cc View 1 2 1 chunk +14 lines, -14 lines 0 comments Download
M webrtc/system_wrappers/source/cpu_info.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/system_wrappers/source/event_timer_win.cc View 1 2 3 chunks +10 lines, -11 lines 0 comments Download
M webrtc/system_wrappers/source/field_trial_default.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/system_wrappers/source/logcat_trace_context.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/system_wrappers/source/rw_lock_posix.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/system_wrappers/source/rw_lock_win.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/system_wrappers/source/trace_impl.cc View 1 2 4 chunks +5 lines, -6 lines 0 comments Download
M webrtc/system_wrappers/source/trace_win.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/test/call_test.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/test/configurable_frame_size_encoder.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/test/fake_decoder.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/test/fake_network_pipe.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/test/frame_generator_capturer.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/test/gl/gl_renderer.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/test/linux/glx_renderer.cc View 1 2 9 chunks +15 lines, -18 lines 0 comments Download
M webrtc/test/linux/video_renderer_linux.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/test/null_platform_renderer.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/test/rtp_file_reader.cc View 1 2 8 chunks +24 lines, -24 lines 0 comments Download
M webrtc/test/rtp_file_reader_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/test/rtp_file_writer.cc View 1 2 2 chunks +6 lines, -6 lines 0 comments Download
M webrtc/test/rtp_file_writer_unittest.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/test/testsupport/fileutils.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/test/testsupport/fileutils_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/test/testsupport/frame_reader.cc View 1 2 3 chunks +10 lines, -9 lines 0 comments Download
M webrtc/test/testsupport/frame_writer.cc View 1 2 4 chunks +6 lines, -7 lines 0 comments Download
M webrtc/test/testsupport/metrics/video_metrics.cc View 1 2 6 chunks +13 lines, -13 lines 0 comments Download
M webrtc/test/testsupport/packet_reader_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/test/testsupport/trace_to_stderr.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/test/vcm_capturer.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/test/win/d3d_renderer.cc View 1 2 9 chunks +26 lines, -42 lines 0 comments Download
M webrtc/test/win/run_loop_win.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/tools/agc/activity_metric.cc View 1 2 9 chunks +24 lines, -21 lines 0 comments Download
M webrtc/tools/converter/converter.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/tools/converter/rgba_to_i420_converter.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/tools/frame_analyzer/frame_analyzer.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/tools/frame_analyzer/reference_less_video_analysis_lib.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/tools/frame_analyzer/video_quality_analysis.cc View 1 2 5 chunks +6 lines, -6 lines 0 comments Download
M webrtc/tools/frame_analyzer/video_quality_analysis_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/tools/frame_editing/frame_editing.cc View 1 2 1 chunk +5 lines, -5 lines 0 comments Download
M webrtc/tools/frame_editing/frame_editing_unittest.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/tools/psnr_ssim_analyzer/psnr_ssim_analyzer.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/video/video_receive_stream.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/video/video_send_stream.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/voice_engine/channel.cc View 1 2 34 chunks +52 lines, -50 lines 0 comments Download
M webrtc/voice_engine/channel_manager.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/voice_engine/file_player.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/voice_engine/file_player_unittests.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/voice_engine/file_recorder.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/voice_engine/monitor_module.cc View 1 2 2 chunks +3 lines, -6 lines 0 comments Download
M webrtc/voice_engine/output_mixer.cc View 1 2 9 chunks +46 lines, -53 lines 0 comments Download
M webrtc/voice_engine/shared_data.cc View 1 2 1 chunk +11 lines, -15 lines 0 comments Download
M webrtc/voice_engine/test/auto_test/fixtures/after_initialization_fixture.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/voice_engine/test/auto_test/fixtures/before_initialization_fixture.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.cc View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M webrtc/voice_engine/test/auto_test/standard/file_before_streaming_test.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/voice_engine/test/auto_test/standard/mixing_test.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/traffic_control_win.cc View 1 2 8 chunks +69 lines, -93 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_socket2_manager_win.cc View 1 2 11 chunks +74 lines, -106 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_socket2_win.cc View 1 2 12 chunks +157 lines, -202 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_socket_manager_posix.cc View 1 2 3 chunks +30 lines, -35 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_socket_manager_unittest.cc View 1 2 2 chunks +12 lines, -14 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_socket_manager_wrapper.cc View 1 2 1 chunk +4 lines, -4 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_socket_posix.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_socket_wrapper.cc View 1 2 4 chunks +10 lines, -17 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_socket_wrapper_unittest.cc View 1 2 1 chunk +5 lines, -6 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_transport_impl.cc View 1 2 35 chunks +214 lines, -278 lines 0 comments Download
M webrtc/voice_engine/test/channel_transport/udp_transport_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc View 1 2 5 chunks +16 lines, -16 lines 0 comments Download
M webrtc/voice_engine/transmit_mixer.cc View 1 2 18 chunks +83 lines, -94 lines 0 comments Download
M webrtc/voice_engine/transmit_mixer_unittest.cc View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/voice_engine/voe_audio_processing_impl.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/voice_engine/voe_base_impl.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/voice_engine/voe_codec_impl.cc View 1 2 14 chunks +15 lines, -15 lines 0 comments Download
M webrtc/voice_engine/voe_external_media_impl.cc View 1 2 5 chunks +6 lines, -6 lines 0 comments Download
M webrtc/voice_engine/voe_file_impl.cc View 1 2 17 chunks +20 lines, -20 lines 0 comments Download
M webrtc/voice_engine/voe_hardware_impl.cc View 1 2 5 chunks +8 lines, -8 lines 0 comments Download
M webrtc/voice_engine/voe_neteq_stats_impl.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M webrtc/voice_engine/voe_rtp_rtcp_impl.cc View 1 2 15 chunks +16 lines, -16 lines 0 comments Download
M webrtc/voice_engine/voe_video_sync_impl.cc View 1 2 8 chunks +9 lines, -9 lines 0 comments Download
M webrtc/voice_engine/voe_volume_control_impl.cc View 1 2 9 chunks +10 lines, -10 lines 0 comments Download
M webrtc/voice_engine/voice_engine_impl.cc View 1 2 2 chunks +3 lines, -3 lines 0 comments Download

Messages

Total messages: 15 (12 generated)
Taylor Brandstetter
Tommi: Do you have any objection to this? And should I ask the broader webrtc-eng ...
3 years, 10 months ago (2017-02-11 03:51:17 UTC) #2
tommi
In general I think that this is a good idea. I think that your suggestion ...
3 years, 10 months ago (2017-02-11 09:55:34 UTC) #14
Taylor Brandstetter
3 years, 10 months ago (2017-02-11 17:48:56 UTC) #15
I agree the CL should be split up. There could be corner cases where my script
did the wrong thing, so every file should at least be glanced over by someone.

https://codereview.webrtc.org/2685783014/diff/20001/webrtc/audio/audio_receiv...
File webrtc/audio/audio_receive_stream.cc (right):

https://codereview.webrtc.org/2685783014/diff/20001/webrtc/audio/audio_receiv...
webrtc/audio/audio_receive_stream.cc:54: << (rtcp_send_transport ? "(Transport)"
: "null");
On 2017/02/11 09:55:34, tommi (webrtc) wrote:
> in cases like these, I think we should not change to nullptr.  The reason is
> that nullptr to me means C++ whereas this is log related and representation of
> nullptr values in JS and upper level languages is typically 'null'.

I agree; the script I wrote will use "null" in strings and comments, and
"nullptr" in actual code.

https://codereview.webrtc.org/2685783014/diff/20001/webrtc/base/event.cc
File webrtc/base/event.cc (left):

https://codereview.webrtc.org/2685783014/diff/20001/webrtc/base/event.cc#oldc...
webrtc/base/event.cc:30: event_handle_ = ::CreateEvent(NULL,                 //
Security attributes.
On 2017/02/11 09:55:34, tommi (webrtc) wrote:
> NULL on Windows is not exactly the same thing as nullptr.  In most cases it
is,
> but not always.  As an example, take a look at the return value from
> timeSetEvent*.  The return type is MMRESULT, which is a number, an identifier
if
> successful, but NULL if not successful.
> 
> For that reason, I think we should be careful in Windows specific code with
> blanket replacing NULL with nullptr. Doing so could make the code look
> inconsistent with documentation and at worst, cause compilation failures.  In
> the particular case we have here (CreateEvent), nullptr is fine and in my
> opinion appropriate.
> 
> *
>
https://msdn.microsoft.com/en-us/library/windows/desktop/dd757634(v=vs.85).aspx

I think that's one of the advantages of using nullptr; if you use it where you
should have used an integer type, it produces an error. I ran into this in
"audio_device_win.cc" with some APIs that take DWORD_PTRs.

For APIs that accept DWORD_PTR or ULONG_PTRs, should the style be to use "NULL",
or "reinterpret_cast<DWORD_PTR>(nullptr)"? I guess I'll bring this up in my
email to our group

Powered by Google App Engine
This is Rietveld 408576698