diff Plugins/Engine/OrthancPlugins.cpp @ 3944:aae045f802f4 transcoding

preparing simplified interface for IDicomTranscoder
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 19 May 2020 10:17:06 +0200
parents e6606d3ec892
children 0b3256c3ee14
line wrap: on
line diff
--- a/Plugins/Engine/OrthancPlugins.cpp	Mon May 18 21:37:31 2020 +0200
+++ b/Plugins/Engine/OrthancPlugins.cpp	Tue May 19 10:17:06 2020 +0200
@@ -5212,12 +5212,12 @@
   };
   
 
-  bool OrthancPlugins::Transcode(std::string& target,
-                                 bool& hasSopInstanceUidChanged /* out */,
-                                 const void* buffer,
-                                 size_t size,
-                                 const std::set<DicomTransferSyntax>& allowedSyntaxes,
-                                 bool allowNewSopInstanceUid)
+  bool OrthancPlugins::TranscodeBuffer(std::string& target,
+                                       bool& hasSopInstanceUidChanged /* out */,
+                                       const void* buffer,
+                                       size_t size,
+                                       const std::set<DicomTransferSyntax>& allowedSyntaxes,
+                                       bool allowNewSopInstanceUid)
   {
     boost::shared_lock<boost::shared_mutex> lock(pimpl_->decoderTranscoderMutex_);