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 Baseline (lossy, 8-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 DJDECBAS_H 00030 #define DJDECBAS_H 00031 00032 #include "dcmtk/config/osconfig.h" 00033 #include "dcmtk/dcmjpeg/djcodecd.h" /* for class DJCodecDecoder */ 00034 00037 class DJDecoderBaseline : public DJCodecDecoder 00038 { 00039 public: 00040 00042 DJDecoderBaseline(); 00043 00045 virtual ~DJDecoderBaseline(); 00046 00051 virtual E_TransferSyntax supportedTransferSyntax() const; 00052 00053 private: 00054 00062 virtual DJDecoder *createDecoderInstance( 00063 const DcmRepresentationParameter * toRepParam, 00064 const DJCodecParameter *cp, 00065 Uint8 bitsPerSample, 00066 OFBool isYBR) const; 00067 00068 }; 00069 00070 #endif 00071 00072 /* 00073 * CVS/RCS Log 00074 * $Log: djdecbas.h,v $ 00075 * Revision 1.3 2010-10-14 13:17:17 joergr 00076 * Updated copyright header. Added reference to COPYRIGHT file. 00077 * 00078 * Revision 1.2 2005-12-08 16:59:15 meichel 00079 * Changed include path schema for all DCMTK header files 00080 * 00081 * Revision 1.1 2001/11/13 15:56:18 meichel 00082 * Initial release of module dcmjpeg 00083 * 00084 * 00085 */