forked from ender672/liboil
-
Notifications
You must be signed in to change notification settings - Fork 1
/
oil_resample.h
149 lines (131 loc) · 5.29 KB
/
oil_resample.h
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/**
* Copyright (c) 2014-2019 Timothy Elliott
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef OIL_RESAMPLE_H
#define OIL_RESAMPLE_H
/**
* Color spaces currently supported by oil.
*/
enum oil_colorspace {
// error
OIL_CS_UNKNOWN = 0,
// greyscale - no color space conversions
OIL_CS_G = 0x0001,
// greyscale w/ alpha - uses premultiplied alpha
OIL_CS_GA = 0x0002,
// sRGB - input will be converted to linear RGB during processing
OIL_CS_RGB = 0x0003,
// sRGB w/ padding - same as OIL_CS_RGB, but padded with an extra byte
OIL_CS_RGBX = 0x0004, // sRGB w/ padding
// sRGB w/ alpha - sRGB to linear conversion and premultiplied alpha
OIL_CS_RGBA = 0x0104, // sRGB w/ alpha
// CMYK - no color space conversions
OIL_CS_CMYK = 0x0204, // four color CMYK
};
/**
* Macro to get the number of components from an oil color space.
*/
#define OIL_CMP(x) ((x)&0xFF)
/**
* Struct to hold state for scaling.
*/
struct oil_scale {
int in_height; // input image height.
int out_height; // output image height.
int in_width; // input image width.
int out_width; // output image height.
enum oil_colorspace cs; // color space of input & output.
int in_pos; // current row of input image.
int out_pos; // current row of output image.
int taps; // number of taps required to perform scaling.
int target; // where the ring buffer should be on next scaling.
int sl_len; // length in bytes of a row.
float ty; // sub-pixel offset for next scaling.
float *coeffs_y; // buffer for holding temporary y-coefficients.
float *coeffs_x; // buffer for holding precalculated coefficients.
int *borders; // holds precalculated coefficient rotation points.
float *rb; // ring buffer holding scanlines.
float **virt; // space to provide scanline pointers for scaling.
};
/**
* Initialize static, pre-calculated tables. This only needs to be called once.
* A call to oil_scale_init() will initialize these tables if not already done,
* so explicityly calling oil_global_init() is only needed if there are
* concurrency concerns.
*/
void oil_global_init(void);
/**
* Initialize an oil scaler struct.
* @os: Pointer to the scaler struct to be initialized.
* @in_height: Height, in pixels, of the input image.
* @out_height: Height, in pixels, of the output image.
* @in_width: Width, in pixels, of the input image.
* @out_width: Width, in pixels, of the output image.
* @cs: Color space of the input/output images.
*
* Returns 0 on success.
* Returns -1 if an argument is bad.
* Returns -2 if unable to allocate memory.
*/
int oil_scale_init(struct oil_scale *os, int in_height, int out_height,
int in_width, int out_width, enum oil_colorspace cs);
/**
* Free heap allocations associated with a yscaler struct.
* @ys: Pointer to the yscaler struct to be freed.
*/
void oil_scale_free(struct oil_scale *os);
/**
* Get a pointer to the next scanline to be filled in the ring buffer.
* @ys: Pointer to the yscaler struct to advance.
*
* Returns 0 if no more input lines are needed to produce the next output line.
* Otherwise, returns the number of input lines that are needed.
*/
int oil_scale_slots(struct oil_scale *ys);
/**
* Ingest & buffer an input scanline. Input is unsigned chars.
* @os: Pointer to the scaler struct.
* @in: Pointer to the input buffer containing a scanline.
*/
void oil_scale_in(struct oil_scale *os, unsigned char *in);
/**
* Scale previously ingested & buffered contents to produce the next scaled output
* scanline.
* @ys: Pointer to the scaler struct.
* @out: Pointer to the buffer where the output scanline will be written.
*/
void oil_scale_out(struct oil_scale *ys, unsigned char *out);
/**
* Calculate an output ratio that preserves the input aspect ratio.
* @src_width: Width, in pixels, of the input image.
* @src_height: Height, in pixels, of the input image.
* @out_width: Width, in pixels, of the output bounding box.
* @out_height: Height, in pixels, of the output bounding box.
*
* The out_width and out_height parameters will be modified, if necessary, to
* maintain the input aspect ratio while staying within the given bounding box.
*
* Returns 0 on success.
* Returns -1 if an argument is bad.
* Returns -3 if an adjusted dimension would be out of range.
*/
int oil_fix_ratio(int src_width, int src_height, int *out_width,
int *out_height);
#endif