diff --git a/Code/ApplicationEngine/otbWrapperOutputImageParameter.cxx b/Code/ApplicationEngine/otbWrapperOutputImageParameter.cxx
index 65de0cd61bbcef54b1e5860ca16d20cc2b0cb5f5..a53781225057d78ea498a26d72eb12dd14a76dd5 100644
--- a/Code/ApplicationEngine/otbWrapperOutputImageParameter.cxx
+++ b/Code/ApplicationEngine/otbWrapperOutputImageParameter.cxx
@@ -70,7 +70,7 @@ void OutputImageParameter::InitializeWriters()
     writer->SetFileName( this->GetFileName() );                                   \
     writer->SetInput(caster->GetOutput());                                        \
     writer->WriteGeomFileOn();                                                    \
-    writer->SetAutomaticAdaptativeStreaming(m_RAMValue);                          \
+    writer->SetAutomaticTiledStreaming(m_RAMValue);                               \
     writer->Update();                                                             \
   }
 
diff --git a/Code/IO/otbStreamingImageFileWriter.txx b/Code/IO/otbStreamingImageFileWriter.txx
index f4426b15de01cc9ffbf24bee1e7272d21b8c065d..e83e4d00298399942de3ef2ebc8d1b35266c0963 100644
--- a/Code/IO/otbStreamingImageFileWriter.txx
+++ b/Code/IO/otbStreamingImageFileWriter.txx
@@ -64,7 +64,7 @@ StreamingImageFileWriter<TInputImage>
 {
   // By default, we use tiled streaming, with automatic tile size
   // We don't set any parameter, so the memory size is retrieved from the OTB configuration options
-  this->SetAutomaticAdaptativeStreaming();
+  this->SetAutomaticTiledStreaming();
 }
 
 /**