comparison 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
comparison
equal deleted inserted replaced
3893:7a5fa8f307e9 3894:8f7ad4989fec
4789 } 4789 }
4790 } 4790 }
4791 4791
4792 return NULL; 4792 return NULL;
4793 } 4793 }
4794
4795
4796 bool OrthancPlugins::Transcode(std::string& target,
4797 bool& hasSopInstanceUidChanged /* out */,
4798 const void* buffer,
4799 size_t size,
4800 const std::set<DicomTransferSyntax>& allowedSyntaxes,
4801 bool allowNewSopInstanceUid)
4802 {
4803 // TODO
4804 return false;
4805 }
4794 } 4806 }