LCOV - code coverage report
Current view: top level - frmts/jpeg - jpgdataset_12.cpp (source / functions) Hit Total Coverage
Test: gdal_filtered.info Lines: 5 5 100.0 %
Date: 2024-05-04 12:52:34 Functions: 2 2 100.0 %

          Line data    Source code
       1             : /******************************************************************************
       2             :  * $Id$
       3             :  *
       4             :  * Project:  JPEG JFIF Driver
       5             :  * Purpose:  Implement GDAL JPEG Support based on IJG libjpeg.
       6             :  * Author:   Even Rouault, even dot rouault at spatialys.com
       7             :  *
       8             :  ******************************************************************************
       9             :  * Copyright (c) 2009-2013, Even Rouault <even dot rouault at spatialys.com>
      10             :  *
      11             :  * Permission is hereby granted, free of charge, to any person obtaining a
      12             :  * copy of this software and associated documentation files (the "Software"),
      13             :  * to deal in the Software without restriction, including without limitation
      14             :  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
      15             :  * and/or sell copies of the Software, and to permit persons to whom the
      16             :  * Software is furnished to do so, subject to the following conditions:
      17             :  *
      18             :  * The above copyright notice and this permission notice shall be included
      19             :  * in all copies or substantial portions of the Software.
      20             :  *
      21             :  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
      22             :  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      23             :  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
      24             :  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      25             :  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
      26             :  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
      27             :  * DEALINGS IN THE SOFTWARE.
      28             :  ****************************************************************************/
      29             : 
      30             : #if defined(JPEG_DUAL_MODE_8_12)
      31             : 
      32             : #if !defined(HAVE_JPEGTURBO_DUAL_MODE_8_12)
      33             : #define LIBJPEG_12_PATH "libjpeg12/jpeglib.h"
      34             : #endif
      35             : #define JPGDataset JPGDataset12
      36             : #define GDALJPEGErrorStruct GDALJPEGErrorStruct12
      37             : #define jpeg_vsiio_src jpeg_vsiio_src_12
      38             : #define jpeg_vsiio_dest jpeg_vsiio_dest_12
      39             : #define GDALJPEGUserData GDALJPEGUserData12
      40             : 
      41             : #include "jpgdataset.cpp"
      42             : 
      43             : JPGDatasetCommon *JPEGDataset12Open(JPGDatasetOpenArgs *psArgs);
      44             : GDALDataset *JPEGDataset12CreateCopy(const char *pszFilename,
      45             :                                      GDALDataset *poSrcDS, int bStrict,
      46             :                                      char **papszOptions,
      47             :                                      GDALProgressFunc pfnProgress,
      48             :                                      void *pProgressData);
      49             : 
      50          14 : JPGDatasetCommon *JPEGDataset12Open(JPGDatasetOpenArgs *psArgs)
      51             : {
      52          14 :     return JPGDataset12::Open(psArgs);
      53             : }
      54             : 
      55           1 : GDALDataset *JPEGDataset12CreateCopy(const char *pszFilename,
      56             :                                      GDALDataset *poSrcDS, int bStrict,
      57             :                                      char **papszOptions,
      58             :                                      GDALProgressFunc pfnProgress,
      59             :                                      void *pProgressData)
      60             : {
      61           1 :     return JPGDataset12::CreateCopy(pszFilename, poSrcDS, bStrict, papszOptions,
      62           1 :                                     pfnProgress, pProgressData);
      63             : }
      64             : 
      65             : #endif /* defined(JPEG_DUAL_MODE_8_12) */

Generated by: LCOV version 1.14