DocumentationOverviewBuilding ASL Documentation Library Wiki Docs Indices Browse Perforce More InfoRelease NotesWiki Site Search License Success Stories Contributors MediaDownloadPerforce Depots SupportASL SourceForge HomeMailing Lists Discussion Forums Report Bugs Suggest Features Contribute to ASL RSSShort-text newsFull-text news File releases Other Adobe ProjectsAdobe AirAdobe GIL Adobe Labs Adobe Media Gallery Adobe XMP Tamarin project (Mozilla Foundation) Other ResourcesBoostRIAForge SGI STL |
dng_sdk_limits.hGo to the documentation of this file.00001 /*****************************************************************************/ 00002 // Copyright 2006-2007 Adobe Systems Incorporated 00003 // All Rights Reserved. 00004 // 00005 // NOTICE: Adobe permits you to use, modify, and distribute this file in 00006 // accordance with the terms of the Adobe license agreement accompanying it. 00007 /*****************************************************************************/ 00008 00009 /* $Id: //mondo/workarea/stern/camera_raw/dng_sdk/source/dng_sdk_limits.h#9 $ */ 00010 /* $DateTime: 2007/12/24 13:18:53 $ */ 00011 /* $Change: 408196 $ */ 00012 /* $Author: stern $ */ 00013 00018 /*****************************************************************************/ 00019 00020 #ifndef __dng_sdk_limits__ 00021 #define __dng_sdk_limits__ 00022 00023 /*****************************************************************************/ 00024 00025 #include "dng_types.h" 00026 00027 /*****************************************************************************/ 00028 00031 00032 const uint32 kMaxDNGPreviews = 20; 00033 00035 00036 const uint32 kMaxSubIFDs = kMaxDNGPreviews + 1; 00037 00039 00040 const uint32 kMaxChainedIFDs = 10; 00041 00043 00044 const uint32 kMaxSamplesPerPixel = 4; 00045 00047 00048 const uint32 kMaxColorPlanes = kMaxSamplesPerPixel; 00049 00051 00052 const uint32 kMaxCFAPattern = 8; 00053 00055 00056 const uint32 kMaxBlackPattern = 8; 00057 00059 00060 const uint32 kMaxMaskedAreas = 4; 00061 00063 00064 const uint32 kMaxImageSide = 65000; 00065 00067 00068 const uint32 kMaxMPThreads = 8; 00069 00070 /*****************************************************************************/ 00071 00072 #endif 00073 00074 /*****************************************************************************/ |