]> Creatis software - gdcm.git/blob - src/jpeg/libijg/jdarith.c
ENH: Update the jpeg library. This patch is the result of the ijg lib + ls-patch...
[gdcm.git] / src / jpeg / libijg / jdarith.c
1 /*
2  * jdarith.c
3  *
4  * Copyright (C) 1991-1998, Thomas G. Lane.
5  * This file is part of the Independent JPEG Group's software.
6  * For conditions of distribution and use, see the accompanying README file.
7  *
8  * This file holds place for arithmetic entropy decoding routines.
9  */
10
11 #define JPEG_INTERNALS
12 #include "jinclude.h"
13 #include "jpeglib.h"
14
15
16 /*
17  * Module initialization routine for arithmetic entropy decoding.
18  */
19
20 GLOBAL(void)
21 jinit_arith_decoder (j_decompress_ptr cinfo)
22 {
23   ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
24 }