Mercurial > hg > orthanc
diff OrthancServer/Internals/DicomImageDecoder.cpp @ 2136:dd609a99d39a
uniformization of the macro naming
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 09 Nov 2016 14:08:05 +0100 |
parents | bb199bccdc45 |
children | a3a65de1840f |
line wrap: on
line diff
--- a/OrthancServer/Internals/DicomImageDecoder.cpp Wed Nov 09 13:42:33 2016 +0100 +++ b/OrthancServer/Internals/DicomImageDecoder.cpp Wed Nov 09 14:08:05 2016 +0100 @@ -94,13 +94,13 @@ #include <dcmtk/dcmdata/dcrleccd.h> #include <dcmtk/dcmdata/dcrlecp.h> -#if ORTHANC_JPEG_LOSSLESS_ENABLED == 1 +#if ORTHANC_ENABLE_JPEG_LOSSLESS == 1 # include <dcmtk/dcmjpls/djcodecd.h> # include <dcmtk/dcmjpls/djcparam.h> # include <dcmtk/dcmjpeg/djrplol.h> #endif -#if ORTHANC_JPEG_ENABLED == 1 +#if ORTHANC_ENABLE_JPEG == 1 # include <dcmtk/dcmjpeg/djcodecd.h> # include <dcmtk/dcmjpeg/djcparam.h> # include <dcmtk/dcmjpeg/djdecbas.h> @@ -517,7 +517,7 @@ } -#if ORTHANC_JPEG_LOSSLESS_ENABLED == 1 +#if ORTHANC_ENABLE_JPEG_LOSSLESS == 1 /** * Deal with JPEG-LS images. **/ @@ -549,7 +549,7 @@ #endif -#if ORTHANC_JPEG_ENABLED == 1 +#if ORTHANC_ENABLE_JPEG == 1 /** * Deal with JPEG images. **/