Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logImageCore.h « cineon « intern « imbuf « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbc7cb9d64a8cb146ec70d90e2fa5ef2808980dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/** \file blender/imbuf/intern/cineon/logImageCore.h
 *  \ingroup imbcineon
 */
/*
 *	 Cineon image file format library definitions.
 *	 Cineon and DPX common structures.
 *
 *	 This header file contains private details.
 *	 User code should generally use cineonlib.h and dpxlib.h only.
 *	 Hmm. I thought the two formats would have more in common!
 *
 *	 Copyright 1999,2000,2001 David Hodson <hodsond@acm.org>
 *
 *	 This program is free software; you can redistribute it and/or modify it
 *	 under the terms of the GNU General Public License as published by the Free
 *	 Software Foundation; either version 2 of the License, or (at your option)
 *	 any later version.
 *
 *	 This program is distributed in the hope that it will be useful, but
 *	 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 *	 or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU General Public License
 *	 for more details.
 *
 *	 You should have received a copy of the GNU General Public License
 *	 along with this program; if not, write to the Free Software
 *	 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#ifndef _LOG_IMAGE_CORE_H_
#define _LOG_IMAGE_CORE_H_

#include <stdio.h>
#include "logImageLib.h"

#ifdef __cplusplus
extern "C" {
#endif

#include "BLO_sys_types.h" // for intptr_t support

#ifdef _MSC_VER
#undef ntohl
#undef htonl
#endif

typedef int (GetRowFn)(LogImageFile* logImage, unsigned short* row, int lineNum);
typedef int (SetRowFn)(LogImageFile* logImage, const unsigned short* row, int lineNum);
typedef void (CloseFn)(LogImageFile* logImage);

struct _Log_Image_File_t_
{
	/* specified in header */
	int width;
	int height;
	int depth;
	int bitsPerPixel;
	int imageOffset;

	/* file buffer, measured in longwords (4 byte) */
	int lineBufferLength;
	unsigned int* lineBuffer;

	/* pixel buffer, holds 10 bit pixel values */
	unsigned short* pixelBuffer;
	int pixelBufferUsed;

	/* io stuff */
	FILE* file;
	int reading;
	int fileYPos;

	/* byte conversion stuff */
	LogImageByteConversionParameters params;
#if 0
	float gamma;
	int blackPoint;
	int whitePoint;
#endif
	unsigned char lut10[1024];
	unsigned short lut8[256];

	unsigned short lut10_16[1024];
	unsigned short lut16_16[65536];

	/* pixel access functions */
	GetRowFn* getRow;
	SetRowFn* setRow;
	CloseFn* close;
	
	unsigned char *membuffer;
	uintptr_t membuffersize;
	unsigned char *memcursor;
};

void setupLut(LogImageFile*);
void setupLut16(LogImageFile*);

int pixelsToLongs(int numPixels);

/* typedefs used in original docs */
/* note size assumptions! */

typedef unsigned int U32;
typedef unsigned short U16;
typedef unsigned char U8;
typedef signed int S32;
typedef float R32;
typedef char ASCII;

R32 htonf(R32 f);
R32 ntohf(R32 f);
R32 undefined(void);
U16 reverseU16(U16 value);
U32 reverseU32(U32 value);
R32 reverseR32(R32 value);

#ifdef __cplusplus
}
#endif

#endif /* _LOG_IMAGE_CORE_H_ */