-
Notifications
You must be signed in to change notification settings - Fork 25
/
io-webp-anim-iter.c
265 lines (218 loc) · 7 KB
/
io-webp-anim-iter.c
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/* GdkPixbuf library - WebP Image Loader
*
* SPDX-License-Identifier: LGPL-2.0-or-later
* Copyright (C) 2021 Alan Hawrelak
* Copyright (C) 2022 Alberto Ruiz
*
* Authors: Alan Hawrelak <[email protected]>
* Alberto Ruiz <[email protected]>
*/
#include "io-webp-anim.h"
#include <webp/decode.h>
#include <webp/demux.h>
#include <webp/encode.h>
typedef struct
{
GdkPixbuf *pb;
gint length;
} Frame;
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
typedef struct
{
GTimeVal start_time;
GTimeVal curr_time;
GArray *frames;
guint loop_length;
gsize curr_frame;
} GdkWebpAnimationIterPrivate;
struct _GdkWebpAnimationIter
{
GdkPixbufAnimationIter parent_instance;
};
static void
clear_frame (Frame *fr)
{
g_object_unref (fr->pb);
}
G_DEFINE_TYPE_WITH_PRIVATE (GdkWebpAnimationIter, gdk_webp_animation_iter, GDK_TYPE_PIXBUF_ANIMATION_ITER)
static void
iter_finalize (GObject *self)
{
G_OBJECT_CLASS (gdk_webp_animation_iter_parent_class)->finalize (self);
}
static void
iter_dispose (GObject *self)
{
GdkWebpAnimationIterPrivate *priv = gdk_webp_animation_iter_get_instance_private (
GDK_WEBP_ANIMATION_ITER (self));
if (priv->frames)
{
g_array_free (priv->frames, TRUE);
priv->frames = NULL;
}
G_OBJECT_CLASS (gdk_webp_animation_iter_parent_class)->dispose (self);
}
static int
get_delay_time (GdkPixbufAnimationIter *self)
{
GdkWebpAnimationIterPrivate *priv = gdk_webp_animation_iter_get_instance_private (
GDK_WEBP_ANIMATION_ITER (self));
Frame *frame = &g_array_index (priv->frames, Frame, priv->curr_frame);
return frame->length;
}
static GdkPixbuf *
get_pixbuf (GdkPixbufAnimationIter *self)
{
GdkWebpAnimationIterPrivate *priv = gdk_webp_animation_iter_get_instance_private (
GDK_WEBP_ANIMATION_ITER (self));
Frame *frame = &g_array_index (priv->frames, Frame, priv->curr_frame);
return frame->pb;
}
static gboolean
on_currently_loading_frame (GdkPixbufAnimationIter *self)
{
return FALSE;
}
static gint
timeval_sub_in_millis (const GTimeVal *a, const GTimeVal *b)
{
gint delta_millis = (a->tv_sec - b->tv_sec) * 1000;
if (b->tv_usec > a->tv_usec)
{
delta_millis -= 1000; // -1 second
delta_millis += (1000000 + (a->tv_usec - b->tv_usec)) / 1000;
}
else
{
delta_millis += (a->tv_usec - b->tv_usec) / 1000;
}
return delta_millis;
}
static gboolean
advance (GdkPixbufAnimationIter *self, const GTimeVal *time)
{
GTimeVal curr_time = { 0 };
GdkWebpAnimationIterPrivate *priv = gdk_webp_animation_iter_get_instance_private (
GDK_WEBP_ANIMATION_ITER (self));
if (time == NULL)
{
g_get_current_time (&curr_time);
time = &curr_time;
}
// time needs to be later than priv->curr_time
if (time->tv_sec <= priv->curr_time.tv_sec && time->tv_usec <= priv->curr_time.tv_usec)
return FALSE;
if (priv->loop_length == 0)
return FALSE;
gint delta = timeval_sub_in_millis (time, &priv->start_time);
priv->curr_time = *time;
delta = delta % priv->loop_length;
for (guint f = 0; f < priv->frames->len; f++)
{
Frame *frame = &g_array_index (priv->frames, Frame, f);
if (delta <= frame->length)
{
if (f == priv->curr_frame)
return FALSE;
priv->curr_frame = f;
break;
}
delta -= frame->length;
}
return TRUE;
}
static void
gdk_webp_animation_iter_class_init (GdkWebpAnimationIterClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GdkPixbufAnimationIterClass *iter_class = GDK_PIXBUF_ANIMATION_ITER_CLASS (klass);
object_class->finalize = iter_finalize;
object_class->dispose = iter_dispose;
iter_class->get_delay_time = get_delay_time;
iter_class->get_pixbuf = get_pixbuf;
iter_class->on_currently_loading_frame = on_currently_loading_frame;
iter_class->advance = advance;
}
static void
gdk_webp_animation_iter_init (GdkWebpAnimationIter *self)
{
GdkWebpAnimationIterPrivate *priv = gdk_webp_animation_iter_get_instance_private (self);
*priv = (GdkWebpAnimationIterPrivate){ 0 };
priv->frames = g_array_new (FALSE, FALSE, sizeof (Frame));
g_array_set_clear_func (priv->frames, (GDestroyNotify) clear_frame);
}
GdkWebpAnimationIter *
gdk_webp_animation_new_from_buffer_and_time (const GByteArray *buf,
const GTimeVal *start_time,
GError **error)
{
WebPAnimDecoderOptions opts;
if (! WebPAnimDecoderOptionsInit (&opts))
{
g_set_error (error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_FAILED,
"Could not initialize WebP decoder options");
return NULL;
}
opts.color_mode = MODE_RGBA;
WebPData data = { .bytes = buf->data, .size = (size_t) buf->len };
WebPAnimDecoder *adec = WebPAnimDecoderNew (&data, &opts);
if (! adec)
{
g_set_error (error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_FAILED,
"Could not instantiate WebPAnimDecoder");
return NULL;
}
WebPAnimInfo ainfo;
if (! WebPAnimDecoderGetInfo (adec, &ainfo))
{
g_set_error (error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_FAILED,
"Could not get animation info from WebP decoder");
g_clear_pointer (&adec, WebPAnimDecoderDelete);
return NULL;
}
GdkWebpAnimationIter *iter = g_object_new (GDK_WEBP_ANIMATION_ITER_TYPE, NULL);
GdkWebpAnimationIterPrivate *priv = gdk_webp_animation_iter_get_instance_private (iter);
if (start_time == NULL)
{
g_get_current_time (&priv->start_time);
}
else
{
priv->start_time = *start_time;
}
guchar *tmp_data = NULL;
gint timestamp = 0;
gint loop_length = 0;
while (WebPAnimDecoderHasMoreFrames (adec))
{
if (! WebPAnimDecoderGetNext (adec, &tmp_data, ×tamp))
{
g_set_error (error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_FAILED,
"Could not get frame from WebP animation decoder");
g_clear_pointer (&adec, WebPAnimDecoderDelete);
return NULL;
}
GdkPixbuf *pb = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, (gint) ainfo.canvas_width,
(gint) ainfo.canvas_height);
guchar *pb_pixels = gdk_pixbuf_get_pixels (pb);
gsize pb_stride = (gsize) gdk_pixbuf_get_rowstride (pb);
gsize data_stride = (gsize) ainfo.canvas_width * 4;
for (int i = 0; i < ainfo.canvas_height; i++)
{
guchar *data_row = tmp_data + (i * data_stride);
guchar *pb_row = pb_pixels + (i * pb_stride);
memcpy (pb_row, data_row, data_stride);
}
if (timestamp <= loop_length)
timestamp = loop_length + 50;
Frame f = { .pb = pb, .length = timestamp - loop_length };
g_array_append_vals (priv->frames, &f, 1);
loop_length = timestamp;
tmp_data = NULL;
timestamp = 0;
}
priv->loop_length = loop_length;
g_clear_pointer (&adec, WebPAnimDecoderDelete);
return iter;
}
G_GNUC_END_IGNORE_DEPRECATIONS