summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorfbarchard@chromium.org <fbarchard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-08 23:57:32 +0000
committerfbarchard@chromium.org <fbarchard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-08 23:57:32 +0000
commit46bb0159f2cd001b3add3c6be4fdeda1dbc898cc (patch)
tree8072f35b13831a1de0d9fa22a5196917f6e9abad /media
parentb4d8f2090d0b2909c4929fbac253ad93376218f6 (diff)
downloadchromium_src-46bb0159f2cd001b3add3c6be4fdeda1dbc898cc.zip
chromium_src-46bb0159f2cd001b3add3c6be4fdeda1dbc898cc.tar.gz
chromium_src-46bb0159f2cd001b3add3c6be4fdeda1dbc898cc.tar.bz2
quick syntax fix
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28487 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r--media/audio/mac/audio_output_mac.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/audio/mac/audio_output_mac.cc b/media/audio/mac/audio_output_mac.cc
index a51d35e..ecd0d1c 100644
--- a/media/audio/mac/audio_output_mac.cc
+++ b/media/audio/mac/audio_output_mac.cc
@@ -220,7 +220,7 @@ void PCMQueueOutAudioOutputStream::RenderCallback(void* p_this,
// Handle channel order for PCM 5.1 audio.
if (audio_stream->format_.mChannelsPerFrame == 6) {
- if (audio_stream->format_.mBitsPerChannel == 8)
+ if (audio_stream->format_.mBitsPerChannel == 8) {
SwizzleLayout(reinterpret_cast<uint8*>(buffer->mAudioData), filled);
} else if (audio_stream->format_.mBitsPerChannel == 16) {
SwizzleLayout(reinterpret_cast<int16*>(buffer->mAudioData), filled);