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

Side by Side Diff: Source/modules/webaudio/ConvolverNode.cpp

Issue 24123002: Merge 157245 "Fix threading races on ConvolverNode::m_reverb in ..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/1599/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 return m_buffer.get(); 156 return m_buffer.get();
157 } 157 }
158 158
159 double ConvolverNode::tailTime() const 159 double ConvolverNode::tailTime() const
160 { 160 {
161 return m_reverb ? m_reverb->impulseResponseLength() / static_cast<double>(sa mpleRate()) : 0; 161 return m_reverb ? m_reverb->impulseResponseLength() / static_cast<double>(sa mpleRate()) : 0;
162 } 162 }
163 163
164 double ConvolverNode::latencyTime() const 164 double ConvolverNode::latencyTime() const
165 { 165 {
166 return m_reverb ? m_reverb->latencyFrames() / static_cast<double>(sampleRate ()) : 0; 166 MutexTryLocker tryLocker(m_processLock);
167 if (tryLocker.locked())
168 return m_reverb ? m_reverb->latencyFrames() / static_cast<double>(sample Rate()) : 0;
169 // Since we don't want to block the Audio Device thread, we return a large v alue
170 // instead of trying to acquire the lock.
171 return std::numeric_limits<double>::infinity();
167 } 172 }
168 173
169 } // namespace WebCore 174 } // namespace WebCore
170 175
171 #endif // ENABLE(WEB_AUDIO) 176 #endif // ENABLE(WEB_AUDIO)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698