• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*****************************************************************************/
2 // Copyright 2006-2009 Adobe Systems Incorporated
3 // All Rights Reserved.
4 //
5 // NOTICE:  Adobe permits you to use, modify, and distribute this file in
6 // accordance with the terms of the Adobe license agreement accompanying it.
7 /*****************************************************************************/
8 
9 /* $Id: //mondo/dng_sdk_1_4/dng_sdk/source/dng_bottlenecks.cpp#1 $ */
10 /* $DateTime: 2012/05/30 13:28:51 $ */
11 /* $Change: 832332 $ */
12 /* $Author: tknoll $ */
13 
14 /*****************************************************************************/
15 
16 #include "dng_bottlenecks.h"
17 
18 #include "dng_reference.h"
19 
20 /*****************************************************************************/
21 
22 dng_suite gDNGSuite =
23 	{
24 	RefZeroBytes,
25 	RefCopyBytes,
26 	RefSwapBytes16,
27 	RefSwapBytes32,
28 	RefSetArea8,
29 	RefSetArea16,
30 	RefSetArea32,
31 	RefCopyArea8,
32 	RefCopyArea16,
33 	RefCopyArea32,
34 	RefCopyArea8_16,
35 	RefCopyArea8_S16,
36 	RefCopyArea8_32,
37 	RefCopyArea16_S16,
38 	RefCopyArea16_32,
39 	RefCopyArea8_R32,
40 	RefCopyArea16_R32,
41 	RefCopyAreaS16_R32,
42 	RefCopyAreaR32_8,
43 	RefCopyAreaR32_16,
44 	RefCopyAreaR32_S16,
45 	RefRepeatArea8,
46 	RefRepeatArea16,
47 	RefRepeatArea32,
48 	RefShiftRight16,
49 	RefBilinearRow16,
50 	RefBilinearRow32,
51 	RefBaselineABCtoRGB,
52 	RefBaselineABCDtoRGB,
53 	RefBaselineHueSatMap,
54 	RefBaselineRGBtoGray,
55 	RefBaselineRGBtoRGB,
56 	RefBaseline1DTable,
57 	RefBaselineRGBTone,
58 	RefResampleDown16,
59 	RefResampleDown32,
60 	RefResampleAcross16,
61 	RefResampleAcross32,
62 	RefEqualBytes,
63 	RefEqualArea8,
64 	RefEqualArea16,
65 	RefEqualArea32,
66 	RefVignetteMask16,
67 	RefVignette16,
68 	RefVignette32,
69 	RefMapArea16
70 	};
71 
72 /*****************************************************************************/
73