X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmJPEGFragment.h;h=70f3312bc79f4a29da4be8739a4ee1a235016617;hb=fefc9b7857bfe001051ec94a59256f6c7b684277;hp=b3e0cc3ab4f920edd7a53e8ab71bd37cccd025b4;hpb=0e0403151bbff57175d2b974ee2d14b8195f9234;p=gdcm.git diff --git a/src/gdcmJPEGFragment.h b/src/gdcmJPEGFragment.h index b3e0cc3a..70f3312b 100644 --- a/src/gdcmJPEGFragment.h +++ b/src/gdcmJPEGFragment.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmJPEGFragment.h,v $ Language: C++ - Date: $Date: 2005/01/31 03:22:25 $ - Version: $Revision: 1.14 $ + Date: $Date: 2005/02/06 14:43:27 $ + Version: $Revision: 1.17 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -27,10 +27,9 @@ namespace gdcm { -#define JOCTET uint8_t - /** - * \brief Utility class for summerizing the informations of a JPEG + * \brief *very* internal class . Shouldn't appear here ! + * Utility class for summerizing the informations of a JPEG * fragment of an "Encapsulated JPEG Compressed Image". * This information is a mix of: * - the fragment offset @@ -45,17 +44,19 @@ class GDCM_EXPORT JPEGFragment public: JPEGFragment(); void Print( std::ostream &os = std::cout, std::string indent = "" ); - void DecompressJPEGFramesFromFile(std::ifstream *fp, uint8_t *buffer, int nBits, int & statesuspension); + void DecompressJPEGFramesFromFile(std::ifstream *fp, + uint8_t *buffer, int nBits, + int &statesuspension); - bool gdcm_read_JPEG_file8 (std::ifstream* fp, void* image_buffer, int & statesuspension ); - bool gdcm_read_JPEG_file12 (std::ifstream* fp, void* image_buffer, int & statesuspension ); - bool gdcm_read_JPEG_file16 (std::ifstream* fp, void* image_buffer, int & statesuspension ); + bool ReadJPEGFile8 (std::ifstream *fp, void *image_buffer, int &statesuspension ); + bool ReadJPEGFile12 (std::ifstream *fp, void *image_buffer, int &statesuspension ); + bool ReadJPEGFile16 (std::ifstream *fp, void *image_buffer, int &statesuspension ); void SetLength(uint32_t length) { Length = length; }; - uint32_t GetLength() { return Length;}; + uint32_t GetLength() { return Length; }; void SetOffset(uint32_t offset) { Offset = offset; }; - uint32_t GetOffset() { return Offset;}; - uint8_t *GetImage() { return pImage;}; + uint32_t GetOffset() { return Offset; }; + uint8_t *GetImage() { return pImage; }; private: uint32_t Offset;