]> Creatis software - gdcm.git/blob - src/gdcmJpegLS.cxx
Fix mistypings
[gdcm.git] / src / gdcmJpegLS.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmJpegLS.cxx,v $
5   Language:  C++
6   Date:      $Date: 2007/05/23 14:18:10 $
7   Version:   $Revision: 1.6 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18 #include "gdcmFileHelper.h"
19 #include "gdcmDebug.h"
20
21 #include <iostream>
22 #include <fstream>
23
24 namespace GDCM_NAME_SPACE 
25 {
26
27 //-----------------------------------------------------------------------------
28  /**
29  * \brief   routine for JPEG decompression. WARNING LPEG-LS is NOT
30  *   the 'classical' jpeg lossless. See :
31  *   http://www.jpeg.org/jpeg/jpegls.html
32  *   gdcm DOES deal with 'classical' jpeg lossless
33  *
34  * @param fp pointer to an already open file descriptor 
35  *                      JPEG-LS encoded image
36  * @param image_buffer to receive uncompressed pixels
37  * @return 1 on success, 0 on error
38  * @warning : not yet made
39  */
40
41 bool gdcm_read_JPEGLS_file (std::ifstream *fp, void *image_buffer)
42 {
43    (void)fp;
44    (void)image_buffer;
45    gdcmWarningMacro( "Sorry JPEG-LS File not yet taken into account" );
46    return false;
47 }
48 } // end namespace gdcm
49
50 //-----------------------------------------------------------------------------
51