00001 /* 00002 * 00003 * Copyright (C) 1997-2010, OFFIS e.V. 00004 * All rights reserved. See COPYRIGHT file for details. 00005 * 00006 * This software and supporting documentation were developed by 00007 * 00008 * OFFIS e.V. 00009 * R&D Division Health 00010 * Escherweg 2 00011 * D-26121 Oldenburg, Germany 00012 * 00013 * 00014 * Module: dcmjpeg 00015 * 00016 * Author: Marco Eichelberg, Norbert Olges 00017 * 00018 * Purpose: Codec class for decoding JPEG Extended Sequential (lossy, 8/12-bit) 00019 * 00020 * Last Update: $Author: joergr $ 00021 * Update Date: $Date: 2010-10-14 13:17:17 $ 00022 * CVS/RCS Revision: $Revision: 1.3 $ 00023 * Status: $State: Exp $ 00024 * 00025 * CVS/RCS Log at end of file 00026 * 00027 */ 00028 00029 #ifndef DJDECEXT_H 00030 #define DJDECEXT_H 00031 00032 #include "dcmtk/config/osconfig.h" 00033 #include "dcmtk/dcmjpeg/djcodecd.h" /* for class DJCodecDecoder */ 00034 00035 00038 class DJDecoderExtended : public DJCodecDecoder 00039 { 00040 public: 00041 00043 DJDecoderExtended(); 00044 00046 virtual ~DJDecoderExtended(); 00047 00052 virtual E_TransferSyntax supportedTransferSyntax() const; 00053 00054 private: 00055 00063 virtual DJDecoder *createDecoderInstance( 00064 const DcmRepresentationParameter * toRepParam, 00065 const DJCodecParameter *cp, 00066 Uint8 bitsPerSample, 00067 OFBool isYBR) const; 00068 00069 }; 00070 00071 #endif 00072 00073 /* 00074 * CVS/RCS Log 00075 * $Log: djdecext.h,v $ 00076 * Revision 1.3 2010-10-14 13:17:17 joergr 00077 * Updated copyright header. Added reference to COPYRIGHT file. 00078 * 00079 * Revision 1.2 2005-12-08 16:59:16 meichel 00080 * Changed include path schema for all DCMTK header files 00081 * 00082 * Revision 1.1 2001/11/13 15:56:19 meichel 00083 * Initial release of module dcmjpeg 00084 * 00085 * 00086 */