Skip to content

Latest commit

 

History

History
307 lines (258 loc) · 8.3 KB

IMG_webp.c

File metadata and controls

307 lines (258 loc) · 8.3 KB
 
1
/*
Dec 31, 2011
Dec 31, 2011
2
SDL_image: An example image loading library for use with SDL
Feb 15, 2013
Feb 15, 2013
3
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
Dec 31, 2011
Dec 31, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
20
21
22
23
24
25
26
27
28
29
30
31
32
*/
/* This is a WEBP image file loading framework */
#include <stdlib.h>
#include <stdio.h>
#include "SDL_image.h"
#ifdef LOAD_WEBP
/*=============================================================================
File: SDL_webp.c
May 22, 2013
May 22, 2013
33
34
Purpose: A WEBP loader for the SDL library
Revision:
35
36
37
38
39
40
41
42
43
44
45
46
47
Created by: Michael Bonfils (Murlock) (26 November 2011)
murlock42@gmail.com
=============================================================================*/
#include "SDL_endian.h"
#ifdef macintosh
#define MACOS
#endif
#include <webp/decode.h>
static struct {
May 22, 2013
May 22, 2013
48
49
int loaded;
void *handle;
May 28, 2013
May 28, 2013
50
51
52
VP8StatusCode (*webp_get_features_internal) (const uint8_t *data, size_t data_size, WebPBitstreamFeatures* features, int decoder_abi_version);
uint8_t* (*webp_decode_rgb_into) (const uint8_t* data, size_t data_size, uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
uint8_t* (*webp_decode_rgba_into) (const uint8_t* data, size_t data_size, uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
53
54
55
56
57
} lib;
#ifdef LOAD_WEBP_DYNAMIC
int IMG_InitWEBP()
{
May 22, 2013
May 22, 2013
58
59
60
61
62
if ( lib.loaded == 0 ) {
lib.handle = SDL_LoadObject(LOAD_WEBP_DYNAMIC);
if ( lib.handle == NULL ) {
return -1;
}
May 28, 2013
May 28, 2013
63
May 22, 2013
May 22, 2013
64
lib.webp_get_features_internal =
May 28, 2013
May 28, 2013
65
( VP8StatusCode (*) (const uint8_t *, size_t, WebPBitstreamFeatures*, int) )
May 22, 2013
May 22, 2013
66
67
68
69
70
71
72
SDL_LoadFunction(lib.handle, "WebPGetFeaturesInternal" );
if ( lib.webp_get_features_internal == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.webp_decode_rgb_into =
May 28, 2013
May 28, 2013
73
( uint8_t* (*) (const uint8_t*, size_t, uint8_t*, size_t, int ) )
May 22, 2013
May 22, 2013
74
75
76
77
78
79
80
SDL_LoadFunction(lib.handle, "WebPDecodeRGBInto" );
if ( lib.webp_decode_rgb_into == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.webp_decode_rgba_into =
May 28, 2013
May 28, 2013
81
( uint8_t* (*) (const uint8_t*, size_t, uint8_t*, size_t, int ) )
May 22, 2013
May 22, 2013
82
83
84
85
86
87
88
89
90
SDL_LoadFunction(lib.handle, "WebPDecodeRGBAInto" );
if ( lib.webp_decode_rgba_into == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
}
++lib.loaded;
return 0;
91
92
93
}
void IMG_QuitWEBP()
{
May 22, 2013
May 22, 2013
94
95
96
97
98
99
100
if ( lib.loaded == 0 ) {
return;
}
if ( lib.loaded == 1 ) {
SDL_UnloadObject(lib.handle);
}
--lib.loaded;
101
102
103
104
}
#else
int IMG_InitWEBP()
{
May 22, 2013
May 22, 2013
105
106
107
108
109
110
111
112
if ( lib.loaded == 0 ) {
lib.webp_get_features_internal = WebPGetFeaturesInternal;
lib.webp_decode_rgb_into = WebPDecodeRGBInto;
lib.webp_decode_rgba_into = WebPDecodeRGBAInto;
}
++lib.loaded;
return 0;
113
114
115
}
void IMG_QuitWEBP()
{
May 22, 2013
May 22, 2013
116
117
118
119
120
121
if ( lib.loaded == 0 ) {
return;
}
if ( lib.loaded == 1 ) {
}
--lib.loaded;
122
123
124
125
}
#endif /* LOAD_WEBP_DYNAMIC */
static int webp_getinfo( SDL_RWops *src, int *datasize ) {
May 22, 2013
May 22, 2013
126
127
128
129
130
131
132
133
134
135
Sint64 start;
int is_WEBP;
Uint8 magic[20];
if ( !src )
return 0;
start = SDL_RWtell(src);
is_WEBP = 0;
if ( SDL_RWread(src, magic, 1, sizeof(magic)) == sizeof(magic) ) {
if ( magic[ 0] == 'R' &&
136
137
138
magic[ 1] == 'I' &&
magic[ 2] == 'F' &&
magic[ 3] == 'F' &&
May 22, 2013
May 22, 2013
139
140
141
142
143
144
145
magic[ 8] == 'W' &&
magic[ 9] == 'E' &&
magic[10] == 'B' &&
magic[11] == 'P' &&
magic[12] == 'V' &&
magic[13] == 'P' &&
magic[14] == '8' &&
Mar 10, 2013
Mar 10, 2013
146
#if WEBP_DECODER_ABI_VERSION < 0x0003 /* old versions don't support WEBPVP8X and WEBPVP8L */
May 22, 2013
May 22, 2013
147
magic[15] == ' ') {
Mar 10, 2013
Mar 10, 2013
148
#else
May 22, 2013
May 22, 2013
149
(magic[15] == ' ' || magic[15] == 'X' || magic[15] == 'L')) {
Mar 10, 2013
Mar 10, 2013
150
#endif
May 22, 2013
May 22, 2013
151
152
153
154
155
156
157
158
is_WEBP = 1;
if ( datasize ) {
*datasize = SDL_RWseek(src, 0, SEEK_END);
}
}
}
SDL_RWseek(src, start, RW_SEEK_SET);
return(is_WEBP);
159
160
161
162
163
}
/* See if an image is contained in a data source */
int IMG_isWEBP(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
164
return webp_getinfo( src, NULL );
165
166
167
168
}
SDL_Surface *IMG_LoadWEBP_RW(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
Sint64 start;
const char *error = NULL;
SDL_Surface *volatile surface = NULL;
Uint32 Rmask;
Uint32 Gmask;
Uint32 Bmask;
Uint32 Amask;
WebPBitstreamFeatures features;
int raw_data_size;
uint8_t *raw_data = NULL;
int r, s;
uint8_t *ret;
if ( !src ) {
/* The error message has been set in SDL_RWFromFile */
return NULL;
}
start = SDL_RWtell(src);
if ( !IMG_Init(IMG_INIT_WEBP) ) {
goto error;
}
raw_data_size = -1;
if ( !webp_getinfo( src, &raw_data_size ) ) {
error = "Invalid WEBP";
goto error;
}
// seek to start of file
SDL_RWseek(src, 0, RW_SEEK_SET );
raw_data = (uint8_t*) SDL_malloc( raw_data_size );
if ( raw_data == NULL ) {
error = "Failed to allocate enought buffer for WEBP";
goto error;
}
r = SDL_RWread(src, raw_data, 1, raw_data_size );
if ( r != raw_data_size ) {
error = "Failed to read WEBP";
goto error;
}
214
#if 0
May 22, 2013
May 22, 2013
215
216
217
218
219
220
// extract size of picture, not interesting since we don't know about alpha channel
int width = -1, height = -1;
if ( !WebPGetInfo( raw_data, raw_data_size, &width, &height ) ) {
printf("WebPGetInfo has failed\n" );
return NULL;
}
221
222
#endif
May 22, 2013
May 22, 2013
223
224
225
226
if ( lib.webp_get_features_internal( raw_data, raw_data_size, &features, WEBP_DECODER_ABI_VERSION ) != VP8_STATUS_OK ) {
error = "WebPGetFeatures has failed";
goto error;
}
227
May 22, 2013
May 22, 2013
228
/* Check if it's ok !*/
Mar 10, 2013
Mar 10, 2013
229
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
May 22, 2013
May 22, 2013
230
231
232
233
Rmask = 0x000000FF;
Gmask = 0x0000FF00;
Bmask = 0x00FF0000;
Amask = (features.has_alpha) ? 0xFF000000 : 0;
Mar 10, 2013
Mar 10, 2013
234
#else
May 22, 2013
May 22, 2013
235
236
237
238
239
s = (features.has_alpha) ? 0 : 8;
Rmask = 0xFF000000 >> s;
Gmask = 0x00FF0000 >> s;
Bmask = 0x0000FF00 >> s;
Amask = 0x000000FF >> s;
Mar 2, 2013
Mar 2, 2013
240
#endif
241
May 22, 2013
May 22, 2013
242
243
244
surface = SDL_CreateRGBSurface(SDL_SWSURFACE,
features.width, features.height,
features.has_alpha?32:24, Rmask,Gmask,Bmask,Amask);
245
May 22, 2013
May 22, 2013
246
247
248
249
if ( surface == NULL ) {
error = "Failed to allocate SDL_Surface";
goto error;
}
250
May 22, 2013
May 22, 2013
251
252
253
254
255
if ( features.has_alpha ) {
ret = lib.webp_decode_rgba_into( raw_data, raw_data_size, (uint8_t *)surface->pixels, surface->pitch * surface->h, surface->pitch );
} else {
ret = lib.webp_decode_rgb_into( raw_data, raw_data_size, (uint8_t *)surface->pixels, surface->pitch * surface->h, surface->pitch );
}
256
May 22, 2013
May 22, 2013
257
258
259
260
if ( !ret ) {
error = "Failed to decode WEBP";
goto error;
}
261
May 22, 2013
May 22, 2013
262
return surface;
263
264
265
266
error:
May 22, 2013
May 22, 2013
267
268
269
if ( surface ) {
SDL_FreeSurface( surface );
}
270
May 22, 2013
May 22, 2013
271
272
273
if ( raw_data ) {
SDL_free( raw_data );
}
274
May 22, 2013
May 22, 2013
275
276
277
if ( error ) {
IMG_SetError( error );
}
278
May 22, 2013
May 22, 2013
279
280
SDL_RWseek(src, start, RW_SEEK_SET);
return(NULL);
281
282
283
284
285
286
}
#else
int IMG_InitWEBP()
{
May 22, 2013
May 22, 2013
287
288
IMG_SetError("WEBP images are not supported");
return(-1);
289
290
291
292
293
294
295
296
297
}
void IMG_QuitWEBP()
{
}
/* See if an image is contained in a data source */
int IMG_isWEBP(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
298
return(0);
299
300
301
302
303
}
/* Load a WEBP type image from an SDL datasource */
SDL_Surface *IMG_LoadWEBP_RW(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
304
return(NULL);
305
306
307
}
#endif /* LOAD_WEBP */