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

Issue 2302483002: Style changes in Audio Mixer (Closed)

Created:
4 years, 3 months ago by aleloi
Modified:
4 years, 2 months ago
Reviewers:
ossu
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

This removes forward declarations, changes include order, changes integers to plain 'int', and changes static methods to non-members. BUG=6346 NOTRY=True Committed: https://crrev.com/dc7669a8a62c0fe3d5ddb7069be637dadf6a3740 Cr-Commit-Position: refs/heads/master@{#14494}

Patch Set 1 : MixHistory: removed naked pointer and forward declarations. #

Total comments: 8

Patch Set 2 : Includes and order of includes. #

Total comments: 3

Patch Set 3 : Changed static member function to non-member. #

Patch Set 4 : Removed size_t everywhere in favor of int. #

Total comments: 8

Patch Set 5 : Rebase & changes in response to reviewer comments. #

Total comments: 1

Patch Set 6 : size_t <-> int #

Total comments: 5

Patch Set 7 : Updated comment #

Patch Set 8 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+106 lines, -118 lines) Patch
M webrtc/modules/audio_mixer/BUILD.gn View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/audio_mixer/audio_frame_manipulator.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_mixer/audio_mixer.h View 4 5 1 chunk +0 lines, -1 line 0 comments Download
M webrtc/modules/audio_mixer/audio_mixer.gypi View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/audio_mixer/audio_mixer_defines.h View 1 2 3 4 2 chunks +14 lines, -3 lines 0 comments Download
A webrtc/modules/audio_mixer/audio_mixer_defines.cc View 1 2 3 4 5 6 1 chunk +38 lines, -0 lines 0 comments Download
M webrtc/modules/audio_mixer/audio_mixer_impl.h View 1 2 3 4 5 2 chunks +4 lines, -30 lines 0 comments Download
M webrtc/modules/audio_mixer/audio_mixer_impl.cc View 1 2 3 4 5 11 chunks +47 lines, -83 lines 0 comments Download

Messages

Total messages: 35 (22 generated)
aleloi
A few relatively simple changes to make the audio mixer follow the style guide: Removed ...
4 years, 3 months ago (2016-09-01 14:12:22 UTC) #11
ossu
Had a quick glance over it. Not sure if changing size_t -> int is strictly ...
4 years, 3 months ago (2016-09-01 15:42:50 UTC) #13
aleloi
https://codereview.webrtc.org/2302483002/diff/240001/webrtc/modules/audio_mixer/audio_mixer.gypi File webrtc/modules/audio_mixer/audio_mixer.gypi (right): https://codereview.webrtc.org/2302483002/diff/240001/webrtc/modules/audio_mixer/audio_mixer.gypi#newcode26 webrtc/modules/audio_mixer/audio_mixer.gypi:26: 'audio_mixer_defines.cc', On 2016/09/01 15:42:50, ossu wrote: > A nitpick: ...
4 years, 3 months ago (2016-09-02 11:52:34 UTC) #14
ossu
https://codereview.webrtc.org/2302483002/diff/260001/webrtc/modules/audio_mixer/test/audio_mixer_unittest.cc File webrtc/modules/audio_mixer/test/audio_mixer_unittest.cc (right): https://codereview.webrtc.org/2302483002/diff/260001/webrtc/modules/audio_mixer/test/audio_mixer_unittest.cc#newcode294 webrtc/modules/audio_mixer/test/audio_mixer_unittest.cc:294: EXPECT_EQ(static_cast<size_t>(number_of_channels), I believe you should be able to use ...
4 years, 3 months ago (2016-09-05 12:02:54 UTC) #15
aleloi
Hi! Sorry for waiting this long with this. This CL contained a few style changes ...
4 years, 2 months ago (2016-10-03 09:53:39 UTC) #21
ossu
https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc File webrtc/modules/audio_mixer/audio_mixer_defines.cc (right): https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc#newcode23 webrtc/modules/audio_mixer/audio_mixer_defines.cc:23: bool MixerAudioSource::WasMixed() const { If WasMixed is the same ...
4 years, 2 months ago (2016-10-03 12:49:01 UTC) #22
aleloi
https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc File webrtc/modules/audio_mixer/audio_mixer_defines.cc (right): https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc#newcode23 webrtc/modules/audio_mixer/audio_mixer_defines.cc:23: bool MixerAudioSource::WasMixed() const { On 2016/10/03 12:49:01, ossu wrote: ...
4 years, 2 months ago (2016-10-03 13:23:38 UTC) #23
ossu
https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc File webrtc/modules/audio_mixer/audio_mixer_defines.cc (right): https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc#newcode23 webrtc/modules/audio_mixer/audio_mixer_defines.cc:23: bool MixerAudioSource::WasMixed() const { On 2016/10/03 13:23:38, aleloi wrote: ...
4 years, 2 months ago (2016-10-04 09:00:06 UTC) #25
aleloi
https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc File webrtc/modules/audio_mixer/audio_mixer_defines.cc (right): https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc#newcode23 webrtc/modules/audio_mixer/audio_mixer_defines.cc:23: bool MixerAudioSource::WasMixed() const { On 2016/10/04 09:00:05, ossu wrote: ...
4 years, 2 months ago (2016-10-04 09:15:18 UTC) #26
ossu
lgtm https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc File webrtc/modules/audio_mixer/audio_mixer_defines.cc (right): https://codereview.webrtc.org/2302483002/diff/380001/webrtc/modules/audio_mixer/audio_mixer_defines.cc#newcode23 webrtc/modules/audio_mixer/audio_mixer_defines.cc:23: bool MixerAudioSource::WasMixed() const { On 2016/10/04 09:15:18, aleloi ...
4 years, 2 months ago (2016-10-04 09:28:44 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2302483002/440001
4 years, 2 months ago (2016-10-04 10:57:59 UTC) #31
commit-bot: I haz the power
Committed patchset #8 (id:440001)
4 years, 2 months ago (2016-10-04 11:06:24 UTC) #33
commit-bot: I haz the power
4 years, 2 months ago (2016-10-04 11:06:37 UTC) #35
Message was sent while issue was closed.
Patchset 8 (id:??) landed as
https://crrev.com/dc7669a8a62c0fe3d5ddb7069be637dadf6a3740
Cr-Commit-Position: refs/heads/master@{#14494}

Powered by Google App Engine
This is Rietveld 408576698