~ubuntu-branches/ubuntu/saucy/libjpeg-turbo/saucy-security

« back to all changes in this revision

Viewing changes to jpeglib.h

  • Committer: Package Import Robot
  • Author(s): Fathi Boudra
  • Date: 2013-07-28 16:52:51 UTC
  • mfrom: (1.1.3) (9.1.1 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130728165251-7vg6wszhm941kdej
Tags: 1.3.0-0ubuntu1
* New upstream release.
  - drop debian/patches/branch-updates.diff
  - refresh tjunittest.patch (now renamed to install-tjunittest.patch)
* Update debian/control:
  - add myself to Uploaders.
* Update debian/copyright:
  - add RSA Data Security copyright (md5).
* Update debian/libturbojpeg.install:
  - install libturbojpeg.so.0* (needed by tjunittest and tjbench).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * jpeglib.h
3
3
 *
 
4
 * This file was part of the Independent JPEG Group's software:
4
5
 * Copyright (C) 1991-1998, Thomas G. Lane.
5
6
 * Modified 2002-2009 by Guido Vollbeding.
6
 
 * Copyright (C) 2009-2011, D. R. Commander.
7
 
 * This file is part of the Independent JPEG Group's software.
 
7
 * Modifications:
 
8
 * Copyright (C) 2009-2011, 2013, D. R. Commander.
8
9
 * For conditions of distribution and use, see the accompanying README file.
9
10
 *
10
11
 * This file defines the application interface for the JPEG library.
912
913
#define jpeg_destroy_decompress jDestDecompress
913
914
#define jpeg_stdio_dest         jStdDest
914
915
#define jpeg_stdio_src          jStdSrc
915
 
#if JPEG_LIB_VERSION >= 80
 
916
#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
916
917
#define jpeg_mem_dest           jMemDest
917
918
#define jpeg_mem_src            jMemSrc
918
919
#endif
999
1000
EXTERN(void) jpeg_stdio_dest JPP((j_compress_ptr cinfo, FILE * outfile));
1000
1001
EXTERN(void) jpeg_stdio_src JPP((j_decompress_ptr cinfo, FILE * infile));
1001
1002
 
1002
 
#if JPEG_LIB_VERSION >= 80
 
1003
#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
1003
1004
/* Data source and destination managers: memory buffers. */
1004
1005
EXTERN(void) jpeg_mem_dest JPP((j_compress_ptr cinfo,
1005
1006
                               unsigned char ** outbuffer,