Changes between Version 7 and Version 8 of Ticket #1365

Show
Ignore:
Timestamp:
03/26/07 21:38:32 (6 years ago)
Author:
warmerdam
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1365 – description

    v7 v8  
    1 {{{ 
     1 
    22Some GDAL drivers include multiple formats, with separate GDALRegister_* functions for each.  When built into GDAL, they are properly loaded by GDALAllRegister().  As a plugin, only the format of the plugin name is loaded by AutoLoadDrivers(), and any secondary formats are not.  This affects NetCDF (NetCDF + GMT), HDF4 (HDF4 + HDF4Image), HDF5 (HDF5 + HDF5Image), and ECW (ECW + JP2ECW).  There is also one similar case in OGR: ILI. 
    33 
     
    55 
    66In case GDAL is built with the drivers within GDAL, the secondary driver calls should also be removed from GDALAllRegister(), to eliminate unnecessary redundant calls to those. 
    7 }}}