2014-07-21 11:16:03 +04:00
/* stb_resample - v0.1 - public domain image resampling
no warranty implied ; use at your own risk
Do this :
# define STB_RESAMPLE_IMPLEMENTATION
before you include this file in * one * C or C + + file to create the implementation .
# define STBR_ASSERT(x) to avoid using assert.h.
Latest revisions :
See end of file for full revision history .
Initial implementation by Jorge L Rodriguez
*/
# ifndef STBR_INCLUDE_STB_RESAMPLE_H
# define STBR_INCLUDE_STB_RESAMPLE_H
// Basic usage:
2014-07-24 09:17:56 +04:00
// result = stbr_resize(input_data, input_w, input_h, 0, output_data, output_w, output_h, 0, channels, alpha_channel, STBR_TYPE_UINT8, STBR_FILTER_BILINEAR, STBR_EDGE_CLAMP, STBR_COLORSPACE_SRGB);
2014-07-21 11:16:03 +04:00
//
// input_data is your supplied texels.
2014-07-22 05:01:05 +04:00
// output_data will be the resized texels. It should be of size output_w * output_h * input_components (or output_h * output_stride if you provided a stride.)
// If input_stride or output_stride is 0 (as in this example) the stride will be automatically calculated as width*components.
2014-07-22 02:36:43 +04:00
// Returned result is 1 for success or 0 in case of an error.
2014-07-21 11:16:03 +04:00
typedef enum
{
2014-07-27 00:07:04 +04:00
STBR_FILTER_NEAREST = 1 ,
STBR_FILTER_BILINEAR = 2 ,
STBR_FILTER_BICUBIC = 3 , // A cubic b spline
2014-07-27 01:52:28 +04:00
STBR_FILTER_CATMULLROM = 4 ,
2014-07-27 02:06:31 +04:00
STBR_FILTER_MITCHELL = 5 ,
2014-07-21 11:16:03 +04:00
} stbr_filter ;
2014-07-22 03:14:32 +04:00
typedef enum
{
2014-07-27 06:30:13 +04:00
STBR_EDGE_CLAMP = 1 ,
2014-07-27 06:11:02 +04:00
STBR_EDGE_REFLECT = 2 ,
2014-07-27 06:30:13 +04:00
STBR_EDGE_WRAP = 3 ,
2014-07-22 03:14:32 +04:00
} stbr_edge ;
2014-07-22 06:51:11 +04:00
typedef enum
{
STBR_COLORSPACE_LINEAR = 1 ,
2014-07-24 09:17:56 +04:00
STBR_COLORSPACE_SRGB = 2 ,
2014-07-29 22:39:42 +04:00
// If you add here, update STBR_MAX_COLORSPACES
2014-07-22 06:51:11 +04:00
} stbr_colorspace ;
2014-07-29 22:39:42 +04:00
# define STBR_MAX_COLORSPACES 2
2014-07-24 09:17:56 +04:00
typedef enum
{
2014-07-27 11:09:22 +04:00
STBR_TYPE_UINT8 = 1 ,
STBR_TYPE_UINT16 = 2 ,
STBR_TYPE_UINT32 = 3 ,
STBR_TYPE_FLOAT = 4 ,
2014-07-29 22:39:42 +04:00
// If you add here, update STBR_MAX_TYPES
2014-07-24 09:17:56 +04:00
} stbr_type ;
2014-07-21 11:16:03 +04:00
2014-07-29 22:39:42 +04:00
# define STBR_MAX_TYPES 4
2014-07-21 11:16:03 +04:00
typedef unsigned char stbr_uc ;
2014-07-24 09:17:56 +04:00
typedef unsigned int stbr_size_t ; // to avoid including a header for size_t
2014-07-21 11:16:03 +04:00
# ifdef __cplusplus
extern " C " {
# endif
# ifdef STB_RESAMPLE_STATIC
# define STBRDEF static
# else
# define STBRDEF extern
# endif
//////////////////////////////////////////////////////////////////////////////
//
// PRIMARY API - resize an image
//
2014-07-24 09:17:56 +04:00
STBRDEF stbr_size_t stbr_calculate_memory ( int input_w , int input_h , int input_stride_in_bytes ,
int output_w , int output_h , int output_stride_in_bytes ,
int channels , stbr_filter filter ) ;
STBRDEF int stbr_resize_arbitrary ( const void * input_data , int input_w , int input_h , int input_stride_in_bytes ,
void * output_data , int output_w , int output_h , int output_stride_in_bytes ,
//int channels, int alpha_channel, stbr_type type, stbr_filter filter, stbr_edge edge, stbr_colorspace colorspace,
2014-07-27 10:44:45 +04:00
int channels , stbr_type type , stbr_filter filter , stbr_edge edge , stbr_colorspace colorspace ,
2014-07-24 09:17:56 +04:00
void * tempmem , stbr_size_t tempmem_size_in_bytes ) ;
2014-07-21 11:16:03 +04:00
# ifdef __cplusplus
}
# endif
//
//
//// end header file /////////////////////////////////////////////////////
# endif // STBR_INCLUDE_STB_RESAMPLE_H
# ifdef STB_RESIZE_IMPLEMENTATION
# ifndef STBR_ASSERT
# include <assert.h>
# define STBR_ASSERT(x) assert(x)
# endif
2014-07-24 09:17:56 +04:00
# ifdef STBR_DEBUG
# define STBR_DEBUG_ASSERT STBR_ASSERT
# else
# define STBR_DEBUG_ASSERT
# endif
// If you hit this it means I haven't done it yet.
# define STBR_UNIMPLEMENTED(x) STBR_ASSERT(!(x))
2014-07-29 22:39:42 +04:00
// For memset
2014-07-21 11:16:03 +04:00
# include <string.h>
2014-07-24 09:17:56 +04:00
# include <math.h>
2014-07-21 11:16:03 +04:00
# ifndef _MSC_VER
# ifdef __cplusplus
# define stbr_inline inline
# else
# define stbr_inline
# endif
# else
# define stbr_inline __forceinline
# endif
# ifdef _MSC_VER
typedef unsigned short stbr__uint16 ;
typedef signed short stbr__int16 ;
typedef unsigned int stbr__uint32 ;
typedef signed int stbr__int32 ;
# else
# include <stdint.h>
typedef uint16_t stbr__uint16 ;
typedef int16_t stbr__int16 ;
typedef uint32_t stbr__uint32 ;
typedef int32_t stbr__int32 ;
# endif
// should produce compiler error if size is wrong
typedef unsigned char stbr__validate_uint32 [ sizeof ( stbr__uint32 ) = = 4 ? 1 : - 1 ] ;
# ifdef _MSC_VER
# define STBR_NOTUSED(v) (void)(v)
# else
# define STBR_NOTUSED(v) (void)sizeof(v)
# endif
2014-07-24 09:17:56 +04:00
# define STBR_ARRAY_SIZE(a) (sizeof((a)) / sizeof((a)[0]))
2014-07-29 22:39:42 +04:00
# define STBR__MAX_UNROLLED_CHANNELS 4
2014-07-24 09:17:56 +04:00
// Kernel function centered at 0
typedef float ( stbr__kernel_fn ) ( float x ) ;
typedef struct
{
stbr__kernel_fn * kernel ;
float support ;
} stbr__filter_info ;
2014-07-25 06:10:45 +04:00
// When upsampling, the contributors are which source texels contribute.
// When downsampling, the contributors are which destination texels are contributed to.
2014-07-24 09:17:56 +04:00
typedef struct
{
2014-07-25 06:10:45 +04:00
int n0 ; // First contributing texel
int n1 ; // Last contributing texel
2014-07-24 09:17:56 +04:00
} stbr__contributors ;
typedef struct
{
2014-07-24 11:47:00 +04:00
const void * input_data ;
int input_w ;
int input_h ;
int input_stride_bytes ;
void * output_data ;
int output_w ;
int output_h ;
int output_stride_bytes ;
int channels ;
stbr_type type ;
stbr_filter filter ;
2014-07-26 22:51:02 +04:00
stbr_edge edge ;
2014-07-27 10:44:45 +04:00
stbr_colorspace colorspace ;
2014-07-24 11:47:00 +04:00
2014-07-24 09:17:56 +04:00
stbr__contributors * horizontal_contributors ;
float * horizontal_coefficients ;
2014-07-24 10:08:06 +04:00
2014-07-25 01:20:18 +04:00
stbr__contributors vertical_contributors ;
float * vertical_coefficients ;
2014-07-26 22:51:02 +04:00
int decode_buffer_texels ;
2014-07-24 10:08:06 +04:00
float * decode_buffer ;
2014-07-24 11:47:00 +04:00
2014-07-25 09:09:08 +04:00
float * horizontal_buffer ;
2014-07-26 22:51:02 +04:00
int ring_buffer_length_bytes ; // The length of an individual entry in the ring buffer. The total number of ring buffers is stbr__get_filter_texel_width(filter)
2014-07-24 11:47:00 +04:00
int ring_buffer_first_scanline ;
int ring_buffer_last_scanline ;
int ring_buffer_begin_index ;
float * ring_buffer ;
2014-07-25 01:20:18 +04:00
float * encode_buffer ; // A temporary buffer to store floats so we don't lose precision while we do multiply-adds.
2014-07-24 09:17:56 +04:00
} stbr__info ;
2014-07-25 06:10:45 +04:00
static stbr_inline int stbr__min ( int a , int b )
{
return a < b ? a : b ;
}
static stbr_inline int stbr__max ( int a , int b )
{
return a > b ? a : b ;
}
2014-07-27 09:49:56 +04:00
static stbr_inline float stbr__saturate ( float x )
{
if ( x < 0 )
return 0 ;
if ( x > 1 )
return 1 ;
return x ;
}
2014-07-27 10:44:45 +04:00
static float stbr__srgb_uchar_to_linear_float [ 256 ] = {
0.000000f , 0.000304f , 0.000607f , 0.000911f , 0.001214f , 0.001518f , 0.001821f , 0.002125f , 0.002428f , 0.002732f , 0.003035f , 0.003347f , 0.003677f , 0.004025f , 0.004391f , 0.004777f , 0.005182f , 0.005605f , 0.006049f , 0.006512f , 0.006995f , 0.007499f , 0.008023f , 0.008568f , 0.009134f , 0.009721f , 0.010330f , 0.010960f , 0.011612f , 0.012286f , 0.012983f , 0.013702f , 0.014444f , 0.015209f , 0.015996f , 0.016807f , 0.017642f , 0.018500f , 0.019382f , 0.020289f , 0.021219f , 0.022174f , 0.023153f , 0.024158f , 0.025187f , 0.026241f , 0.027321f , 0.028426f , 0.029557f , 0.030713f , 0.031896f , 0.033105f , 0.034340f , 0.035601f , 0.036889f , 0.038204f , 0.039546f , 0.040915f , 0.042311f , 0.043735f , 0.045186f , 0.046665f , 0.048172f , 0.049707f , 0.051269f , 0.052861f , 0.054480f , 0.056128f , 0.057805f , 0.059511f , 0.061246f , 0.063010f , 0.064803f , 0.066626f , 0.068478f , 0.070360f , 0.072272f , 0.074214f , 0.076185f , 0.078187f , 0.080220f , 0.082283f , 0.084376f , 0.086500f , 0.088656f , 0.090842f , 0.093059f , 0.095307f , 0.097587f , 0.099899f , 0.102242f , 0.104616f , 0.107023f , 0.109462f , 0.111932f , 0.114435f , 0.116971f , 0.119538f , 0.122139f , 0.124772f , 0.127438f , 0.130136f , 0.132868f , 0.135633f , 0.138432f , 0.141263f , 0.144128f , 0.147027f , 0.149960f , 0.152926f , 0.155926f , 0.158961f , 0.162029f , 0.165132f , 0.168269f , 0.171441f , 0.174647f , 0.177888f , 0.181164f , 0.184475f , 0.187821f , 0.191202f , 0.194618f , 0.198069f , 0.201556f , 0.205079f , 0.208637f , 0.212231f , 0.215861f , 0.219526f , 0.223228f , 0.226966f , 0.230740f , 0.234551f , 0.238398f , 0.242281f , 0.246201f , 0.250158f , 0.254152f , 0.258183f , 0.262251f , 0.266356f , 0.270498f , 0.274677f , 0.278894f , 0.283149f , 0.287441f , 0.291771f , 0.296138f , 0.300544f , 0.304987f , 0.309469f , 0.313989f , 0.318547f , 0.323143f , 0.327778f , 0.332452f , 0.337164f , 0.341914f , 0.346704f , 0.351533f , 0.356400f , 0.361307f , 0.366253f , 0.371238f , 0.376262f , 0.381326f , 0.386430f , 0.391573f , 0.396755f , 0.401978f , 0.407240f , 0.412543f , 0.417885f , 0.423268f , 0.428691f , 0.434154f , 0.439657f , 0.445201f , 0.450786f , 0.456411f , 0.462077f , 0.467784f , 0.473532f , 0.479320f , 0.485150f , 0.491021f , 0.496933f , 0.502887f , 0.508881f , 0.514918f , 0.520996f , 0.527115f , 0.533276f , 0.539480f , 0.545725f , 0.552011f , 0.558340f , 0.564712f , 0.571125f , 0.577581f , 0.584078f , 0.590619f , 0.597202f , 0.603827f , 0.610496f , 0.617207f , 0.623960f , 0.630757f , 0.637597f , 0.644480f , 0.651406f , 0.658375f , 0.665387f , 0.672443f , 0.679543f , 0.686685f , 0.693872f , 0.701102f , 0.708376f , 0.715694f , 0.723055f , 0.730461f , 0.737911f , 0.745404f , 0.752942f , 0.760525f , 0.768151f , 0.775822f , 0.783538f , 0.791298f , 0.799103f , 0.806952f , 0.814847f , 0.822786f , 0.830770f , 0.838799f , 0.846873f , 0.854993f , 0.863157f , 0.871367f , 0.879622f , 0.887923f , 0.896269f , 0.904661f , 0.913099f , 0.921582f , 0.930111f , 0.938686f , 0.947307f , 0.955974f , 0.964686f , 0.973445f , 0.982251f , 0.991102f , 1.0f
} ;
static unsigned char stbr__linear_uchar_to_srgb_uchar [ 256 ] = {
0 , 12 , 21 , 28 , 33 , 38 , 42 , 46 , 49 , 52 , 55 , 58 , 61 , 63 , 66 , 68 , 70 , 73 , 75 , 77 , 79 , 81 , 82 , 84 , 86 , 88 , 89 , 91 , 93 , 94 , 96 , 97 , 99 , 100 , 102 , 103 , 104 , 106 , 107 , 109 , 110 , 111 , 112 , 114 , 115 , 116 , 117 , 118 , 120 , 121 , 122 , 123 , 124 , 125 , 126 , 127 , 129 , 130 , 131 , 132 , 133 , 134 , 135 , 136 , 137 , 138 , 139 , 140 , 141 , 142 , 142 , 143 , 144 , 145 , 146 , 147 , 148 , 149 , 150 , 151 , 151 , 152 , 153 , 154 , 155 , 156 , 157 , 157 , 158 , 159 , 160 , 161 , 161 , 162 , 163 , 164 , 165 , 165 , 166 , 167 , 168 , 168 , 169 , 170 , 171 , 171 , 172 , 173 , 174 , 174 , 175 , 176 , 176 , 177 , 178 , 179 , 179 , 180 , 181 , 181 , 182 , 183 , 183 , 184 , 185 , 185 , 186 , 187 , 187 , 188 , 189 , 189 , 190 , 191 , 191 , 192 , 193 , 193 , 194 , 194 , 195 , 196 , 196 , 197 , 197 , 198 , 199 , 199 , 200 , 201 , 201 , 202 , 202 , 203 , 204 , 204 , 205 , 205 , 206 , 206 , 207 , 208 , 208 , 209 , 209 , 210 , 210 , 211 , 212 , 212 , 213 , 213 , 214 , 214 , 215 , 215 , 216 , 217 , 217 , 218 , 218 , 219 , 219 , 220 , 220 , 221 , 221 , 222 , 222 , 223 , 223 , 224 , 224 , 225 , 226 , 226 , 227 , 227 , 228 , 228 , 229 , 229 , 230 , 230 , 231 , 231 , 232 , 232 , 233 , 233 , 234 , 234 , 235 , 235 , 236 , 236 , 237 , 237 , 237 , 238 , 238 , 239 , 239 , 240 , 240 , 241 , 241 , 242 , 242 , 243 , 243 , 244 , 244 , 245 , 245 , 245 , 246 , 246 , 247 , 247 , 248 , 248 , 249 , 249 , 250 , 250 , 251 , 251 , 251 , 252 , 252 , 253 , 253 , 254 , 254 , 255
} ;
2014-07-27 11:09:22 +04:00
float stbr__srgb_to_linear ( float f )
{
if ( f < = 0.04045f )
return f / 12.92f ;
else
return ( float ) pow ( ( f + 0.055f ) / 1.055f , 2.4f ) ;
}
float stbr__linear_to_srgb ( float f )
{
if ( f < = 0.0031308f )
return f * 12.92f ;
else
return 1.055f * ( float ) pow ( f , 1 / 2.4f ) - 0.055f ;
}
2014-07-25 06:10:45 +04:00
static float stbr__filter_nearest ( float x )
2014-07-24 09:17:56 +04:00
{
2014-07-27 00:07:04 +04:00
x = ( float ) fabs ( x ) ;
if ( x < = 0.5 )
2014-07-24 09:17:56 +04:00
return 1 ;
else
return 0 ;
}
2014-07-27 00:07:04 +04:00
static float stbr__filter_bilinear ( float x )
2014-07-26 22:51:02 +04:00
{
x = ( float ) fabs ( x ) ;
if ( x < = 1.0f )
return 1 - x ;
else
return 0 ;
}
2014-07-27 00:07:04 +04:00
static float stbr__filter_bicubic ( float x )
{
x = ( float ) fabs ( x ) ;
if ( x < 1.0f )
2014-07-27 11:55:47 +04:00
return 0.66666666666f + x * x * ( 0.5f * x - 1 ) ;
2014-07-27 00:07:04 +04:00
else if ( x < 2.0f )
2014-07-27 11:55:47 +04:00
return 1.3333333333f + x * ( - 2 + x * ( 1 - 0.16666666f * x ) ) ;
2014-07-27 00:07:04 +04:00
return ( 0.0f ) ;
}
2014-07-27 01:52:28 +04:00
static float stbr__filter_catmullrom ( float x )
{
x = ( float ) fabs ( x ) ;
if ( x < 1.0f )
2014-07-29 11:33:29 +04:00
return 1 - x * x * ( 2.5f - 1.5f * x ) ;
2014-07-27 01:52:28 +04:00
else if ( x < 2.0f )
2014-07-27 11:55:47 +04:00
return 2 - x * ( 4 + x * ( 0.5f * x - 2.5f ) ) ;
2014-07-27 01:52:28 +04:00
return ( 0.0f ) ;
}
2014-07-27 02:06:31 +04:00
static float stbr__filter_mitchell ( float x )
{
x = ( float ) fabs ( x ) ;
if ( x < 1.0f )
2014-07-27 11:55:47 +04:00
return 0.8888888888f + x * x * ( 1.1666666666666f * x - 2.0f ) ;
2014-07-27 02:06:31 +04:00
else if ( x < 2.0f )
2014-07-27 11:55:47 +04:00
return 1.777777777777f + x * ( - 3.3333333333f + x * ( 2 - 0.3888888888888f * x ) ) ;
2014-07-27 02:06:31 +04:00
return ( 0.0f ) ;
}
2014-07-25 06:10:45 +04:00
static stbr__filter_info stbr__filter_info_table [ ] = {
2014-07-27 01:52:28 +04:00
{ NULL , 0.0f } ,
{ stbr__filter_nearest , 0.5f } ,
{ stbr__filter_bilinear , 1.0f } ,
{ stbr__filter_bicubic , 2.0f } ,
{ stbr__filter_catmullrom , 2.0f } ,
2014-07-27 02:06:31 +04:00
{ stbr__filter_mitchell , 2.0f } ,
2014-07-24 09:17:56 +04:00
} ;
2014-07-25 10:50:14 +04:00
stbr_inline static int stbr__use_width_upsampling_noinfo ( int output_w , int input_w )
{
return output_w > input_w ;
}
stbr_inline static int stbr__use_height_upsampling_noinfo ( int output_h , int input_h )
{
return output_h > input_h ;
}
stbr_inline static int stbr__use_width_upsampling ( stbr__info * stbr_info )
{
return stbr__use_width_upsampling_noinfo ( stbr_info - > output_w , stbr_info - > input_w ) ;
}
stbr_inline static int stbr__use_height_upsampling ( stbr__info * stbr_info )
{
return stbr__use_height_upsampling_noinfo ( stbr_info - > output_h , stbr_info - > input_h ) ;
}
2014-07-24 09:17:56 +04:00
// This is the maximum number of input samples that can affect an output sample
// with the given filter
2014-07-25 06:10:45 +04:00
stbr_inline static int stbr__get_filter_texel_width ( stbr_filter filter )
2014-07-24 09:17:56 +04:00
{
STBR_ASSERT ( filter ! = 0 ) ;
STBR_ASSERT ( filter < STBR_ARRAY_SIZE ( stbr__filter_info_table ) ) ;
return ( int ) ceil ( stbr__filter_info_table [ filter ] . support * 2 ) ;
}
2014-07-26 22:51:02 +04:00
// This is how much to expand buffers to account for filters seeking outside
// the image boundaries.
stbr_inline static int stbr__get_filter_texel_margin ( stbr_filter filter )
{
return stbr__get_filter_texel_width ( filter ) / 2 ;
}
stbr_inline static int stbr__get_horizontal_contributors ( stbr_filter filter , int input_w , int output_w )
{
if ( stbr__use_width_upsampling_noinfo ( output_w , input_w ) )
return output_w ;
else
return ( input_w + stbr__get_filter_texel_margin ( filter ) * 2 ) ;
}
2014-07-25 06:10:45 +04:00
stbr_inline static int stbr__get_total_coefficients ( stbr_filter filter , int input_w , int output_w )
2014-07-24 09:17:56 +04:00
{
2014-07-26 22:51:02 +04:00
return stbr__get_horizontal_contributors ( filter , input_w , output_w ) * stbr__get_filter_texel_width ( filter ) ;
2014-07-24 09:17:56 +04:00
}
stbr_inline static stbr__contributors * stbr__get_contributor ( stbr__info * stbr_info , int n )
2014-07-21 11:16:03 +04:00
{
2014-07-26 22:51:02 +04:00
STBR_DEBUG_ASSERT ( n > = 0 & & n < stbr__get_horizontal_contributors ( stbr_info - > filter , stbr_info - > input_w , stbr_info - > output_w ) ) ;
2014-07-24 09:17:56 +04:00
return & stbr_info - > horizontal_contributors [ n ] ;
2014-07-21 11:16:03 +04:00
}
2014-07-24 09:17:56 +04:00
stbr_inline static float * stbr__get_coefficient ( stbr__info * stbr_info , int n , int c )
2014-07-21 11:16:03 +04:00
{
2014-07-26 22:51:02 +04:00
return & stbr_info - > horizontal_coefficients [ stbr__get_filter_texel_width ( stbr_info - > filter ) * n + c ] ;
}
stbr_inline static int stbr__edge_wrap ( stbr_edge edge , int n , int max )
{
switch ( edge )
{
case STBR_EDGE_CLAMP :
if ( n < 0 )
return 0 ;
2014-07-27 06:30:13 +04:00
2014-07-26 22:51:02 +04:00
if ( n > = max )
return max - 1 ;
2014-07-27 06:30:13 +04:00
2014-07-26 22:51:02 +04:00
return n ;
2014-07-27 06:30:13 +04:00
2014-07-27 06:11:02 +04:00
case STBR_EDGE_REFLECT :
{
if ( n < 0 )
{
if ( n < max )
return - n ;
else
return max - 1 ;
}
if ( n > = max )
{
int max2 = max * 2 ;
2014-07-27 06:30:13 +04:00
if ( n > = max2 )
2014-07-27 06:11:02 +04:00
return 0 ;
else
return max2 - n - 1 ;
}
return n ;
}
2014-07-27 06:30:13 +04:00
case STBR_EDGE_WRAP :
if ( n > = 0 )
return ( n % max ) ;
else
{
int m = ( - n ) % max ;
if ( m ! = 0 )
m = max - m ;
return ( m ) ;
}
2014-07-27 06:11:02 +04:00
default :
STBR_UNIMPLEMENTED ( " Unimplemented edge type " ) ;
return 0 ;
2014-07-26 22:51:02 +04:00
}
2014-07-21 11:16:03 +04:00
}
2014-07-24 11:47:00 +04:00
// What input texels contribute to this output texel?
2014-07-25 06:10:45 +04:00
static void stbr__calculate_sample_range_upsample ( int n , float out_filter_radius , float scale_ratio , int * in_first_texel , int * in_last_texel , float * in_center_of_out )
2014-07-24 11:47:00 +04:00
{
float out_texel_center = ( float ) n + 0.5f ;
float out_texel_influence_lowerbound = out_texel_center - out_filter_radius ;
float out_texel_influence_upperbound = out_texel_center + out_filter_radius ;
float in_texel_influence_lowerbound = out_texel_influence_lowerbound / scale_ratio ;
float in_texel_influence_upperbound = out_texel_influence_upperbound / scale_ratio ;
* in_center_of_out = out_texel_center / scale_ratio ;
* in_first_texel = ( int ) ( floor ( in_texel_influence_lowerbound + 0.5 ) ) ;
* in_last_texel = ( int ) ( floor ( in_texel_influence_upperbound - 0.5 ) ) ;
}
2014-07-25 06:10:45 +04:00
// What output texels does this input texel contribute to?
static void stbr__calculate_sample_range_downsample ( int n , float in_pixels_radius , float scale_ratio , int * out_first_texel , int * out_last_texel , float * out_center_of_in )
{
float in_texel_center = ( float ) n + 0.5f ;
float in_texel_influence_lowerbound = in_texel_center - in_pixels_radius ;
float in_texel_influence_upperbound = in_texel_center + in_pixels_radius ;
float out_texel_influence_lowerbound = in_texel_influence_lowerbound * scale_ratio ;
float out_texel_influence_upperbound = in_texel_influence_upperbound * scale_ratio ;
* out_center_of_in = in_texel_center * scale_ratio ;
2014-07-26 22:51:02 +04:00
* out_first_texel = ( int ) ( floor ( out_texel_influence_lowerbound + 0.5 ) ) ;
* out_last_texel = ( int ) ( floor ( out_texel_influence_upperbound - 0.5 ) ) ;
2014-07-25 06:10:45 +04:00
}
2014-07-26 22:51:02 +04:00
static void stbr__calculate_coefficients_upsample ( stbr__info * stbr_info , int in_first_texel , int in_last_texel , float in_center_of_out , stbr__contributors * contributor , float * coefficient_group )
2014-07-25 01:20:18 +04:00
{
int i ;
float total_filter = 0 ;
float filter_scale ;
2014-07-25 09:54:35 +04:00
stbr_filter filter = stbr_info - > filter ;
2014-07-25 01:20:18 +04:00
2014-07-26 22:51:02 +04:00
STBR_DEBUG_ASSERT ( in_last_texel - in_first_texel < = stbr__get_filter_texel_width ( filter ) ) ;
STBR_DEBUG_ASSERT ( in_last_texel < stbr__get_horizontal_contributors ( stbr_info - > filter , stbr_info - > input_w , stbr_info - > output_w ) ) ;
2014-07-25 01:20:18 +04:00
contributor - > n0 = in_first_texel ;
contributor - > n1 = in_last_texel ;
for ( i = 0 ; i < = in_last_texel - in_first_texel ; i + + )
{
float in_texel_center = ( float ) ( i + in_first_texel ) + 0.5f ;
2014-07-25 09:54:35 +04:00
total_filter + = coefficient_group [ i ] = stbr__filter_info_table [ filter ] . kernel ( in_center_of_out - in_texel_center ) ;
2014-07-25 01:20:18 +04:00
}
2014-07-27 09:49:56 +04:00
STBR_DEBUG_ASSERT ( total_filter > 0.9 ) ;
STBR_DEBUG_ASSERT ( total_filter < 1.1f ) ; // Make sure it's not way off.
2014-07-25 01:20:18 +04:00
// Make sure the sum of all coefficients is 1.
filter_scale = 1 / total_filter ;
for ( i = 0 ; i < = in_last_texel - in_first_texel ; i + + )
coefficient_group [ i ] * = filter_scale ;
}
2014-07-26 22:51:02 +04:00
static void stbr__calculate_coefficients_downsample ( stbr__info * stbr_info , float scale_ratio , int out_first_texel , int out_last_texel , float out_center_of_in , stbr__contributors * contributor , float * coefficient_group )
2014-07-25 06:10:45 +04:00
{
int i ;
2014-07-25 09:54:35 +04:00
stbr_filter filter = stbr_info - > filter ;
2014-07-25 06:10:45 +04:00
2014-07-26 22:51:02 +04:00
STBR_DEBUG_ASSERT ( out_last_texel - out_first_texel < = stbr__get_filter_texel_width ( filter ) ) ;
STBR_DEBUG_ASSERT ( out_last_texel < stbr__get_horizontal_contributors ( stbr_info - > filter , stbr_info - > input_w , stbr_info - > output_w ) ) ;
2014-07-25 06:10:45 +04:00
contributor - > n0 = out_first_texel ;
contributor - > n1 = out_last_texel ;
for ( i = 0 ; i < = out_last_texel - out_first_texel ; i + + )
{
float in_texel_center = ( float ) ( i + out_first_texel ) + 0.5f ;
2014-07-27 09:49:56 +04:00
coefficient_group [ i ] = stbr__filter_info_table [ filter ] . kernel ( ( out_center_of_in - in_texel_center ) / scale_ratio ) ;
2014-07-25 06:10:45 +04:00
}
}
2014-07-27 09:49:56 +04:00
# ifdef STBR_DEBUG
static void stbr__check_downsample_coefficients ( stbr__info * stbr_info )
{
for ( int i = 0 ; i < stbr_info - > output_w ; i + + )
{
float total = 0 ;
for ( int j = 0 ; j < stbr__get_horizontal_contributors ( stbr_info - > filter , stbr_info - > input_w , stbr_info - > output_w ) ; j + + )
{
if ( i > = stbr_info - > horizontal_contributors [ j ] . n0 & & i < = stbr_info - > horizontal_contributors [ j ] . n1 )
{
float coefficient = * stbr__get_coefficient ( stbr_info , j , i - stbr_info - > horizontal_contributors [ j ] . n0 ) ;
total + = coefficient ;
}
else if ( i < stbr_info - > horizontal_contributors [ j ] . n0 )
break ;
}
STBR_DEBUG_ASSERT ( stbr_info - > type = = STBR_TYPE_UINT8 ) ; // Assert below should be 1 + 1/(2^n-1) where n is bits per int.
STBR_DEBUG_ASSERT ( total > 0.9f ) ;
STBR_DEBUG_ASSERT ( total < = 1.0f + 1.0f / 255 ) ;
}
}
# endif
2014-07-24 09:17:56 +04:00
// Each scan line uses the same kernel values so we should calculate the kernel
// values once and then we can use them for every scan line.
2014-07-24 11:47:00 +04:00
static void stbr__calculate_horizontal_filters ( stbr__info * stbr_info )
2014-07-21 11:16:03 +04:00
{
2014-07-25 01:20:18 +04:00
int n ;
2014-07-24 11:47:00 +04:00
float scale_ratio = ( float ) stbr_info - > output_w / stbr_info - > input_w ;
2014-07-21 11:16:03 +04:00
2014-07-26 22:51:02 +04:00
int total_contributors = stbr__get_horizontal_contributors ( stbr_info - > filter , stbr_info - > input_w , stbr_info - > output_w ) ;
2014-07-21 11:16:03 +04:00
2014-07-25 10:50:14 +04:00
if ( stbr__use_width_upsampling ( stbr_info ) )
2014-07-25 06:10:45 +04:00
{
float out_pixels_radius = stbr__filter_info_table [ stbr_info - > filter ] . support * scale_ratio ;
// Looping through out texels
for ( n = 0 ; n < total_contributors ; n + + )
{
float in_center_of_out ; // Center of the current out texel in the in texel space
int in_first_texel , in_last_texel ;
2014-07-21 11:16:03 +04:00
2014-07-25 06:10:45 +04:00
stbr__calculate_sample_range_upsample ( n , out_pixels_radius , scale_ratio , & in_first_texel , & in_last_texel , & in_center_of_out ) ;
2014-07-26 22:51:02 +04:00
stbr__calculate_coefficients_upsample ( stbr_info , in_first_texel , in_last_texel , in_center_of_out , stbr__get_contributor ( stbr_info , n ) , stbr__get_coefficient ( stbr_info , n , 0 ) ) ;
2014-07-25 06:10:45 +04:00
}
}
else
2014-07-24 09:17:56 +04:00
{
2014-07-27 09:49:56 +04:00
float in_pixels_radius = stbr__filter_info_table [ stbr_info - > filter ] . support ;
2014-07-24 09:17:56 +04:00
2014-07-25 06:10:45 +04:00
// Looping through in texels
for ( n = 0 ; n < total_contributors ; n + + )
{
float out_center_of_in ; // Center of the current out texel in the in texel space
int out_first_texel , out_last_texel ;
2014-07-26 22:51:02 +04:00
int n_adjusted = n - stbr__get_filter_texel_margin ( stbr_info - > filter ) ;
2014-07-24 09:17:56 +04:00
2014-07-26 22:51:02 +04:00
stbr__calculate_sample_range_downsample ( n_adjusted , in_pixels_radius , scale_ratio , & out_first_texel , & out_last_texel , & out_center_of_in ) ;
2014-07-25 06:10:45 +04:00
2014-07-26 22:51:02 +04:00
stbr__calculate_coefficients_downsample ( stbr_info , scale_ratio , out_first_texel , out_last_texel , out_center_of_in , stbr__get_contributor ( stbr_info , n ) , stbr__get_coefficient ( stbr_info , n , 0 ) ) ;
2014-07-25 06:10:45 +04:00
}
2014-07-27 09:49:56 +04:00
# ifdef STBR_DEBUG
stbr__check_downsample_coefficients ( stbr_info ) ;
# endif
2014-07-24 09:17:56 +04:00
}
}
2014-07-26 22:51:02 +04:00
static float * stbr__get_decode_buffer ( stbr__info * stbr_info )
2014-07-24 11:47:00 +04:00
{
2014-07-26 22:51:02 +04:00
// The 0 index of the decode buffer starts after the margin. This makes
// it okay to use negative indexes on the decode buffer.
return & stbr_info - > decode_buffer [ stbr__get_filter_texel_margin ( stbr_info - > filter ) * stbr_info - > channels ] ;
2014-07-24 11:47:00 +04:00
}
2014-07-29 22:39:42 +04:00
# define DECODE(type, colorspace) ((type) * (STBR_MAX_COLORSPACES) + (colorspace))
2014-07-27 10:44:45 +04:00
2014-07-29 22:39:42 +04:00
# define DECODE_UINT8_SRGB(n) \
decode_buffer [ decode_texel_index + n ] = stbr__srgb_uchar_to_linear_float [ ( ( const unsigned char * ) input_data ) [ input_texel_index + n ] ] ;
2014-07-27 10:44:45 +04:00
2014-07-29 22:39:42 +04:00
# define DECODE_UINT8_LINEAR(n) \
decode_buffer [ decode_texel_index + n ] = ( ( float ) ( ( const unsigned char * ) input_data ) [ input_texel_index + n ] ) / 255 ;
2014-07-27 10:44:45 +04:00
2014-07-29 22:39:42 +04:00
# define DECODE_UINT16_SRGB(n) \
decode_buffer [ decode_texel_index + n ] = stbr__srgb_to_linear ( ( ( float ) ( ( const unsigned short * ) input_data ) [ input_texel_index + n ] ) / 65535 ) ;
2014-07-27 11:09:22 +04:00
2014-07-29 22:39:42 +04:00
# define DECODE_UINT16_LINEAR(n) \
decode_buffer [ decode_texel_index + n ] = ( ( float ) ( ( const unsigned short * ) input_data ) [ input_texel_index + n ] ) / 65535 ;
2014-07-27 11:09:22 +04:00
2014-07-29 22:39:42 +04:00
# define DECODE_UINT32_SRGB(n) \
decode_buffer [ decode_texel_index + n ] = stbr__srgb_to_linear ( ( ( float ) ( ( const unsigned int * ) input_data ) [ input_texel_index + n ] ) / 4294967295 ) ;
2014-07-27 11:09:22 +04:00
2014-07-29 22:39:42 +04:00
# define DECODE_UINT32_LINEAR(n) \
decode_buffer [ decode_texel_index + n ] = ( ( float ) ( ( const unsigned int * ) input_data ) [ input_texel_index + n ] ) / 4294967295 ;
2014-07-27 11:09:22 +04:00
2014-07-29 22:39:42 +04:00
# define DECODE_FLOAT_SRGB(n) \
decode_buffer [ decode_texel_index + n ] = stbr__srgb_to_linear ( ( ( const float * ) input_data ) [ input_texel_index + n ] ) ;
2014-07-27 11:09:22 +04:00
2014-07-29 22:39:42 +04:00
# define DECODE_FLOAT_LINEAR(n) \
decode_buffer [ decode_texel_index + n ] = ( ( const float * ) input_data ) [ input_texel_index + n ] ;
2014-07-27 11:09:22 +04:00
2014-07-29 22:39:42 +04:00
static void stbr__decode_scanline_range ( stbr__info * stbr_info , int start , int max , int in_buffer_row_index )
2014-07-27 10:44:45 +04:00
{
2014-07-29 22:39:42 +04:00
int x ;
int channels = stbr_info - > channels ;
stbr_edge edge = stbr_info - > edge ;
int colorspace = stbr_info - > colorspace ;
int type = stbr_info - > type ;
int decode = DECODE ( type , colorspace ) ;
int input_w = stbr_info - > input_w ;
float * decode_buffer = stbr__get_decode_buffer ( stbr_info ) ;
const void * input_data = stbr_info - > input_data ;
2014-07-27 10:44:45 +04:00
2014-07-29 22:39:42 +04:00
for ( x = start ; x < max ; x + + )
2014-07-27 11:09:22 +04:00
{
2014-07-29 22:39:42 +04:00
int decode_texel_index = x * channels ;
int input_texel_index = in_buffer_row_index + stbr__edge_wrap ( edge , x , input_w ) * channels ;
2014-07-27 10:44:45 +04:00
2014-07-29 22:39:42 +04:00
switch ( decode )
{
case DECODE ( STBR_TYPE_UINT8 , STBR_COLORSPACE_LINEAR ) :
for ( int n = 0 ; n < channels ; n + + )
DECODE_UINT8_LINEAR ( n ) ;
break ;
case DECODE ( STBR_TYPE_UINT8 , STBR_COLORSPACE_SRGB ) :
for ( int n = 0 ; n < channels ; n + + )
DECODE_UINT8_SRGB ( n ) ;
break ;
case DECODE ( STBR_TYPE_UINT16 , STBR_COLORSPACE_LINEAR ) :
for ( int n = 0 ; n < channels ; n + + )
DECODE_UINT16_LINEAR ( n ) ;
break ;
case DECODE ( STBR_TYPE_UINT16 , STBR_COLORSPACE_SRGB ) :
for ( int n = 0 ; n < channels ; n + + )
DECODE_UINT16_SRGB ( n ) ;
break ;
case DECODE ( STBR_TYPE_UINT32 , STBR_COLORSPACE_LINEAR ) :
for ( int n = 0 ; n < channels ; n + + )
DECODE_UINT32_LINEAR ( n ) ;
break ;
case DECODE ( STBR_TYPE_UINT32 , STBR_COLORSPACE_SRGB ) :
for ( int n = 0 ; n < channels ; n + + )
DECODE_UINT32_SRGB ( n ) ;
break ;
case DECODE ( STBR_TYPE_FLOAT , STBR_COLORSPACE_LINEAR ) :
for ( int n = 0 ; n < channels ; n + + )
DECODE_FLOAT_LINEAR ( n ) ;
break ;
case DECODE ( STBR_TYPE_FLOAT , STBR_COLORSPACE_SRGB ) :
for ( int n = 0 ; n < channels ; n + + )
DECODE_FLOAT_SRGB ( n ) ;
break ;
default :
STBR_UNIMPLEMENTED ( " Unknown type/colorspace/channels combination. " ) ;
break ;
}
2014-07-27 11:09:22 +04:00
}
2014-07-27 10:44:45 +04:00
}
2014-07-24 11:47:00 +04:00
static void stbr__decode_scanline ( stbr__info * stbr_info , int n )
{
2014-07-27 10:44:45 +04:00
int x ;
2014-07-24 11:47:00 +04:00
int channels = stbr_info - > channels ;
2014-07-29 22:39:42 +04:00
int type = stbr_info - > type ;
int colorspace = stbr_info - > colorspace ;
2014-07-24 11:47:00 +04:00
int input_w = stbr_info - > input_w ;
2014-07-25 01:20:18 +04:00
int input_stride_bytes = stbr_info - > input_stride_bytes ;
2014-07-24 11:47:00 +04:00
const void * input_data = stbr_info - > input_data ;
2014-07-26 22:51:02 +04:00
float * decode_buffer = stbr__get_decode_buffer ( stbr_info ) ;
stbr_edge edge = stbr_info - > edge ;
int in_buffer_row_index = stbr__edge_wrap ( edge , n , stbr_info - > input_h ) * input_stride_bytes ;
int max_x = input_w + stbr__get_filter_texel_margin ( stbr_info - > filter ) ;
2014-07-29 22:39:42 +04:00
int decode = DECODE ( type , colorspace ) ;
2014-07-24 11:47:00 +04:00
2014-07-29 22:39:42 +04:00
# if 1
// Do the first and last first because they're more complicated due to edge behavior
stbr__decode_scanline_range ( stbr_info , - stbr__get_filter_texel_margin ( stbr_info - > filter ) , 0 , in_buffer_row_index ) ;
stbr__decode_scanline_range ( stbr_info , input_w , max_x , in_buffer_row_index ) ;
2014-07-24 11:47:00 +04:00
2014-07-29 22:39:42 +04:00
const int group_size = 4 ;
// Now do the center ones since we can do them in big batches. 4 seems to be the magic number here, after some testing.
for ( x = 0 ; x < input_w * channels - group_size ; x + = group_size )
2014-07-24 11:47:00 +04:00
{
2014-07-29 22:39:42 +04:00
int decode_texel_index = x ;
int input_texel_index = in_buffer_row_index + x ;
2014-07-25 01:20:18 +04:00
2014-07-29 22:39:42 +04:00
switch ( decode )
{
case DECODE ( STBR_TYPE_UINT8 , STBR_COLORSPACE_LINEAR ) :
DECODE_UINT8_LINEAR ( 0 ) ;
DECODE_UINT8_LINEAR ( 1 ) ;
DECODE_UINT8_LINEAR ( 2 ) ;
DECODE_UINT8_LINEAR ( 3 ) ;
break ;
case DECODE ( STBR_TYPE_UINT8 , STBR_COLORSPACE_SRGB ) :
DECODE_UINT8_SRGB ( 0 ) ;
DECODE_UINT8_SRGB ( 1 ) ;
DECODE_UINT8_SRGB ( 2 ) ;
DECODE_UINT8_SRGB ( 3 ) ;
break ;
case DECODE ( STBR_TYPE_UINT16 , STBR_COLORSPACE_LINEAR ) :
DECODE_UINT16_LINEAR ( 0 ) ;
DECODE_UINT16_LINEAR ( 1 ) ;
DECODE_UINT16_LINEAR ( 2 ) ;
DECODE_UINT16_LINEAR ( 3 ) ;
break ;
case DECODE ( STBR_TYPE_UINT16 , STBR_COLORSPACE_SRGB ) :
DECODE_UINT16_SRGB ( 0 ) ;
DECODE_UINT16_SRGB ( 1 ) ;
DECODE_UINT16_SRGB ( 2 ) ;
DECODE_UINT16_SRGB ( 3 ) ;
break ;
case DECODE ( STBR_TYPE_UINT32 , STBR_COLORSPACE_LINEAR ) :
DECODE_UINT32_LINEAR ( 0 ) ;
DECODE_UINT32_LINEAR ( 1 ) ;
DECODE_UINT32_LINEAR ( 2 ) ;
DECODE_UINT32_LINEAR ( 3 ) ;
break ;
case DECODE ( STBR_TYPE_UINT32 , STBR_COLORSPACE_SRGB ) :
DECODE_UINT32_SRGB ( 0 ) ;
DECODE_UINT32_SRGB ( 1 ) ;
DECODE_UINT32_SRGB ( 2 ) ;
DECODE_UINT32_SRGB ( 3 ) ;
break ;
case DECODE ( STBR_TYPE_FLOAT , STBR_COLORSPACE_LINEAR ) :
DECODE_FLOAT_LINEAR ( 0 ) ;
DECODE_FLOAT_LINEAR ( 1 ) ;
DECODE_FLOAT_LINEAR ( 2 ) ;
DECODE_FLOAT_LINEAR ( 3 ) ;
break ;
case DECODE ( STBR_TYPE_FLOAT , STBR_COLORSPACE_SRGB ) :
DECODE_FLOAT_SRGB ( 0 ) ;
DECODE_FLOAT_SRGB ( 1 ) ;
DECODE_FLOAT_SRGB ( 2 ) ;
DECODE_FLOAT_SRGB ( 3 ) ;
break ;
default :
STBR_UNIMPLEMENTED ( " Unknown type/colorspace/channels combination. " ) ;
break ;
}
2014-07-24 11:47:00 +04:00
}
2014-07-29 22:39:42 +04:00
// Do the remainder one at a time.
for ( ; x < input_w * channels ; x + + )
{
int decode_texel_index = x ;
int input_texel_index = in_buffer_row_index + x ;
switch ( decode )
{
case DECODE ( STBR_TYPE_UINT8 , STBR_COLORSPACE_LINEAR ) : DECODE_UINT8_LINEAR ( 0 ) ; break ;
case DECODE ( STBR_TYPE_UINT8 , STBR_COLORSPACE_SRGB ) : DECODE_UINT8_SRGB ( 0 ) ; break ;
case DECODE ( STBR_TYPE_UINT16 , STBR_COLORSPACE_LINEAR ) : DECODE_UINT16_LINEAR ( 0 ) ; break ;
case DECODE ( STBR_TYPE_UINT16 , STBR_COLORSPACE_SRGB ) : DECODE_UINT16_SRGB ( 0 ) ; break ;
case DECODE ( STBR_TYPE_UINT32 , STBR_COLORSPACE_LINEAR ) : DECODE_UINT32_LINEAR ( 0 ) ; break ;
case DECODE ( STBR_TYPE_UINT32 , STBR_COLORSPACE_SRGB ) : DECODE_UINT32_SRGB ( 0 ) ; break ;
case DECODE ( STBR_TYPE_FLOAT , STBR_COLORSPACE_LINEAR ) : DECODE_FLOAT_LINEAR ( 0 ) ; break ;
case DECODE ( STBR_TYPE_FLOAT , STBR_COLORSPACE_SRGB ) : DECODE_FLOAT_SRGB ( 0 ) ; break ;
default :
STBR_UNIMPLEMENTED ( " Unknown type/colorspace/channels combination. " ) ;
break ;
}
}
# else
stbr__decode_scanline_range ( stbr_info , - stbr__get_filter_texel_margin ( stbr_info - > filter ) , max_x , in_buffer_row_index ) ;
# endif
2014-07-24 11:47:00 +04:00
}
2014-07-29 22:39:42 +04:00
# undef DECODE
2014-07-25 09:09:08 +04:00
static float * stbr__get_ring_buffer_entry ( float * ring_buffer , int index , int ring_buffer_length )
2014-07-25 01:20:18 +04:00
{
return & ring_buffer [ index * ring_buffer_length ] ;
}
2014-07-25 09:09:08 +04:00
static float * stbr__add_empty_ring_buffer_entry ( stbr__info * stbr_info , int n )
2014-07-24 11:47:00 +04:00
{
int ring_buffer_index ;
float * ring_buffer ;
if ( stbr_info - > ring_buffer_begin_index < 0 )
2014-07-25 09:09:08 +04:00
{
2014-07-24 11:47:00 +04:00
ring_buffer_index = stbr_info - > ring_buffer_begin_index = 0 ;
2014-07-25 09:09:08 +04:00
stbr_info - > ring_buffer_first_scanline = n ;
}
2014-07-24 11:47:00 +04:00
else
{
2014-07-26 22:51:02 +04:00
ring_buffer_index = ( stbr_info - > ring_buffer_begin_index + ( stbr_info - > ring_buffer_last_scanline - stbr_info - > ring_buffer_first_scanline ) + 1 ) % stbr__get_filter_texel_width ( stbr_info - > filter ) ;
2014-07-24 11:47:00 +04:00
STBR_DEBUG_ASSERT ( ring_buffer_index ! = stbr_info - > ring_buffer_begin_index ) ;
}
2014-07-26 22:51:02 +04:00
ring_buffer = stbr__get_ring_buffer_entry ( stbr_info - > ring_buffer , ring_buffer_index , stbr_info - > ring_buffer_length_bytes / sizeof ( float ) ) ;
memset ( ring_buffer , 0 , stbr_info - > ring_buffer_length_bytes ) ;
2014-07-24 11:47:00 +04:00
2014-07-25 09:09:08 +04:00
stbr_info - > ring_buffer_last_scanline = n ;
return ring_buffer ;
}
2014-07-26 23:04:39 +04:00
typedef void ( * stbr__output_decode_coefficients ) ( float * output_buffer , int out_texel_index , float * decode_buffer , int decode_texel_index , int channels , float coefficient ) ;
static void stbr__output_decode_coefficients_1 ( float * output_buffer , int out_texel_index , float * input_buffer , int input_texel_index , int channels , float coefficient )
{
STBR_DEBUG_ASSERT ( channels = = 1 ) ;
output_buffer [ out_texel_index ] + = input_buffer [ input_texel_index ] * coefficient ;
}
static void stbr__output_decode_coefficients_2 ( float * output_buffer , int out_texel_index , float * input_buffer , int input_texel_index , int channels , float coefficient )
{
STBR_DEBUG_ASSERT ( channels = = 2 ) ;
output_buffer [ out_texel_index ] + = input_buffer [ input_texel_index ] * coefficient ;
output_buffer [ out_texel_index + 1 ] + = input_buffer [ input_texel_index + 1 ] * coefficient ;
}
static void stbr__output_decode_coefficients_3 ( float * output_buffer , int out_texel_index , float * input_buffer , int input_texel_index , int channels , float coefficient )
{
STBR_DEBUG_ASSERT ( channels = = 3 ) ;
output_buffer [ out_texel_index ] + = input_buffer [ input_texel_index ] * coefficient ;
output_buffer [ out_texel_index + 1 ] + = input_buffer [ input_texel_index + 1 ] * coefficient ;
output_buffer [ out_texel_index + 2 ] + = input_buffer [ input_texel_index + 2 ] * coefficient ;
}
static void stbr__output_decode_coefficients_4 ( float * output_buffer , int out_texel_index , float * input_buffer , int input_texel_index , int channels , float coefficient )
{
STBR_DEBUG_ASSERT ( channels = = 4 ) ;
output_buffer [ out_texel_index ] + = input_buffer [ input_texel_index ] * coefficient ;
output_buffer [ out_texel_index + 1 ] + = input_buffer [ input_texel_index + 1 ] * coefficient ;
output_buffer [ out_texel_index + 2 ] + = input_buffer [ input_texel_index + 2 ] * coefficient ;
output_buffer [ out_texel_index + 3 ] + = input_buffer [ input_texel_index + 3 ] * coefficient ;
}
static void stbr__output_decode_coefficients_n ( float * output_buffer , int out_texel_index , float * input_buffer , int input_texel_index , int channels , float coefficient )
{
int c ;
for ( c = 0 ; c < channels ; c + + )
output_buffer [ out_texel_index + c ] + = input_buffer [ input_texel_index + c ] * coefficient ;
}
static stbr__output_decode_coefficients stbr__get_output_decode_coefficients_function ( int channels )
{
if ( channels = = 1 )
return & stbr__output_decode_coefficients_1 ;
else if ( channels = = 2 )
return & stbr__output_decode_coefficients_2 ;
else if ( channels = = 3 )
return & stbr__output_decode_coefficients_3 ;
else if ( channels = = 4 )
return & stbr__output_decode_coefficients_4 ;
return & stbr__output_decode_coefficients_n ;
}
2014-07-25 10:27:29 +04:00
static void stbr__resample_horizontal_upsample ( stbr__info * stbr_info , int n , float * output_buffer )
2014-07-25 09:09:08 +04:00
{
2014-07-26 23:04:39 +04:00
int x , k ;
2014-07-25 09:09:08 +04:00
int output_w = stbr_info - > output_w ;
2014-07-26 22:51:02 +04:00
int kernel_texel_width = stbr__get_filter_texel_width ( stbr_info - > filter ) ;
2014-07-25 09:09:08 +04:00
int channels = stbr_info - > channels ;
2014-07-26 22:51:02 +04:00
float * decode_buffer = stbr__get_decode_buffer ( stbr_info ) ;
2014-07-25 09:09:08 +04:00
stbr__contributors * horizontal_contributors = stbr_info - > horizontal_contributors ;
float * horizontal_coefficients = stbr_info - > horizontal_coefficients ;
2014-07-26 23:04:39 +04:00
stbr__output_decode_coefficients output_decode_coefficients_fn = stbr__get_output_decode_coefficients_function ( channels ) ;
2014-07-24 11:47:00 +04:00
for ( x = 0 ; x < output_w ; x + + )
{
int n0 = horizontal_contributors [ x ] . n0 ;
int n1 = horizontal_contributors [ x ] . n1 ;
int out_texel_index = x * channels ;
int coefficient_group_index = x * kernel_texel_width ;
int coefficient_counter = 0 ;
STBR_DEBUG_ASSERT ( n1 > = n0 ) ;
2014-07-26 22:51:02 +04:00
STBR_DEBUG_ASSERT ( n0 > = - stbr__get_filter_texel_margin ( stbr_info - > filter ) ) ;
STBR_DEBUG_ASSERT ( n1 > = - stbr__get_filter_texel_margin ( stbr_info - > filter ) ) ;
STBR_DEBUG_ASSERT ( n0 < stbr_info - > input_w + stbr__get_filter_texel_margin ( stbr_info - > filter ) ) ;
STBR_DEBUG_ASSERT ( n1 < stbr_info - > input_w + stbr__get_filter_texel_margin ( stbr_info - > filter ) ) ;
2014-07-24 11:47:00 +04:00
for ( k = n0 ; k < = n1 ; k + + )
{
int coefficient_index = coefficient_group_index + ( coefficient_counter + + ) ;
int in_texel_index = k * channels ;
2014-07-25 01:20:18 +04:00
float coefficient = horizontal_coefficients [ coefficient_index ] ;
2014-07-24 11:47:00 +04:00
2014-07-26 23:04:39 +04:00
output_decode_coefficients_fn ( output_buffer , out_texel_index , decode_buffer , in_texel_index , channels , coefficient ) ;
2014-07-24 11:47:00 +04:00
}
}
2014-07-25 09:09:08 +04:00
}
2014-07-24 11:47:00 +04:00
2014-07-25 10:32:25 +04:00
static void stbr__resample_horizontal_downsample ( stbr__info * stbr_info , int n , float * output_buffer )
2014-07-25 09:09:08 +04:00
{
2014-07-26 23:04:39 +04:00
int x , k ;
2014-07-25 09:09:08 +04:00
int input_w = stbr_info - > input_w ;
2014-07-26 22:51:02 +04:00
int output_w = stbr_info - > output_w ;
int kernel_texel_width = stbr__get_filter_texel_width ( stbr_info - > filter ) ;
2014-07-25 09:09:08 +04:00
int channels = stbr_info - > channels ;
2014-07-26 22:51:02 +04:00
float * decode_buffer = stbr__get_decode_buffer ( stbr_info ) ;
2014-07-25 09:09:08 +04:00
stbr__contributors * horizontal_contributors = stbr_info - > horizontal_contributors ;
float * horizontal_coefficients = stbr_info - > horizontal_coefficients ;
2014-07-26 22:51:02 +04:00
int filter_texel_margin = stbr__get_filter_texel_margin ( stbr_info - > filter ) ;
int max_x = input_w + filter_texel_margin * 2 ;
2014-07-25 09:09:08 +04:00
2014-07-26 23:04:39 +04:00
stbr__output_decode_coefficients output_decode_coefficients_fn = stbr__get_output_decode_coefficients_function ( channels ) ;
2014-07-25 10:50:14 +04:00
STBR_DEBUG_ASSERT ( ! stbr__use_width_upsampling ( stbr_info ) ) ;
2014-07-25 09:09:08 +04:00
2014-07-26 22:51:02 +04:00
for ( x = 0 ; x < max_x ; x + + )
2014-07-25 09:09:08 +04:00
{
int n0 = horizontal_contributors [ x ] . n0 ;
int n1 = horizontal_contributors [ x ] . n1 ;
2014-07-26 22:51:02 +04:00
int in_x = x - filter_texel_margin ;
int in_texel_index = in_x * channels ;
int max_n = stbr__min ( n1 , output_w - 1 ) ;
int coefficient_group = x * kernel_texel_width ;
2014-07-25 09:09:08 +04:00
STBR_DEBUG_ASSERT ( n1 > = n0 ) ;
2014-07-26 22:51:02 +04:00
// Using min and max to avoid writing into invalid texels.
for ( k = stbr__max ( n0 , 0 ) ; k < = max_n ; k + + )
2014-07-25 09:09:08 +04:00
{
2014-07-26 22:51:02 +04:00
int coefficient_index = ( k - n0 ) + coefficient_group ;
2014-07-25 09:09:08 +04:00
int out_texel_index = k * channels ;
float coefficient = horizontal_coefficients [ coefficient_index ] ;
2014-07-26 23:04:39 +04:00
output_decode_coefficients_fn ( output_buffer , out_texel_index , decode_buffer , in_texel_index , channels , coefficient ) ;
2014-07-25 09:09:08 +04:00
}
}
2014-07-24 11:47:00 +04:00
}
2014-07-25 09:09:08 +04:00
static void stbr__decode_and_resample_upsample ( stbr__info * stbr_info , int n )
2014-07-24 11:47:00 +04:00
{
// Decode the nth scanline from the source image into the decode buffer.
stbr__decode_scanline ( stbr_info , n ) ;
// Now resample it into the ring buffer.
2014-07-25 10:50:14 +04:00
if ( stbr__use_width_upsampling ( stbr_info ) )
2014-07-25 10:32:25 +04:00
stbr__resample_horizontal_upsample ( stbr_info , n , stbr__add_empty_ring_buffer_entry ( stbr_info , n ) ) ;
else
stbr__resample_horizontal_downsample ( stbr_info , n , stbr__add_empty_ring_buffer_entry ( stbr_info , n ) ) ;
2014-07-24 11:47:00 +04:00
// Now it's sitting in the ring buffer ready to be used as source for the vertical sampling.
}
2014-07-25 09:09:08 +04:00
static void stbr__decode_and_resample_downsample ( stbr__info * stbr_info , int n )
{
// Decode the nth scanline from the source image into the decode buffer.
stbr__decode_scanline ( stbr_info , n ) ;
2014-07-25 10:27:29 +04:00
memset ( stbr_info - > horizontal_buffer , 0 , stbr_info - > output_w * stbr_info - > channels * sizeof ( float ) ) ;
2014-07-25 09:09:08 +04:00
// Now resample it into the horizontal buffer.
2014-07-25 10:50:14 +04:00
if ( stbr__use_width_upsampling ( stbr_info ) )
2014-07-25 10:27:29 +04:00
stbr__resample_horizontal_upsample ( stbr_info , n , stbr_info - > horizontal_buffer ) ;
else
2014-07-25 10:32:25 +04:00
stbr__resample_horizontal_downsample ( stbr_info , n , stbr_info - > horizontal_buffer ) ;
2014-07-25 09:09:08 +04:00
// Now it's sitting in the horizontal buffer ready to be distributed into the ring buffers.
}
2014-07-25 01:20:18 +04:00
// Get the specified scan line from the ring buffer.
static float * stbr__get_ring_buffer_scanline ( int get_scanline , float * ring_buffer , int begin_index , int first_scanline , int ring_buffer_size , int ring_buffer_length )
{
int ring_buffer_index = ( begin_index + ( get_scanline - first_scanline ) ) % ring_buffer_size ;
2014-07-25 09:09:08 +04:00
return stbr__get_ring_buffer_entry ( ring_buffer , ring_buffer_index , ring_buffer_length ) ;
2014-07-25 01:20:18 +04:00
}
2014-07-27 10:44:45 +04:00
typedef void ( * stbr__encode_scanline_type_colorspace ) ( const void * buffer , int offset , int channel , float value ) ;
static void stbr__encode_scanline_uchar_sRGB ( const void * buffer , int offset , int channel , float value )
{
( ( unsigned char * ) buffer ) [ offset + channel ] = stbr__linear_uchar_to_srgb_uchar [ ( unsigned char ) ( stbr__saturate ( value ) * 255 ) ] ;
}
static void stbr__encode_scanline_uchar_linear ( const void * buffer , int offset , int channel , float value )
{
( ( unsigned char * ) buffer ) [ offset + channel ] = ( unsigned char ) ( stbr__saturate ( value ) * 255 ) ;
}
2014-07-27 11:09:22 +04:00
static void stbr__encode_scanline_ushort_sRGB ( const void * buffer , int offset , int channel , float value )
{
( ( unsigned short * ) buffer ) [ offset + channel ] = ( unsigned short ) stbr__linear_to_srgb ( ( stbr__saturate ( value ) * 65535 ) ) ;
}
static void stbr__encode_scanline_ushort_linear ( const void * buffer , int offset , int channel , float value )
{
( ( unsigned short * ) buffer ) [ offset + channel ] = ( unsigned short ) ( stbr__saturate ( value ) * 65535 ) ;
}
static void stbr__encode_scanline_uint_sRGB ( const void * buffer , int offset , int channel , float value )
{
( ( unsigned int * ) buffer ) [ offset + channel ] = ( unsigned int ) stbr__linear_to_srgb ( ( stbr__saturate ( value ) * 4294967295 ) ) ;
}
static void stbr__encode_scanline_uint_linear ( const void * buffer , int offset , int channel , float value )
{
( ( unsigned int * ) buffer ) [ offset + channel ] = ( unsigned int ) ( stbr__saturate ( value ) * 4294967295 ) ;
}
static void stbr__encode_scanline_float_sRGB ( const void * buffer , int offset , int channel , float value )
{
( ( float * ) buffer ) [ offset + channel ] = stbr__linear_to_srgb ( stbr__saturate ( value ) ) ;
}
static void stbr__encode_scanline_float_linear ( const void * buffer , int offset , int channel , float value )
{
( ( float * ) buffer ) [ offset + channel ] = stbr__saturate ( value ) ;
}
2014-07-27 10:44:45 +04:00
typedef void ( * stbr__encode_scanline_channels ) ( void * output_buffer , int output_texel_index , float * encode_buffer , int encode_texel_index , int channels , stbr__encode_scanline_type_colorspace encode_type_colorspace ) ;
static void stbr__encode_scanline_1 ( void * output_buffer , int output_texel_index , float * encode_buffer , int encode_texel_index , int channels , stbr__encode_scanline_type_colorspace encode_type_colorspace )
{
STBR_DEBUG_ASSERT ( channels = = 1 ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 0 , encode_buffer [ encode_texel_index ] ) ;
}
static void stbr__encode_scanline_2 ( void * output_buffer , int output_texel_index , float * encode_buffer , int encode_texel_index , int channels , stbr__encode_scanline_type_colorspace encode_type_colorspace )
{
STBR_DEBUG_ASSERT ( channels = = 2 ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 0 , encode_buffer [ encode_texel_index ] ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 1 , encode_buffer [ encode_texel_index + 1 ] ) ;
}
static void stbr__encode_scanline_3 ( void * output_buffer , int output_texel_index , float * encode_buffer , int encode_texel_index , int channels , stbr__encode_scanline_type_colorspace encode_type_colorspace )
{
STBR_DEBUG_ASSERT ( channels = = 3 ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 0 , encode_buffer [ encode_texel_index ] ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 1 , encode_buffer [ encode_texel_index + 1 ] ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 2 , encode_buffer [ encode_texel_index + 2 ] ) ;
}
static void stbr__encode_scanline_4 ( void * output_buffer , int output_texel_index , float * encode_buffer , int encode_texel_index , int channels , stbr__encode_scanline_type_colorspace encode_type_colorspace )
{
STBR_DEBUG_ASSERT ( channels = = 4 ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 0 , encode_buffer [ encode_texel_index ] ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 1 , encode_buffer [ encode_texel_index + 1 ] ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 2 , encode_buffer [ encode_texel_index + 2 ] ) ;
encode_type_colorspace ( output_buffer , output_texel_index , 3 , encode_buffer [ encode_texel_index + 3 ] ) ;
}
static void stbr__encode_scanline_n ( void * output_buffer , int output_texel_index , float * encode_buffer , int encode_texel_index , int channels , stbr__encode_scanline_type_colorspace encode_type_colorspace )
{
int c ;
for ( c = 0 ; c < channels ; c + + )
encode_type_colorspace ( output_buffer , output_texel_index , c , encode_buffer [ encode_texel_index + c ] ) ;
}
static stbr__encode_scanline_type_colorspace stbr__get_encode_type_colorspace_function ( stbr_type type , stbr_colorspace colorspace )
{
2014-07-27 11:09:22 +04:00
switch ( type )
{
case STBR_TYPE_UINT8 :
if ( colorspace = = STBR_COLORSPACE_LINEAR )
return stbr__encode_scanline_uchar_linear ;
else if ( colorspace = = STBR_COLORSPACE_SRGB )
return stbr__encode_scanline_uchar_sRGB ;
break ;
case STBR_TYPE_UINT16 :
if ( colorspace = = STBR_COLORSPACE_LINEAR )
return stbr__encode_scanline_ushort_linear ;
else if ( colorspace = = STBR_COLORSPACE_SRGB )
return stbr__encode_scanline_ushort_sRGB ;
break ;
case STBR_TYPE_UINT32 :
if ( colorspace = = STBR_COLORSPACE_LINEAR )
return stbr__encode_scanline_uint_linear ;
else if ( colorspace = = STBR_COLORSPACE_SRGB )
return stbr__encode_scanline_uint_sRGB ;
break ;
case STBR_TYPE_FLOAT :
if ( colorspace = = STBR_COLORSPACE_LINEAR )
return stbr__encode_scanline_float_linear ;
else if ( colorspace = = STBR_COLORSPACE_SRGB )
return stbr__encode_scanline_float_sRGB ;
break ;
2014-07-27 10:44:45 +04:00
2014-07-27 11:09:22 +04:00
default :
STBR_UNIMPLEMENTED ( " Unknown type. " ) ;
return NULL ;
}
2014-07-27 10:44:45 +04:00
STBR_UNIMPLEMENTED ( " Unknown color space. " ) ;
return NULL ;
}
static stbr__encode_scanline_channels stbr__get_encode_channels_function ( int channels )
{
if ( channels = = 1 )
return & stbr__encode_scanline_1 ;
else if ( channels = = 2 )
return & stbr__encode_scanline_2 ;
else if ( channels = = 3 )
return & stbr__encode_scanline_3 ;
else if ( channels = = 4 )
return & stbr__encode_scanline_4 ;
return & stbr__encode_scanline_n ;
}
2014-07-25 09:09:08 +04:00
static void stbr__resample_vertical_upsample ( stbr__info * stbr_info , int n , int in_first_scanline , int in_last_scanline , float in_center_of_out )
2014-07-25 01:20:18 +04:00
{
2014-07-27 10:44:45 +04:00
int x , k ;
2014-07-25 01:20:18 +04:00
int output_w = stbr_info - > output_w ;
stbr__contributors * vertical_contributors = & stbr_info - > vertical_contributors ;
float * vertical_coefficients = stbr_info - > vertical_coefficients ;
int channels = stbr_info - > channels ;
2014-07-26 22:51:02 +04:00
int kernel_texel_width = stbr__get_filter_texel_width ( stbr_info - > filter ) ;
2014-07-25 01:20:18 +04:00
void * output_data = stbr_info - > output_data ;
float * encode_buffer = stbr_info - > encode_buffer ;
float * ring_buffer = stbr_info - > ring_buffer ;
int ring_buffer_begin_index = stbr_info - > ring_buffer_begin_index ;
int ring_buffer_first_scanline = stbr_info - > ring_buffer_first_scanline ;
int ring_buffer_last_scanline = stbr_info - > ring_buffer_last_scanline ;
2014-07-26 22:51:02 +04:00
int ring_buffer_length = stbr_info - > ring_buffer_length_bytes / sizeof ( float ) ;
2014-07-25 01:20:18 +04:00
STBR_UNIMPLEMENTED ( stbr_info - > type ! = STBR_TYPE_UINT8 ) ;
2014-07-26 22:51:02 +04:00
stbr__calculate_coefficients_upsample ( stbr_info , in_first_scanline , in_last_scanline , in_center_of_out , vertical_contributors , vertical_coefficients ) ;
2014-07-25 01:20:18 +04:00
int n0 = vertical_contributors - > n0 ;
int n1 = vertical_contributors - > n1 ;
int output_row_index = n * stbr_info - > output_stride_bytes ;
2014-07-26 23:04:39 +04:00
stbr__output_decode_coefficients output_decode_coefficients_fn = stbr__get_output_decode_coefficients_function ( channels ) ;
2014-07-27 10:44:45 +04:00
stbr__encode_scanline_channels encode_channels_fn = stbr__get_encode_channels_function ( channels ) ;
stbr__encode_scanline_type_colorspace encode_type_colorspace_fn = stbr__get_encode_type_colorspace_function ( stbr_info - > type , stbr_info - > colorspace ) ;
2014-07-26 23:04:39 +04:00
2014-07-25 10:50:14 +04:00
STBR_DEBUG_ASSERT ( stbr__use_height_upsampling ( stbr_info ) ) ;
2014-07-25 01:20:18 +04:00
STBR_DEBUG_ASSERT ( n0 > = in_first_scanline ) ;
STBR_DEBUG_ASSERT ( n1 < = in_last_scanline ) ;
for ( x = 0 ; x < output_w ; x + + )
{
int in_texel_index = x * channels ;
int out_texel_index = output_row_index + x * channels ;
int coefficient_counter = 0 ;
STBR_DEBUG_ASSERT ( n1 > = n0 ) ;
memset ( encode_buffer , 0 , sizeof ( float ) * channels ) ;
for ( k = n0 ; k < = n1 ; k + + )
{
int coefficient_index = coefficient_counter + + ;
float * ring_buffer_entry = stbr__get_ring_buffer_scanline ( k , ring_buffer , ring_buffer_begin_index , ring_buffer_first_scanline , kernel_texel_width , ring_buffer_length ) ;
float coefficient = vertical_coefficients [ coefficient_index ] ;
2014-07-26 23:04:39 +04:00
output_decode_coefficients_fn ( encode_buffer , 0 , ring_buffer_entry , in_texel_index , channels , coefficient ) ;
2014-07-25 01:20:18 +04:00
}
2014-07-27 10:44:45 +04:00
encode_channels_fn ( output_data , out_texel_index , encode_buffer , 0 , channels , encode_type_colorspace_fn ) ;
2014-07-25 01:20:18 +04:00
}
}
2014-07-25 09:09:08 +04:00
static void stbr__resample_vertical_downsample ( stbr__info * stbr_info , int n , int in_first_scanline , int in_last_scanline , float in_center_of_out )
{
2014-07-26 23:04:39 +04:00
int x , k ;
2014-07-25 09:09:08 +04:00
int output_w = stbr_info - > output_w ;
2014-07-26 22:51:02 +04:00
int output_h = stbr_info - > output_h ;
2014-07-25 09:09:08 +04:00
stbr__contributors * vertical_contributors = & stbr_info - > vertical_contributors ;
float * vertical_coefficients = stbr_info - > vertical_coefficients ;
int channels = stbr_info - > channels ;
2014-07-26 22:51:02 +04:00
int kernel_texel_width = stbr__get_filter_texel_width ( stbr_info - > filter ) ;
2014-07-25 09:09:08 +04:00
void * output_data = stbr_info - > output_data ;
float * horizontal_buffer = stbr_info - > horizontal_buffer ;
float * ring_buffer = stbr_info - > ring_buffer ;
int ring_buffer_begin_index = stbr_info - > ring_buffer_begin_index ;
int ring_buffer_first_scanline = stbr_info - > ring_buffer_first_scanline ;
int ring_buffer_last_scanline = stbr_info - > ring_buffer_last_scanline ;
2014-07-26 22:51:02 +04:00
int ring_buffer_length = stbr_info - > ring_buffer_length_bytes / sizeof ( float ) ;
2014-07-25 09:09:08 +04:00
2014-07-26 22:51:02 +04:00
stbr__calculate_coefficients_downsample ( stbr_info , ( float ) stbr_info - > output_h / stbr_info - > input_h , in_first_scanline , in_last_scanline , in_center_of_out , vertical_contributors , vertical_coefficients ) ;
2014-07-25 09:09:08 +04:00
int n0 = vertical_contributors - > n0 ;
int n1 = vertical_contributors - > n1 ;
2014-07-27 00:12:48 +04:00
int max_n = stbr__min ( n1 , output_h - 1 ) ;
2014-07-25 09:09:08 +04:00
2014-07-26 23:04:39 +04:00
stbr__output_decode_coefficients output_decode_coefficients_fn = stbr__get_output_decode_coefficients_function ( channels ) ;
2014-07-25 10:50:14 +04:00
STBR_DEBUG_ASSERT ( ! stbr__use_height_upsampling ( stbr_info ) ) ;
2014-07-25 09:09:08 +04:00
STBR_DEBUG_ASSERT ( n0 > = in_first_scanline ) ;
STBR_DEBUG_ASSERT ( n1 < = in_last_scanline ) ;
2014-07-27 00:12:48 +04:00
STBR_DEBUG_ASSERT ( n1 > = n0 ) ;
2014-07-25 09:09:08 +04:00
2014-07-27 00:12:48 +04:00
// Using min and max to avoid writing into ring buffers that will be thrown out.
for ( k = stbr__max ( n0 , 0 ) ; k < = max_n ; k + + )
2014-07-25 09:09:08 +04:00
{
2014-07-27 00:12:48 +04:00
int coefficient_index = k - n0 ;
2014-07-25 09:09:08 +04:00
2014-07-27 00:12:48 +04:00
float * ring_buffer_entry = stbr__get_ring_buffer_scanline ( k , ring_buffer , ring_buffer_begin_index , ring_buffer_first_scanline , kernel_texel_width , ring_buffer_length ) ;
float coefficient = vertical_coefficients [ coefficient_index ] ;
2014-07-25 09:09:08 +04:00
2014-07-27 00:12:48 +04:00
for ( x = 0 ; x < output_w ; x + + )
2014-07-25 09:09:08 +04:00
{
2014-07-27 00:12:48 +04:00
int in_texel_index = x * channels ;
2014-07-25 09:09:08 +04:00
2014-07-26 23:04:39 +04:00
output_decode_coefficients_fn ( ring_buffer_entry , in_texel_index , horizontal_buffer , in_texel_index , channels , coefficient ) ;
2014-07-25 09:09:08 +04:00
}
}
}
static void stbr__buffer_loop_upsample ( stbr__info * stbr_info )
{
int y ;
float scale_ratio = ( float ) stbr_info - > output_h / stbr_info - > input_h ;
float out_scanlines_radius = stbr__filter_info_table [ stbr_info - > filter ] . support * scale_ratio ;
2014-07-25 10:50:14 +04:00
STBR_DEBUG_ASSERT ( stbr__use_height_upsampling ( stbr_info ) ) ;
2014-07-25 09:09:08 +04:00
for ( y = 0 ; y < stbr_info - > output_h ; y + + )
{
float in_center_of_out = 0 ; // Center of the current out scanline in the in scanline space
int in_first_scanline = 0 , in_last_scanline = 0 ;
2014-07-25 09:54:35 +04:00
stbr__calculate_sample_range_upsample ( y , out_scanlines_radius , scale_ratio , & in_first_scanline , & in_last_scanline , & in_center_of_out ) ;
2014-07-25 09:09:08 +04:00
2014-07-26 22:51:02 +04:00
STBR_DEBUG_ASSERT ( in_last_scanline - in_first_scanline < = stbr__get_filter_texel_width ( stbr_info - > filter ) ) ;
STBR_DEBUG_ASSERT ( in_first_scanline > = - stbr__get_filter_texel_margin ( stbr_info - > filter ) ) ;
STBR_DEBUG_ASSERT ( in_last_scanline < stbr_info - > input_w + stbr__get_filter_texel_margin ( stbr_info - > filter ) ) ;
2014-07-25 09:09:08 +04:00
if ( stbr_info - > ring_buffer_begin_index > = 0 )
{
// Get rid of whatever we don't need anymore.
while ( in_first_scanline > stbr_info - > ring_buffer_first_scanline )
{
if ( stbr_info - > ring_buffer_first_scanline = = stbr_info - > ring_buffer_last_scanline )
{
// We just popped the last scanline off the ring buffer.
// Reset it to the empty state.
stbr_info - > ring_buffer_begin_index = - 1 ;
stbr_info - > ring_buffer_first_scanline = 0 ;
stbr_info - > ring_buffer_last_scanline = 0 ;
break ;
}
else
2014-07-26 22:51:02 +04:00
{
2014-07-25 09:09:08 +04:00
stbr_info - > ring_buffer_first_scanline + + ;
2014-07-26 22:51:02 +04:00
stbr_info - > ring_buffer_begin_index = ( stbr_info - > ring_buffer_begin_index + 1 ) % stbr__get_filter_texel_width ( stbr_info - > filter ) ;
}
2014-07-25 09:09:08 +04:00
}
}
// Load in new ones.
if ( stbr_info - > ring_buffer_begin_index < 0 )
stbr__decode_and_resample_upsample ( stbr_info , in_first_scanline ) ;
2014-07-26 22:51:02 +04:00
while ( in_last_scanline > stbr_info - > ring_buffer_last_scanline )
2014-07-25 09:09:08 +04:00
stbr__decode_and_resample_upsample ( stbr_info , stbr_info - > ring_buffer_last_scanline + 1 ) ;
// Now all buffers should be ready to write a row of vertical sampling.
stbr__resample_vertical_upsample ( stbr_info , y , in_first_scanline , in_last_scanline , in_center_of_out ) ;
}
}
static void stbr__empty_ring_buffer ( stbr__info * stbr_info , int first_necessary_scanline )
{
int output_stride_bytes = stbr_info - > output_stride_bytes ;
int channels = stbr_info - > channels ;
int output_w = stbr_info - > output_w ;
void * output_data = stbr_info - > output_data ;
float * ring_buffer = stbr_info - > ring_buffer ;
2014-07-26 22:51:02 +04:00
int ring_buffer_length = stbr_info - > ring_buffer_length_bytes / sizeof ( float ) ;
2014-07-25 09:09:08 +04:00
2014-07-27 10:44:45 +04:00
stbr__encode_scanline_channels encode_channels_fn = stbr__get_encode_channels_function ( channels ) ;
stbr__encode_scanline_type_colorspace encode_type_colorspace_fn = stbr__get_encode_type_colorspace_function ( stbr_info - > type , stbr_info - > colorspace ) ;
2014-07-25 09:09:08 +04:00
if ( stbr_info - > ring_buffer_begin_index > = 0 )
{
// Get rid of whatever we don't need anymore.
2014-07-27 00:56:23 +04:00
while ( first_necessary_scanline > stbr_info - > ring_buffer_first_scanline )
2014-07-25 09:09:08 +04:00
{
STBR_UNIMPLEMENTED ( stbr_info - > type ! = STBR_TYPE_UINT8 ) ;
2014-07-26 22:51:02 +04:00
if ( stbr_info - > ring_buffer_first_scanline > = 0 & & stbr_info - > ring_buffer_first_scanline < stbr_info - > output_h )
2014-07-25 09:09:08 +04:00
{
2014-07-27 10:44:45 +04:00
int x ;
2014-07-27 00:56:23 +04:00
int output_row = stbr_info - > ring_buffer_first_scanline * output_stride_bytes ;
float * ring_buffer_entry = stbr__get_ring_buffer_entry ( ring_buffer , stbr_info - > ring_buffer_begin_index , ring_buffer_length ) ;
2014-07-26 22:51:02 +04:00
for ( x = 0 ; x < output_w ; x + + )
{
int texel_index = x * channels ;
int ring_texel_index = texel_index ;
int output_texel_index = output_row + texel_index ;
2014-07-27 10:44:45 +04:00
encode_channels_fn ( output_data , output_texel_index , ring_buffer_entry , ring_texel_index , channels , encode_type_colorspace_fn ) ;
2014-07-26 22:51:02 +04:00
}
2014-07-25 09:09:08 +04:00
}
if ( stbr_info - > ring_buffer_first_scanline = = stbr_info - > ring_buffer_last_scanline )
{
// We just popped the last scanline off the ring buffer.
// Reset it to the empty state.
stbr_info - > ring_buffer_begin_index = - 1 ;
stbr_info - > ring_buffer_first_scanline = 0 ;
stbr_info - > ring_buffer_last_scanline = 0 ;
break ;
}
else
2014-07-26 22:51:02 +04:00
{
2014-07-25 09:09:08 +04:00
stbr_info - > ring_buffer_first_scanline + + ;
2014-07-26 22:51:02 +04:00
stbr_info - > ring_buffer_begin_index = ( stbr_info - > ring_buffer_begin_index + 1 ) % stbr__get_filter_texel_width ( stbr_info - > filter ) ;
}
2014-07-25 09:09:08 +04:00
}
}
}
static void stbr__buffer_loop_downsample ( stbr__info * stbr_info )
{
int y ;
float scale_ratio = ( float ) stbr_info - > output_h / stbr_info - > input_h ;
2014-07-27 09:49:56 +04:00
float in_pixels_radius = stbr__filter_info_table [ stbr_info - > filter ] . support ;
2014-07-27 00:56:23 +04:00
int max_y = stbr_info - > input_h + stbr__get_filter_texel_margin ( stbr_info - > filter ) ;
2014-07-25 09:09:08 +04:00
2014-07-25 10:50:14 +04:00
STBR_DEBUG_ASSERT ( ! stbr__use_height_upsampling ( stbr_info ) ) ;
2014-07-25 09:09:08 +04:00
2014-07-27 00:56:23 +04:00
for ( y = - stbr__get_filter_texel_margin ( stbr_info - > filter ) ; y < max_y ; y + + )
2014-07-25 09:09:08 +04:00
{
float out_center_of_in ; // Center of the current out scanline in the in scanline space
int out_first_scanline , out_last_scanline ;
stbr__calculate_sample_range_downsample ( y , in_pixels_radius , scale_ratio , & out_first_scanline , & out_last_scanline , & out_center_of_in ) ;
2014-07-26 22:51:02 +04:00
STBR_DEBUG_ASSERT ( out_last_scanline - out_first_scanline < = stbr__get_filter_texel_width ( stbr_info - > filter ) ) ;
2014-07-27 00:56:23 +04:00
STBR_DEBUG_ASSERT ( out_first_scanline > = - 2 * stbr__get_filter_texel_margin ( stbr_info - > filter ) ) ;
STBR_DEBUG_ASSERT ( out_last_scanline < stbr_info - > input_w + 2 * stbr__get_filter_texel_margin ( stbr_info - > filter ) ) ;
2014-07-25 09:09:08 +04:00
stbr__empty_ring_buffer ( stbr_info , out_first_scanline ) ;
stbr__decode_and_resample_downsample ( stbr_info , y ) ;
// Load in new ones.
if ( stbr_info - > ring_buffer_begin_index < 0 )
2014-07-26 22:51:02 +04:00
stbr__add_empty_ring_buffer_entry ( stbr_info , out_first_scanline ) ;
2014-07-25 09:09:08 +04:00
2014-07-26 22:51:02 +04:00
while ( out_last_scanline > stbr_info - > ring_buffer_last_scanline )
2014-07-25 09:09:08 +04:00
stbr__add_empty_ring_buffer_entry ( stbr_info , stbr_info - > ring_buffer_last_scanline + 1 ) ;
// Now the horizontal buffer is ready to write to all ring buffer rows.
stbr__resample_vertical_downsample ( stbr_info , y , out_first_scanline , out_last_scanline , out_center_of_in ) ;
}
2014-07-27 00:56:23 +04:00
stbr__empty_ring_buffer ( stbr_info , stbr_info - > output_h ) ;
2014-07-25 09:09:08 +04:00
}
2014-07-24 09:17:56 +04:00
STBRDEF int stbr_resize_arbitrary ( const void * input_data , int input_w , int input_h , int input_stride_in_bytes ,
void * output_data , int output_w , int output_h , int output_stride_in_bytes ,
2014-07-27 10:44:45 +04:00
int channels , stbr_type type , stbr_filter filter , stbr_edge edge , stbr_colorspace colorspace ,
2014-07-24 09:17:56 +04:00
void * tempmem , stbr_size_t tempmem_size_in_bytes )
2014-07-21 11:16:03 +04:00
{
2014-07-24 09:17:56 +04:00
int width_stride_input = input_stride_in_bytes ? input_stride_in_bytes : channels * input_w ;
int width_stride_output = output_stride_in_bytes ? output_stride_in_bytes : channels * output_w ;
2014-07-21 11:16:03 +04:00
# ifdef STBR_DEBUG_OVERWRITE_TEST
# define OVERWRITE_ARRAY_SIZE 64
2014-07-24 11:47:00 +04:00
unsigned char overwrite_output_pre [ OVERWRITE_ARRAY_SIZE ] ;
unsigned char overwrite_tempmem_pre [ OVERWRITE_ARRAY_SIZE ] ;
2014-07-21 11:16:03 +04:00
2014-07-24 09:17:56 +04:00
stbr_size_t begin_forbidden = width_stride_output * ( output_h - 1 ) + output_w * channels ;
2014-07-24 11:47:00 +04:00
memcpy ( overwrite_output_pre , & ( ( unsigned char * ) output_data ) [ begin_forbidden ] , OVERWRITE_ARRAY_SIZE ) ;
memcpy ( overwrite_tempmem_pre , & ( ( unsigned char * ) tempmem ) [ tempmem_size_in_bytes ] , OVERWRITE_ARRAY_SIZE ) ;
2014-07-21 11:16:03 +04:00
# endif
2014-07-24 09:17:56 +04:00
STBR_UNIMPLEMENTED ( type ! = STBR_TYPE_UINT8 ) ;
2014-07-21 11:16:03 +04:00
2014-07-24 09:17:56 +04:00
STBR_ASSERT ( filter ! = 0 ) ;
STBR_ASSERT ( filter < STBR_ARRAY_SIZE ( stbr__filter_info_table ) ) ;
2014-07-21 11:16:03 +04:00
2014-07-24 09:17:56 +04:00
if ( ! tempmem )
return 0 ;
2014-07-21 11:16:03 +04:00
2014-07-24 09:17:56 +04:00
if ( tempmem_size_in_bytes < stbr_calculate_memory ( input_w , input_h , input_stride_in_bytes , output_w , output_h , output_stride_in_bytes , channels , STBR_FILTER_NEAREST ) )
return 0 ;
2014-07-21 11:16:03 +04:00
2014-07-24 09:17:56 +04:00
memset ( tempmem , 0 , tempmem_size_in_bytes ) ;
stbr__info * stbr_info = ( stbr__info * ) tempmem ;
2014-07-24 11:47:00 +04:00
stbr_info - > input_data = input_data ;
stbr_info - > input_w = input_w ;
stbr_info - > input_h = input_h ;
stbr_info - > input_stride_bytes = width_stride_input ;
stbr_info - > output_data = output_data ;
stbr_info - > output_w = output_w ;
stbr_info - > output_h = output_h ;
stbr_info - > output_stride_bytes = width_stride_output ;
stbr_info - > channels = channels ;
stbr_info - > type = type ;
stbr_info - > filter = filter ;
2014-07-26 22:51:02 +04:00
stbr_info - > edge = edge ;
2014-07-27 10:44:45 +04:00
stbr_info - > colorspace = colorspace ;
2014-07-24 11:47:00 +04:00
2014-07-26 22:51:02 +04:00
stbr_info - > ring_buffer_length_bytes = output_w * channels * sizeof ( float ) ;
stbr_info - > decode_buffer_texels = input_w + stbr__get_filter_texel_margin ( filter ) * 2 ;
2014-07-24 09:17:56 +04:00
2014-07-24 10:08:06 +04:00
# define STBR__NEXT_MEMPTR(current, old, newtype) (newtype*)(((unsigned char*)current) + old)
stbr_info - > horizontal_contributors = STBR__NEXT_MEMPTR ( stbr_info , sizeof ( stbr__info ) , stbr__contributors ) ;
2014-07-26 22:51:02 +04:00
stbr_info - > horizontal_coefficients = STBR__NEXT_MEMPTR ( stbr_info - > horizontal_contributors , stbr__get_horizontal_contributors ( filter , input_w , output_w ) * sizeof ( stbr__contributors ) , float ) ;
stbr_info - > vertical_coefficients = STBR__NEXT_MEMPTR ( stbr_info - > horizontal_coefficients , stbr__get_total_coefficients ( filter , input_w , output_w ) * sizeof ( float ) , float ) ;
stbr_info - > decode_buffer = STBR__NEXT_MEMPTR ( stbr_info - > vertical_coefficients , stbr__get_filter_texel_width ( filter ) * sizeof ( float ) , float ) ;
2014-07-25 10:50:14 +04:00
if ( stbr__use_height_upsampling ( stbr_info ) )
{
stbr_info - > horizontal_buffer = NULL ;
2014-07-26 22:51:02 +04:00
stbr_info - > ring_buffer = STBR__NEXT_MEMPTR ( stbr_info - > decode_buffer , stbr_info - > decode_buffer_texels * channels * sizeof ( float ) , float ) ;
stbr_info - > encode_buffer = STBR__NEXT_MEMPTR ( stbr_info - > ring_buffer , stbr_info - > ring_buffer_length_bytes * stbr__get_filter_texel_width ( filter ) , float ) ;
STBR_DEBUG_ASSERT ( ( size_t ) STBR__NEXT_MEMPTR ( stbr_info - > encode_buffer , stbr_info - > channels * sizeof ( float ) , unsigned char ) = = ( size_t ) tempmem + tempmem_size_in_bytes ) ;
2014-07-25 10:50:14 +04:00
}
else
{
2014-07-26 22:51:02 +04:00
stbr_info - > horizontal_buffer = STBR__NEXT_MEMPTR ( stbr_info - > decode_buffer , stbr_info - > decode_buffer_texels * channels * sizeof ( float ) , float ) ;
2014-07-25 10:50:14 +04:00
stbr_info - > ring_buffer = STBR__NEXT_MEMPTR ( stbr_info - > horizontal_buffer , output_w * channels * sizeof ( float ) , float ) ;
stbr_info - > encode_buffer = NULL ;
2014-07-26 22:51:02 +04:00
STBR_DEBUG_ASSERT ( ( size_t ) STBR__NEXT_MEMPTR ( stbr_info - > ring_buffer , stbr_info - > ring_buffer_length_bytes * stbr__get_filter_texel_width ( filter ) , unsigned char ) = = ( size_t ) tempmem + tempmem_size_in_bytes ) ;
2014-07-25 10:50:14 +04:00
}
2014-07-24 09:17:56 +04:00
# undef STBR__NEXT_MEMPTR
2014-07-24 11:47:00 +04:00
// This signals that the ring buffer is empty
stbr_info - > ring_buffer_begin_index = - 1 ;
stbr__calculate_horizontal_filters ( stbr_info ) ;
2014-07-25 10:50:14 +04:00
if ( stbr__use_height_upsampling ( stbr_info ) )
2014-07-25 09:09:08 +04:00
stbr__buffer_loop_upsample ( stbr_info ) ;
else
stbr__buffer_loop_downsample ( stbr_info ) ;
2014-07-21 11:16:03 +04:00
# ifdef STBR_DEBUG_OVERWRITE_TEST
2014-07-24 11:47:00 +04:00
STBR_DEBUG_ASSERT ( memcmp ( overwrite_output_pre , & ( ( unsigned char * ) output_data ) [ begin_forbidden ] , OVERWRITE_ARRAY_SIZE ) = = 0 ) ;
STBR_DEBUG_ASSERT ( memcmp ( overwrite_tempmem_pre , & ( ( unsigned char * ) tempmem ) [ tempmem_size_in_bytes ] , OVERWRITE_ARRAY_SIZE ) = = 0 ) ;
2014-07-21 11:16:03 +04:00
# endif
2014-07-22 02:36:43 +04:00
return 1 ;
2014-07-21 11:16:03 +04:00
}
2014-07-24 09:17:56 +04:00
STBRDEF stbr_size_t stbr_calculate_memory ( int input_w , int input_h , int input_stride_in_bytes ,
int output_w , int output_h , int output_stride_in_bytes ,
int channels , stbr_filter filter )
{
STBR_ASSERT ( filter ! = 0 ) ;
STBR_ASSERT ( filter < STBR_ARRAY_SIZE ( stbr__filter_info_table ) ) ;
2014-07-26 22:51:02 +04:00
int texel_margin = stbr__get_filter_texel_margin ( filter ) ;
2014-07-24 09:17:56 +04:00
int info_size = sizeof ( stbr__info ) ;
2014-07-26 22:51:02 +04:00
int contributors_size = stbr__get_horizontal_contributors ( filter , input_w , output_w ) * sizeof ( stbr__contributors ) ;
2014-07-25 01:20:18 +04:00
int horizontal_coefficients_size = stbr__get_total_coefficients ( filter , input_w , output_w ) * sizeof ( float ) ;
2014-07-25 06:10:45 +04:00
int vertical_coefficients_size = stbr__get_filter_texel_width ( filter ) * sizeof ( float ) ;
2014-07-26 22:51:02 +04:00
int decode_buffer_size = ( input_w + texel_margin * 2 ) * channels * sizeof ( float ) ;
2014-07-25 09:09:08 +04:00
int horizontal_buffer_size = output_w * channels * sizeof ( float ) ;
2014-07-25 06:10:45 +04:00
int ring_buffer_size = output_w * channels * sizeof ( float ) * stbr__get_filter_texel_width ( filter ) ;
2014-07-25 01:20:18 +04:00
int encode_buffer_size = channels * sizeof ( float ) ;
2014-07-24 09:17:56 +04:00
2014-07-25 10:50:14 +04:00
if ( stbr__use_height_upsampling_noinfo ( output_h , input_h ) )
// The horizontal buffer is for when we're downsampling the height and we
// can't output the result of sampling the decode buffer directly into the
// ring buffers.
horizontal_buffer_size = 0 ;
else
// The encode buffer is to retain precision in the height upsampling method
// and isn't used when height downsampling.
encode_buffer_size = 0 ;
2014-07-25 09:09:08 +04:00
return info_size + contributors_size + horizontal_coefficients_size + vertical_coefficients_size + decode_buffer_size + horizontal_buffer_size + ring_buffer_size + encode_buffer_size ;
2014-07-24 09:17:56 +04:00
}
2014-07-21 11:16:03 +04:00
# endif // STB_RESAMPLE_IMPLEMENTATION
/*
revision history :
*/