diff Core/DicomFormat/DicomImageInformation.h @ 860:80c7e53a69b5 jpeg

bugfix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 07 Jun 2014 10:32:15 +0200
parents ff530685e46a
children f5b0207967bc
line wrap: on
line diff
--- a/Core/DicomFormat/DicomImageInformation.h	Fri Jun 06 18:12:31 2014 +0200
+++ b/Core/DicomFormat/DicomImageInformation.h	Sat Jun 07 10:32:15 2014 +0200
@@ -48,7 +48,7 @@
 
     bool isPlanar_;
     bool isSigned_;
-    size_t bytesPerPixel_;
+    size_t bytesPerValue_;
 
     unsigned int bitsAllocated_;
     unsigned int bitsStored_;
@@ -82,9 +82,9 @@
       return bitsStored_;
     }
 
-    size_t GetBytesPerPixel() const
+    size_t GetBytesPerValue() const
     {
-      return bytesPerPixel_;
+      return bytesPerValue_;
     }
 
     bool IsSigned() const