summaryrefslogtreecommitdiffstats
path: root/sub/draw_bmp.c
blob: 315e52dfdd14b1850452024fc8ea060c100bb2b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
/*
 * This file is part of mpv.
 *
 * mpv is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * mpv is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with mpv; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "sub/draw_bmp.h"

#include <stdbool.h>
#include <assert.h>
#include <math.h>

#include "sub/sub.h"
#include "libmpcodecs/mp_image.h"
#include "libmpcodecs/sws_utils.h"
#include "libmpcodecs/img_format.h"
#include "libvo/csputils.h"

const bool mp_draw_sub_formats[SUBBITMAP_COUNT] = {
    [SUBBITMAP_LIBASS] = true,
    [SUBBITMAP_RGBA] = true,
};

struct sub_cache {
    struct mp_image *i, *a;
};

struct part {
    int bitmap_pos_id;
    int num_imgs;
    struct sub_cache *imgs;
};

struct mp_draw_sub_cache
{
    struct part *parts[MAX_OSD_PARTS];
};

#define ACCURATE
#define CONDITIONAL
#define CONDITIONAL2

static void blend_const16_alpha(uint8_t *dst,
                                ssize_t dstRowStride,
                                uint16_t srcp,
                                const uint8_t *srca,
                                ssize_t srcaRowStride,
                                uint8_t srcamul, int rows,
                                int cols)
{
    int i, j;
#ifdef CONDITIONAL
    if (!srcamul)
        return;
#endif
    for (i = 0; i < rows; ++i) {
        uint16_t *dstr = (uint16_t *) (dst + dstRowStride * i);
        const uint8_t *srcar = srca + srcaRowStride * i;
        for (j = 0; j < cols; ++j) {
            uint32_t srcap = srcar[j];
                // 32bit to force the math ops to operate on 32 bit
#ifdef CONDITIONAL
            if (!srcap)
                continue;
#endif
#ifdef CONDITIONAL2
            if (srcap == 255 && srcamul == 255) {
                dstr[j] = srcp;
                continue;
            }
#endif
            uint16_t dstp = dstr[j];
            srcap *= srcamul; // now 0..65025
            uint16_t outp =
                (srcp * srcap + dstp * (65025 - srcap) + 32512) / 65025;
            dstr[j] = outp;
        }
    }
}

static void blend_src16_alpha(uint8_t *dst,
                              ssize_t dstRowStride,
                              const uint8_t *src,
                              ssize_t srcRowStride,
                              const uint8_t *srca,
                              ssize_t srcaRowStride,
                              int rows,
                              int cols)
{
    int i, j;
    for (i = 0; i < rows; ++i) {
        uint16_t *dstr = (uint16_t *) (dst + dstRowStride * i);
        const uint16_t *srcr = (const uint16_t *) (src + srcRowStride * i);
        const uint8_t *srcar = srca + srcaRowStride * i;
        for (j = 0; j < cols; ++j) {
            uint32_t srcap = srcar[j];
                // 32bit to force the math ops to operate on 32 bit
#ifdef CONDITIONAL
            if (!srcap)
                continue;
#endif
            uint16_t srcp = srcr[j];
#ifdef CONDITIONAL2
            if (srcap == 255) {
                dstr[j] = srcp;
                continue;
            }
#endif
            uint16_t dstp = dstr[j];
            uint16_t outp =
                (srcp * srcap + dstp * (255 - srcap) + 127) / 255;
            dstr[j] = outp;
        }
    }
}

static void blend_const8_alpha(uint8_t *dst,
                               ssize_t dstRowStride,
                               uint16_t srcp,
                               const uint8_t *srca,
                               ssize_t srcaRowStride,
                               uint8_t srcamul, int rows,
                               int cols)
{
    int i, j;
#ifdef CONDITIONAL
    if (!srcamul)
        return;
#endif
    for (i = 0; i < rows; ++i) {
        uint8_t *dstr = dst + dstRowStride * i;
        const uint8_t *srcar = srca + srcaRowStride * i;
        for (j = 0; j < cols; ++j) {
            uint32_t srcap = srcar[j];
                // 32bit to force the math ops to operate on 32 bit
#ifdef CONDITIONAL
            if (!srcap)
                continue;
#endif
#ifdef CONDITIONAL2
            if (srcap == 255 && srcamul == 255) {
                dstr[j] = srcp;
                continue;
            }
#endif
            uint8_t dstp = dstr[j];
#ifdef ACCURATE
            srcap *= srcamul; // now 0..65025
            uint8_t outp =
                (srcp * srcap + dstp * (65025 - srcap) + 32512) / 65025;
            dstr[j] = outp;
#else
            srcap = (srcap * srcamul + 255) >> 8;
            uint8_t outp =
                (srcp * srcap + dstp * (255 - srcap) + 255) >> 8;
            dstr[j] = outp;
#endif
        }
    }
}

static void blend_src8_alpha(uint8_t *dst,
                             ssize_t dstRowStride,
                             const uint8_t *src,
                             ssize_t srcRowStride,
                             const uint8_t *srca,
                             ssize_t srcaRowStride,
                             int rows,
                             int cols)
{
    int i, j;
    for (i = 0; i < rows; ++i) {
        uint8_t *dstr = dst + dstRowStride * i;
        const uint8_t *srcr = src + srcRowStride * i;
        const uint8_t *srcar = srca + srcaRowStride * i;
        for (j = 0; j < cols; ++j) {
            uint16_t srcap = srcar[j];
                // 16bit to force the math ops to operate on 16 bit
#ifdef CONDITIONAL
            if (!srcap)
                continue;
#endif
            uint8_t srcp = srcr[j];
#ifdef CONDITIONAL2
            if (srcap == 255) {
                dstr[j] = srcp;
                continue;
            }
#endif
            uint8_t dstp = dstr[j];
#ifdef ACCURATE
            uint8_t outp =
                (srcp * srcap + dstp * (255 - srcap) + 127) / 255;
#else
            uint8_t outp =
                (srcp * srcap + dstp * (255 - srcap) + 255) >> 8;
#endif
            dstr[j] = outp;
        }
    }
}

static void blend_src_alpha(uint8_t *dst, ssize_t dstRowStride,
                            const uint8_t *src, ssize_t srcRowStride,
                            const uint8_t *srca, ssize_t srcaRowStride,
                            int rows, int cols, int bytes)
{
    if (bytes == 2) {
        blend_src16_alpha(dst, dstRowStride, src,
                          srcRowStride, srca,
                          srcaRowStride, rows, cols);
    } else if (bytes == 1) {
        blend_src8_alpha(dst, dstRowStride, src,
                         srcRowStride, srca,
                         srcaRowStride, rows, cols);
    }
}

static void blend_const_alpha(uint8_t *dst, ssize_t dstRowStride,
                              uint16_t srcp,
                              const uint8_t *srca, ssize_t srcaRowStride,
                              uint8_t srcamul,
                              int rows, int cols, int bytes)
{
    if (bytes == 2) {
        blend_const16_alpha(dst, dstRowStride, srcp,
                            srca, srcaRowStride,
                            srcamul, rows,
                            cols);
    } else if (bytes == 1) {
        blend_const8_alpha(dst, dstRowStride, srcp,
                           srca, srcaRowStride, srcamul,
                           rows,
                           cols);
    }
}

static inline int min(int x, int y)
{
    if (x < y)
        return x;
    else
        return y;
}

static void unpremultiply_and_split_bgra(mp_image_t *img, mp_image_t *alpha)
{
    int x, y;
    for (y = 0; y < img->h; ++y) {
        unsigned char *irow = &img->planes[0][img->stride[0] * y];
        unsigned char *arow = &alpha->planes[0][alpha->stride[0] * y];
        for (x = 0; x < img->w; ++x) {
            unsigned char aval = irow[4 * x + 3];
            // multiplied = separate * alpha / 255
            // separate = rint(multiplied * 255 / alpha)
            //          = floor(multiplied * 255 / alpha + 0.5)
            //          = floor((multiplied * 255 + 0.5 * alpha) / alpha)
            //          = floor((multiplied * 255 + floor(0.5 * alpha)) / alpha)
            int div = (int) aval;
            int add = div / 2;
            if (aval) {
                irow[4 * x + 0] = min(255, (irow[4 * x + 0] * 255 + add) / div);
                irow[4 * x + 1] = min(255, (irow[4 * x + 1] * 255 + add) / div);
                irow[4 * x + 2] = min(255, (irow[4 * x + 2] * 255 + add) / div);
            }
            arow[x] = aval;
        }
    }
}

static bool sub_bitmap_to_mp_images(struct mp_image **sbi, int *color_yuv,
                                    int *color_a, struct mp_image **sba,
                                    struct sub_bitmap *sb,
                                    int format, struct mp_csp_details *csp,
                                    float rgb2yuv[3][4], int imgfmt, int bits)
{
    *sbi = NULL;
    *sba = NULL;
    if (format == SUBBITMAP_RGBA && sb->w >= 8) {
        // >= 8 because of libswscale madness
        // swscale the bitmap from w*h to dw*dh, changing BGRA8 into YUV444P16
        // and make a scaled copy of A8
        mp_image_t *sbisrc = new_mp_image(sb->w, sb->h);
        mp_image_setfmt(sbisrc, IMGFMT_BGRA);
        sbisrc->planes[0] = sb->bitmap;
        sbisrc->stride[0] = sb->stride;
        mp_image_t *sbisrc2 = alloc_mpi(sb->dw, sb->dh, IMGFMT_BGRA);
        mp_image_swscale(sbisrc2, sbisrc, csp, SWS_BILINEAR);

        // sbisrc2 now is the original image in premultiplied alpha, but
        // properly scaled...
        // now, un-premultiply so we can work in YUV color space, also extract
        // alpha
        *sba = alloc_mpi(sb->dw, sb->dh, IMGFMT_Y8);
        unpremultiply_and_split_bgra(sbisrc2, *sba);

        // convert to the output format
        *sbi = alloc_mpi(sb->dw, sb->dh, imgfmt);
        mp_image_swscale(*sbi, sbisrc2, csp, SWS_BILINEAR);

        free_mp_image(sbisrc);
        free_mp_image(sbisrc2);

        color_yuv[0] = 255;
        color_yuv[1] = 128;
        color_yuv[2] = 128;
        *color_a = 255;
        return true;
    } else if (format == SUBBITMAP_LIBASS &&
            sb->w == sb->dw && sb->h == sb->dh) {
        // swscale alpha only
        *sba = new_mp_image(sb->w, sb->h);
        mp_image_setfmt(*sba, IMGFMT_Y8);
        (*sba)->planes[0] = sb->bitmap;
        (*sba)->stride[0] = sb->stride;
        int r = (sb->libass.color >> 24) & 0xFF;
        int g = (sb->libass.color >> 16) & 0xFF;
        int b = (sb->libass.color >> 8) & 0xFF;
        int a = sb->libass.color & 0xFF;
        color_yuv[0] =
            rint(MP_MAP_RGB2YUV_COLOR(rgb2yuv, r, g, b, 255, 0)
                    * (1 << (bits - 8)));
        color_yuv[1] =
            rint(MP_MAP_RGB2YUV_COLOR(rgb2yuv, r, g, b, 255, 1)
                    * (1 << (bits - 8)));
        color_yuv[2] =
            rint(MP_MAP_RGB2YUV_COLOR(rgb2yuv, r, g, b, 255, 2)
                    * (1 << (bits - 8)));
        *color_a = 255 - a;
        // NOTE: these overflows can actually happen (when subtitles use color
        // 0,0,0 while output levels only allows 16,16,16 upwards...)
        if (color_yuv[0] < 0)
            color_yuv[0] = 0;
        if (color_yuv[1] < 0)
            color_yuv[1] = 0;
        if (color_yuv[2] < 0)
            color_yuv[2] = 0;
        if (*color_a < 0)
            *color_a = 0;
        if (color_yuv[0] > ((1 << bits) - 1))
            color_yuv[0] = ((1 << bits) - 1);
        if (color_yuv[1] > ((1 << bits) - 1))
            color_yuv[1] = ((1 << bits) - 1);
        if (color_yuv[2] > ((1 << bits) - 1))
            color_yuv[2] = ((1 << bits) - 1);
        if (*color_a > 255)
            *color_a = 255;
        return true;
    } else
        return false;
}

static void mp_image_crop(struct mp_image *img, int x, int y, int w, int h)
{
    int p;
    for (p = 0; p < img->num_planes; ++p) {
        int bits = MP_IMAGE_BITS_PER_PIXEL_ON_PLANE(img, p);
        img->planes[p] +=
            (y >> (p ? img->chroma_y_shift : 0)) * img->stride[p] +
            ((x >> (p ? img->chroma_x_shift : 0)) * bits) / 8;
    }
    img->w = w;
    img->h = h;
}

static bool clip_to_bounds(int *x, int *y, int *w, int *h,
                           int bx, int by, int bw, int bh)
{
    if (*x < bx) {
        *w += *x - bx;
        *x = bx;
    }
    if (*y < 0) {
        *h += *y - by;
        *y = by;
    }
    if (*x + *w > bx + bw)
        *w = bx + bw - *x;
    if (*y + *h > by + bh)
        *h = by + bh - *y;

    if (*w <= 0 || *h <= 0)
        return false;  // nothing left

    return true;
}

static void get_swscale_requirements(int *sx, int *sy,
                                       const struct mp_image *img)
{
    int p;

    if (img->chroma_x_shift == 31)
        *sx = 1;
    else
        *sx = (1 << img->chroma_x_shift);

    if (img->chroma_y_shift == 31)
        *sy = 1;
    else
        *sy = (1 << img->chroma_y_shift);

    for (p = 0; p < img->num_planes; ++p) {
        int bits = MP_IMAGE_BITS_PER_PIXEL_ON_PLANE(img, p);
        // the * 2 fixes problems with writing past the destination width
        while (((*sx >> img->chroma_x_shift) * bits) % (SWS_MIN_BYTE_ALIGN * 8 * 2))
            *sx *= 2;
    }
}

static void align_bbox(int *x1, int *y1, int *x2, int *y2, int xstep, int ystep)
{
    *x1 -= (*x1 % xstep);
    *y1 -= (*y1 % ystep);

    *x2 += xstep - 1;
    *y2 += ystep - 1;
    *x2 -= (*x2 % xstep);
    *y2 -= (*y2 % ystep);
}

static bool align_bbox_to_swscale_requirements(int *x1, int *y1,
                                               int *x2, int *y2,
                                               struct mp_image *img)
{
    int xstep, ystep;
    get_swscale_requirements(&xstep, &ystep, img);
    align_bbox(x1, y1, x2, y2, xstep, ystep);

    if (*x1 < 0)
        *x1 = 0;
    if (*y1 < 0)
        *y1 = 0;
    if (*x2 > img->w)
        *x2 = img->w;
    if (*y2 > img->h)
        *y2 = img->h;

    return (*x2 > *x1) && (*y2 > *y1);
}

// cache: if not NULL, the function will set *cache to a talloc-allocated cache
//        containing scaled versions of sbs contents - free the cache with
//        talloc_free()
void mp_draw_sub_bitmaps(struct mp_draw_sub_cache **cache, struct mp_image *dst,
                         struct sub_bitmaps *sbs, struct mp_csp_details *csp)
{
    int i;
    int x1, y1, x2, y2;
    int color_yuv[3];
    int color_a;
    float yuv2rgb[3][4];
    float rgb2yuv[3][4];

    if (cache && !*cache)
        *cache = talloc_zero(NULL, struct mp_draw_sub_cache);

    struct part *part = NULL;

    bool use_cache = sbs->format == SUBBITMAP_RGBA;
    if (cache && use_cache) {
        part = (*cache)->parts[sbs->render_index];
        if (part && part->bitmap_pos_id != sbs->bitmap_pos_id) {
            talloc_free(part);
            part = NULL;
        }
        if (!part) {
            part = talloc_zero(*cache, struct part);
            part->bitmap_pos_id = sbs->bitmap_pos_id;
            part->num_imgs = sbs->num_parts;
            part->imgs = talloc_zero_array(part, struct sub_cache,
                                           part->num_imgs);
        }
        assert(part->num_imgs == sbs->num_parts);
        (*cache)->parts[sbs->render_index] = part;
    }

#ifdef ACCURATE
    int format = IMGFMT_444P16;
    int bits = 16;
    // however, we can try matching 8bit, 9bit, 10bit yuv formats!
    if (dst->flags & MP_IMGFLAG_YUV) {
        if (mp_get_chroma_shift(dst->imgfmt, NULL, NULL, &bits)) {
            switch (bits) {
                case 8:
                    format = IMGFMT_444P;
                    break;
                case 9:
                    format = IMGFMT_444P9;
                    break;
                case 10:
                    format = IMGFMT_444P10;
                    break;
                default:
                    // revert back
                    bits = 16;
                    break;
            }
        }
    }
#else
    int format = IMGFMT_444P;
    int bits = 8;
#endif
    int bytes = (bits + 7) / 8;

    struct mp_csp_params cspar = {
        .colorspace = *csp,
        .brightness = 0, .contrast = 1,
        .hue = 0, .saturation = 1,
        .rgamma = 1, .ggamma = 1, .bgamma = 1,
        .texture_bits = 8, .input_bits = 8
    };

    // prepare YUV/RGB conversion values
    mp_get_yuv2rgb_coeffs(&cspar, yuv2rgb);
    mp_invert_yuv2rgb(rgb2yuv, yuv2rgb);

    //mp_msg(MSGT_VO, MSGL_ERR, "%f %f %f %f // %f %f %f %f // %f %f %f %f\n",
    //        rgb2yuv[0][0],
    //        rgb2yuv[0][1],
    //        rgb2yuv[0][2],
    //        rgb2yuv[0][3],
    //        rgb2yuv[1][0],
    //        rgb2yuv[1][1],
    //        rgb2yuv[1][2],
    //        rgb2yuv[1][3],
    //        rgb2yuv[2][0],
    //        rgb2yuv[2][1],
    //        rgb2yuv[2][2],
    //        rgb2yuv[2][3]);

    // calculate bounding range
    if (!sub_bitmaps_bb(sbs, &x1, &y1, &x2, &y2))
        return;

    if (!align_bbox_to_swscale_requirements(&x1, &y1, &x2, &y2, dst))
        return;  // nothing to do

    // convert to a temp image
    mp_image_t *temp;
    mp_image_t dst_region = *dst;
    if (dst->imgfmt == format) {
        mp_image_crop(&dst_region, x1, y1, x2 - x1, y2 - y1);
        temp = &dst_region;
    } else {
        mp_image_crop(&dst_region, x1, y1, x2 - x1, y2 - y1);
        temp = alloc_mpi(x2 - x1, y2 - y1, format);
        mp_image_swscale(temp, &dst_region, csp, SWS_POINT); // chroma up
    }

    for (i = 0; i < sbs->num_parts; ++i) {
        struct sub_bitmap *sb = &sbs->parts[i];
        mp_image_t *sbi = NULL;
        mp_image_t *sba = NULL;

        // cut off areas outside the image
        int dst_x = sb->x - x1; // coordinates are relative to the bbox
        int dst_y = sb->y - y1; // coordinates are relative to the bbox
        int dst_w = sb->dw;
        int dst_h = sb->dh;
        if (!clip_to_bounds(&dst_x, &dst_y, &dst_w, &dst_h,
                            0, 0, temp->w, temp->h))
            continue;

        if (part) {
            sbi = part->imgs[i].i;
            sba = part->imgs[i].a;
        }

        if (!(sbi && sba)) {
            if (!sub_bitmap_to_mp_images(&sbi, color_yuv, &color_a, &sba, sb,
                                         sbs->format, csp, rgb2yuv, format,
                                         bits))
            {
                mp_msg(MSGT_VO, MSGL_ERR,
                       "render_sub_bitmap: invalid sub bitmap type\n");
                continue;
            }
        }

        // call blend_alpha 3 times
        int p;
        int src_x = (dst_x + x1) - sb->x;
        int src_y = (dst_y + y1) - sb->y;
        unsigned char *alpha_p =
            sba->planes[0] + src_y * sba->stride[0] + src_x;
        for (p = 0; p < 3; ++p) {
            unsigned char *dst_p =
                temp->planes[p] + dst_y * temp->stride[p] + dst_x * bytes;
            if (sbi) {
                unsigned char *src_p =
                    sbi->planes[p] + src_y * sbi->stride[p] + src_x * bytes;
                blend_src_alpha(
                    dst_p, temp->stride[p],
                    src_p, sbi->stride[p],
                    alpha_p, sba->stride[0],
                    dst_h, dst_w, bytes
                    );
            } else {
                blend_const_alpha(
                    dst_p, temp->stride[p],
                    color_yuv[p],
                    alpha_p, sba->stride[0], color_a,
                    dst_h, dst_w, bytes
                    );
            }
        }

        if (part) {
            part->imgs[i].i = talloc_steal(part, sbi);
            part->imgs[i].a = talloc_steal(part, sba);
        } else {
            free_mp_image(sbi);
            free_mp_image(sba);
        }
    }

    if (temp != &dst_region) {
        // convert back
        mp_image_swscale(&dst_region, temp, csp, SWS_AREA); // chroma down

        // clean up
        free_mp_image(temp);
    }
}

// vim: ts=4 sw=4 et tw=80