diff options
author | inferno@chromium.org <inferno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-06 20:43:38 +0000 |
---|---|---|
committer | inferno@chromium.org <inferno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-06 20:43:38 +0000 |
commit | cfcce91cfc1a14a91a672ad0f052b86a5c1768a3 (patch) | |
tree | 529a03f987c7fa452aab2171f18992e5e0c8c935 /media | |
parent | 92abcb8361d50323c52301358f3da3f18e7c660e (diff) | |
download | chromium_src-cfcce91cfc1a14a91a672ad0f052b86a5c1768a3.zip chromium_src-cfcce91cfc1a14a91a672ad0f052b86a5c1768a3.tar.gz chromium_src-cfcce91cfc1a14a91a672ad0f052b86a5c1768a3.tar.bz2 |
Fix indents. I am used to webkit style, so did it wrong in last commit.
BUG=68244
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70637 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/audio/audio_util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/audio/audio_util.cc b/media/audio/audio_util.cc index 117d7df..6d80c87 100644 --- a/media/audio/audio_util.cc +++ b/media/audio/audio_util.cc @@ -94,7 +94,7 @@ bool AdjustVolume(void* buf, float volume) { DCHECK(buf); if (volume < 0.0f || volume > 1.0f) - return false; + return false; if (volume == 1.0f) { return true; } else if (volume == 0.0f) { @@ -131,7 +131,7 @@ bool FoldChannels(void* buf, float volume) { DCHECK(buf); if (volume < 0.0f || volume > 1.0f) - return false; + return false; if (channels > 2 && channels <= 8 && bytes_per_sample > 0) { int sample_count = buflen / (channels * bytes_per_sample); if (bytes_per_sample == 1) { |