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

Unified Diff: Source/platform/audio/android/FFTFrameOpenMAXDLAndroid.cpp

Issue 906233002: Use nullptr instead of 0 in WebAudio (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/audio/SincResampler.cpp ('k') | Source/platform/audio/ffmpeg/FFTFrameFFMPEG.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/android/FFTFrameOpenMAXDLAndroid.cpp
diff --git a/Source/platform/audio/android/FFTFrameOpenMAXDLAndroid.cpp b/Source/platform/audio/android/FFTFrameOpenMAXDLAndroid.cpp
index b4abb2ae399b372604cb673ff6779b847ceebe95..0f321de1daef9acc6a4ae04f1d69dc5f141184e8 100644
--- a/Source/platform/audio/android/FFTFrameOpenMAXDLAndroid.cpp
+++ b/Source/platform/audio/android/FFTFrameOpenMAXDLAndroid.cpp
@@ -47,8 +47,8 @@ FFTFrame::FFTFrame(unsigned fftSize)
, m_log2FFTSize(static_cast<unsigned>(log2(fftSize)))
, m_realData(fftSize / 2)
, m_imagData(fftSize / 2)
- , m_forwardContext(0)
- , m_inverseContext(0)
+ , m_forwardContext(nullptr)
+ , m_inverseContext(nullptr)
, m_complexData(fftSize)
{
// We only allow power of two.
@@ -62,8 +62,8 @@ FFTFrame::FFTFrame(unsigned fftSize)
FFTFrame::FFTFrame()
: m_FFTSize(0)
, m_log2FFTSize(0)
- , m_forwardContext(0)
- , m_inverseContext(0)
+ , m_forwardContext(nullptr)
+ , m_inverseContext(nullptr)
{
}
@@ -73,8 +73,8 @@ FFTFrame::FFTFrame(const FFTFrame& frame)
, m_log2FFTSize(frame.m_log2FFTSize)
, m_realData(frame.m_FFTSize / 2)
, m_imagData(frame.m_FFTSize / 2)
- , m_forwardContext(0)
- , m_inverseContext(0)
+ , m_forwardContext(nullptr)
+ , m_inverseContext(nullptr)
, m_complexData(frame.m_FFTSize)
{
m_forwardContext = contextForSize(m_log2FFTSize);
@@ -167,7 +167,7 @@ OMXFFTSpec_R_F32* FFTFrame::contextForSize(unsigned log2FFTSize)
return context;
}
- return 0;
+ return nullptr;
}
} // namespace blink
« no previous file with comments | « Source/platform/audio/SincResampler.cpp ('k') | Source/platform/audio/ffmpeg/FFTFrameFFMPEG.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698