jbig.h | jbig.h | |||
---|---|---|---|---|
/* | /* | |||
* Header file for the portable JBIG compression library | * Header file for the portable JBIG compression library | |||
* | * | |||
* Copyright 1995-2008 -- Markus Kuhn -- http://www.cl.cam.ac.uk/~mgk25/ | * Copyright 1995-2014 -- Markus Kuhn -- http://www.cl.cam.ac.uk/~mgk25/ | |||
* | ||||
* $Id: jbig.h 1303 2008-08-30 20:16:20Z mgk25 $ | ||||
*/ | */ | |||
#ifndef JBG_H | #ifndef JBG_H | |||
#define JBG_H | #define JBG_H | |||
#include <stddef.h> | #include <stddef.h> | |||
#include "jbig_ar.h" | #include "jbig_ar.h" | |||
/* | /* | |||
* JBIG-KIT version number | * JBIG-KIT version number | |||
*/ | */ | |||
#define JBG_VERSION "2.0" | #define JBG_VERSION "2.1" | |||
#define JBG_VERSION_MAJOR 2 | ||||
#define JBG_VERSION_MINOR 1 | ||||
/* | /* | |||
* JBIG-KIT licence agreement reference code: | * JBIG-KIT licence agreement reference code: | |||
* If you use JBIG-KIT under a commercial licence, please replace | * If you use JBIG-KIT under a commercial licence, please replace | |||
* below the letters GPL with the reference code that you received | * below the letters GPL with the reference code that you received | |||
* with your licence agreement. (This code is typically a letter "A" | * with your licence agreement. (This code is typically a letter "A" | |||
* followed by four decimal digits, e.g. "A1234".) | * followed by four decimal digits, e.g. "A1234".) | |||
*/ | */ | |||
#define JBG_LICENCE "GPL" | #define JBG_LICENCE "GPL" | |||
End of changes. 2 change blocks. | ||||
4 lines changed or deleted | 4 lines changed or added | |||
jbig85.h | jbig85.h | |||
---|---|---|---|---|
/* | /* | |||
* Header file for the T.85 "light" version of the portable | * Header file for the T.85 "light" version of the portable | |||
* JBIG image compression library | * JBIG image compression library | |||
* | * | |||
* Copyright 1995-2008 -- Markus Kuhn -- http://www.cl.cam.ac.uk/~mgk25/ | * Copyright 1995-2014 -- Markus Kuhn -- http://www.cl.cam.ac.uk/~mgk25/ | |||
* | ||||
* $Id: jbig85.h 1303 2008-08-30 20:16:20Z mgk25 $ | ||||
*/ | */ | |||
#ifndef JBG85_H | #ifndef JBG85_H | |||
#define JBG85_H | #define JBG85_H | |||
#include <stddef.h> | #include <stddef.h> | |||
#include "jbig_ar.h" | #include "jbig_ar.h" | |||
/* | /* | |||
* JBIG-KIT version number | * JBIG-KIT version number | |||
*/ | */ | |||
#define JBG85_VERSION "2.0" | #define JBG85_VERSION "2.1" | |||
#define JBG85_VERSION_MAJOR 2 | ||||
#define JBG85_VERSION_MINOR 1 | ||||
/* | /* | |||
* JBIG-KIT licence agreement reference code: | * JBIG-KIT licence agreement reference code: | |||
* If you use JBIG-KIT under a commercial licence, please replace | * If you use JBIG-KIT under a commercial licence, please replace | |||
* below the letters GPL with the reference code that you received | * below the letters GPL with the reference code that you received | |||
* with your licence agreement. (This code is typically a letter "A" | * with your licence agreement. (This code is typically a letter "A" | |||
* followed by four decimal digits, e.g. "A1234".) | * followed by four decimal digits, e.g. "A1234".) | |||
*/ | */ | |||
#define JBG85_LICENCE "GPL" | #define JBG85_LICENCE "GPL" | |||
End of changes. 2 change blocks. | ||||
4 lines changed or deleted | 4 lines changed or added | |||
jbig_ar.h | jbig_ar.h | |||
---|---|---|---|---|
/* | /* | |||
* Header file for the arithmetic encoder and decoder of | * Header file for the arithmetic encoder and decoder of | |||
* the portable JBIG compression library | * the portable JBIG compression library | |||
* | * | |||
* Markus Kuhn -- http://www.cl.cam.ac.uk/~mgk25/jbigkit/ | * Markus Kuhn -- http://www.cl.cam.ac.uk/~mgk25/jbigkit/ | |||
* | ||||
* $Id: jbig_ar.h 1291 2008-08-21 14:50:29Z mgk25 $ | ||||
*/ | */ | |||
#ifndef JBG_AR_H | #ifndef JBG_AR_H | |||
#define JBG_AR_H | #define JBG_AR_H | |||
/* | /* | |||
* Status of arithmetic encoder | * Status of arithmetic encoder | |||
*/ | */ | |||
struct jbg_arenc_state { | struct jbg_arenc_state { | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 0 lines changed or added | |||