diff Plugins/Engine/OrthancPlugins.cpp @ 3894:8f7ad4989fec transcoding

transcoding to uncompressed transfer syntaxes over DICOM protocol is implemented
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 May 2020 11:13:29 +0200
parents 1491d501836a
children 32e95d28efb2
line wrap: on
line diff
--- a/Plugins/Engine/OrthancPlugins.cpp	Wed May 06 12:48:28 2020 +0200
+++ b/Plugins/Engine/OrthancPlugins.cpp	Thu May 07 11:13:29 2020 +0200
@@ -4791,4 +4791,16 @@
     
     return NULL;
   }
+
+
+  bool OrthancPlugins::Transcode(std::string& target,
+                                 bool& hasSopInstanceUidChanged /* out */,
+                                 const void* buffer,
+                                 size_t size,
+                                 const std::set<DicomTransferSyntax>& allowedSyntaxes,
+                                 bool allowNewSopInstanceUid)
+  {
+    // TODO
+    return false;
+  }
 }