diff OrthancServer/ServerContext.h @ 3913:6ddad3e0b569 transcoding

transcoding ZIP archive and media
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 08 May 2020 19:15:28 +0200
parents 7610af1532c3
children 0e3849268a55
line wrap: on
line diff
--- a/OrthancServer/ServerContext.h	Fri May 08 13:43:50 2020 +0200
+++ b/OrthancServer/ServerContext.h	Fri May 08 19:15:28 2020 +0200
@@ -229,8 +229,6 @@
     bool transcodeDicomProtocol_;
     std::unique_ptr<IDicomTranscoder>  dcmtkTranscoder_;
 
-    IDicomTranscoder& GetTranscoder();
-    
     StoreStatus StoreAfterTranscoding(std::string& resultPublicId,
                                       DicomInstanceToStore& dicom,
                                       StoreInstanceMode mode);
@@ -469,13 +467,8 @@
                               const std::string& moveOriginatorAet,
                               uint16_t moveOriginatorId);
 
-    // This method can be used even if the global option
+    // This accessor can be used even if the global option
     // "TranscodeDicomProtocol" is set to "false"
-    bool Transcode(std::string& target /* out */,
-                   DicomTransferSyntax& sourceSyntax /* out */,
-                   bool& hasSopInstanceUidChanged /* out */,
-                   ParsedDicomFile& dicom, // Possibly modified
-                   DicomTransferSyntax targetSyntax,
-                   bool allowNewSopInstanceUid);
+    IDicomTranscoder& GetTranscoder();
   };
 }