OSDN Git Service

[DTXV] #26010 #PAN EL (WAV番号=ELの#PAN)を#PANELと誤認識しないよう修正。
[dtxmania/dtxmania.git] / @jpeglibソリューション / jpeg-8c / rdgif.c
1 /*\r
2  * rdgif.c\r
3  *\r
4  * Copyright (C) 1991-1997, Thomas G. Lane.\r
5  * This file is part of the Independent JPEG Group's software.\r
6  * For conditions of distribution and use, see the accompanying README file.\r
7  *\r
8  * This file contains routines to read input images in GIF format.\r
9  *\r
10  *****************************************************************************\r
11  * NOTE: to avoid entanglements with Unisys' patent on LZW compression,      *\r
12  * the ability to read GIF files has been removed from the IJG distribution. *\r
13  * Sorry about that.                                                         *\r
14  *****************************************************************************\r
15  *\r
16  * We are required to state that\r
17  *    "The Graphics Interchange Format(c) is the Copyright property of\r
18  *    CompuServe Incorporated. GIF(sm) is a Service Mark property of\r
19  *    CompuServe Incorporated."\r
20  */\r
21 \r
22 #include "cdjpeg.h"             /* Common decls for cjpeg/djpeg applications */\r
23 \r
24 #ifdef GIF_SUPPORTED\r
25 \r
26 /*\r
27  * The module selection routine for GIF format input.\r
28  */\r
29 \r
30 GLOBAL(cjpeg_source_ptr)\r
31 jinit_read_gif (j_compress_ptr cinfo)\r
32 {\r
33   fprintf(stderr, "GIF input is unsupported for legal reasons.  Sorry.\n");\r
34   exit(EXIT_FAILURE);\r
35   return NULL;                  /* keep compiler happy */\r
36 }\r
37 \r
38 #endif /* GIF_SUPPORTED */\r