diff Core/DicomParsing/Internals/DicomFrameIndex.h @ 3745:113a7b994a12

extracting the raw frame in the transcoder
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 12 Mar 2020 21:48:35 +0100
parents 2a170a8f1faf
children
line wrap: on
line diff
--- a/Core/DicomParsing/Internals/DicomFrameIndex.h	Thu Mar 12 17:58:34 2020 +0100
+++ b/Core/DicomParsing/Internals/DicomFrameIndex.h	Thu Mar 12 21:48:35 2020 +0100
@@ -67,7 +67,7 @@
     unsigned int             countFrames_;
 
   public:
-    DicomFrameIndex(DcmFileFormat& dicom);
+    DicomFrameIndex(DcmDataset& dicom);
 
     unsigned int GetFramesCount() const
     {
@@ -77,8 +77,6 @@
     void GetRawFrame(std::string& frame,
                      unsigned int index) const;
 
-    static bool IsVideo(DcmFileFormat& dicom);
-
-    static unsigned int GetFramesCount(DcmFileFormat& dicom);
+    static unsigned int GetFramesCount(DcmDataset& dicom);
   };
 }