comparison OrthancServer/ServerContext.h @ 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 c205f670098e
children 0b3256c3ee14
comparison
equal deleted inserted replaced
3943:b26d25d3c1c7 3944:aae045f802f4
491 DcmFileFormat& dicom /* in, possibly modified */, 491 DcmFileFormat& dicom /* in, possibly modified */,
492 const void* buffer /* in, same DICOM file as "dicom" */, 492 const void* buffer /* in, same DICOM file as "dicom" */,
493 size_t size, 493 size_t size,
494 const std::set<DicomTransferSyntax>& allowedSyntaxes, 494 const std::set<DicomTransferSyntax>& allowedSyntaxes,
495 bool allowNewSopInstanceUid) ORTHANC_OVERRIDE; 495 bool allowNewSopInstanceUid) ORTHANC_OVERRIDE;
496
497 virtual bool Transcode(DicomImage& target,
498 bool& hasSopInstanceUidChanged /* out */,
499 DicomImage& source /* in, "GetParsed()" possibly modified */,
500 const std::set<DicomTransferSyntax>& allowedSyntaxes,
501 bool allowNewSopInstanceUid) ORTHANC_OVERRIDE;
496 }; 502 };
497 } 503 }