pngenc.c 16.4 KB
Newer Older
1 2
/*
 * PNG image format
3
 * Copyright (c) 2003 Fabrice Bellard
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */
21

22
#include "avcodec.h"
23
#include "internal.h"
24
#include "bytestream.h"
25
#include "dsputil.h"
26 27
#include "png.h"

28
#include "libavutil/avassert.h"
29
#include "libavutil/opt.h"
30

31 32
#include <zlib.h>

33 34 35
#define IOBUF_SIZE 4096

typedef struct PNGEncContext {
36
    AVClass *class;
Loren Merritt's avatar
Loren Merritt committed
37 38
    DSPContext dsp;

39 40 41 42
    uint8_t *bytestream;
    uint8_t *bytestream_start;
    uint8_t *bytestream_end;

Loren Merritt's avatar
Loren Merritt committed
43 44
    int filter_type;

45 46
    z_stream zstream;
    uint8_t buf[IOBUF_SIZE];
47 48
    int dpi;                     ///< Physical pixel density, in dots per inch, if set
    int dpm;                     ///< Physical pixel density, in dots per meter, if set
49 50
} PNGEncContext;

51 52 53 54 55 56 57
static void png_get_interlaced_row(uint8_t *dst, int row_size,
                                   int bits_per_pixel, int pass,
                                   const uint8_t *src, int width)
{
    int x, mask, dst_x, j, b, bpp;
    uint8_t *d;
    const uint8_t *s;
58
    static const int masks[] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
59

60
    mask = masks[pass];
61
    switch (bits_per_pixel) {
62 63 64
    case 1:
        memset(dst, 0, row_size);
        dst_x = 0;
65
        for (x = 0; x < width; x++) {
66 67 68 69 70 71 72 73 74 75 76 77
            j = (x & 7);
            if ((mask << j) & 0x80) {
                b = (src[x >> 3] >> (7 - j)) & 1;
                dst[dst_x >> 3] |= b << (7 - (dst_x & 7));
                dst_x++;
            }
        }
        break;
    default:
        bpp = bits_per_pixel >> 3;
        d = dst;
        s = src;
78
        for (x = 0; x < width; x++) {
79 80 81 82 83 84 85 86 87 88 89
            j = x & 7;
            if ((mask << j) & 0x80) {
                memcpy(d, s, bpp);
                d += bpp;
            }
            s += bpp;
        }
        break;
    }
}

90 91
static void sub_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top,
                                     int w, int bpp)
Loren Merritt's avatar
Loren Merritt committed
92 93
{
    int i;
94
    for (i = 0; i < w; i++) {
Loren Merritt's avatar
Loren Merritt committed
95 96 97 98 99 100
        int a, b, c, p, pa, pb, pc;

        a = src[i - bpp];
        b = top[i];
        c = top[i - bpp];

101
        p  = b - c;
Loren Merritt's avatar
Loren Merritt committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
        pc = a - c;

        pa = abs(p);
        pb = abs(pc);
        pc = abs(p + pc);

        if (pa <= pb && pa <= pc)
            p = a;
        else if (pb <= pc)
            p = b;
        else
            p = c;
        dst[i] = src[i] - p;
    }
}

118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
static void sub_left_prediction(DSPContext *dsp, uint8_t *dst, const uint8_t *src, int bpp, int size)
{
    const uint8_t *src1 = src + bpp;
    const uint8_t *src2 = src;
    int x, unaligned_w;

    memcpy(dst, src, bpp);
    dst += bpp;
    size -= bpp;
    unaligned_w = FFMIN(32 - bpp, size);
    for (x = 0; x < unaligned_w; x++)
        *dst++ = *src1++ - *src2++;
    size -= unaligned_w;
    dsp->diff_bytes(dst, src1, src2, size);
}

Loren Merritt's avatar
Loren Merritt committed
134 135 136 137 138
static void png_filter_row(DSPContext *dsp, uint8_t *dst, int filter_type,
                           uint8_t *src, uint8_t *top, int size, int bpp)
{
    int i;

139
    switch (filter_type) {
Loren Merritt's avatar
Loren Merritt committed
140 141 142 143
    case PNG_FILTER_VALUE_NONE:
        memcpy(dst, src, size);
        break;
    case PNG_FILTER_VALUE_SUB:
144
        sub_left_prediction(dsp, dst, src, bpp, size);
Loren Merritt's avatar
Loren Merritt committed
145 146 147 148 149
        break;
    case PNG_FILTER_VALUE_UP:
        dsp->diff_bytes(dst, src, top, size);
        break;
    case PNG_FILTER_VALUE_AVG:
150
        for (i = 0; i < bpp; i++)
Loren Merritt's avatar
Loren Merritt committed
151
            dst[i] = src[i] - (top[i] >> 1);
152 153
        for (; i < size; i++)
            dst[i] = src[i] - ((src[i - bpp] + top[i]) >> 1);
Loren Merritt's avatar
Loren Merritt committed
154 155
        break;
    case PNG_FILTER_VALUE_PAETH:
156
        for (i = 0; i < bpp; i++)
Loren Merritt's avatar
Loren Merritt committed
157
            dst[i] = src[i] - top[i];
158
        sub_png_paeth_prediction(dst + i, src + i, top + i, size - i, bpp);
Loren Merritt's avatar
Loren Merritt committed
159 160 161 162 163 164 165 166
        break;
    }
}

static uint8_t *png_choose_filter(PNGEncContext *s, uint8_t *dst,
                                  uint8_t *src, uint8_t *top, int size, int bpp)
{
    int pred = s->filter_type;
167
    av_assert0(bpp || !pred);
168
    if (!top && pred)
Loren Merritt's avatar
Loren Merritt committed
169
        pred = PNG_FILTER_VALUE_SUB;
170
    if (pred == PNG_FILTER_VALUE_MIXED) {
Loren Merritt's avatar
Loren Merritt committed
171 172 173
        int i;
        int cost, bcost = INT_MAX;
        uint8_t *buf1 = dst, *buf2 = dst + size + 16;
174 175
        for (pred = 0; pred < 5; pred++) {
            png_filter_row(&s->dsp, buf1 + 1, pred, src, top, size, bpp);
Loren Merritt's avatar
Loren Merritt committed
176 177
            buf1[0] = pred;
            cost = 0;
178 179 180
            for (i = 0; i <= size; i++)
                cost += abs((int8_t) buf1[i]);
            if (cost < bcost) {
Loren Merritt's avatar
Loren Merritt committed
181
                bcost = cost;
182
                FFSWAP(uint8_t *, buf1, buf2);
Loren Merritt's avatar
Loren Merritt committed
183 184 185 186
            }
        }
        return buf2;
    } else {
187
        png_filter_row(&s->dsp, dst + 1, pred, src, top, size, bpp);
Loren Merritt's avatar
Loren Merritt committed
188 189 190 191 192
        dst[0] = pred;
        return dst;
    }
}

193 194 195 196 197 198 199 200 201 202
static void png_write_chunk(uint8_t **f, uint32_t tag,
                            const uint8_t *buf, int length)
{
    uint32_t crc;
    uint8_t tagbuf[4];

    bytestream_put_be32(f, length);
    crc = crc32(0, Z_NULL, 0);
    AV_WL32(tagbuf, tag);
    crc = crc32(crc, tagbuf, 4);
203
    bytestream_put_be32(f, av_bswap32(tag));
204 205 206 207 208 209 210 211 212
    if (length > 0) {
        crc = crc32(crc, buf, length);
        memcpy(*f, buf, length);
        *f += length;
    }
    bytestream_put_be32(f, crc);
}

/* XXX: do filtering */
213
static int png_write_row(PNGEncContext *s, const uint8_t *data, int size)
214 215 216 217
{
    int ret;

    s->zstream.avail_in = size;
218
    s->zstream.next_in  = (uint8_t *)data;
219 220 221 222 223
    while (s->zstream.avail_in > 0) {
        ret = deflate(&s->zstream, Z_NO_FLUSH);
        if (ret != Z_OK)
            return -1;
        if (s->zstream.avail_out == 0) {
224 225 226
            if (s->bytestream_end - s->bytestream > IOBUF_SIZE + 100)
                png_write_chunk(&s->bytestream,
                                MKTAG('I', 'D', 'A', 'T'), s->buf, IOBUF_SIZE);
227
            s->zstream.avail_out = IOBUF_SIZE;
228
            s->zstream.next_out  = s->buf;
229 230 231 232 233
        }
    }
    return 0;
}

234 235 236
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
                        const AVFrame *pict, int *got_packet)
{
237 238
    PNGEncContext *s       = avctx->priv_data;
    const AVFrame *const p = pict;
239
    int bit_depth, color_type, y, len, row_size, ret, is_progressive;
240 241
    int bits_per_pixel, pass_row_size, enc_row_size;
    int64_t max_packet_size;
242
    int compression_level;
243 244
    uint8_t *ptr, *top, *crow_buf, *crow;
    uint8_t *crow_base       = NULL;
Loren Merritt's avatar
Loren Merritt committed
245
    uint8_t *progressive_buf = NULL;
246
    uint8_t *top_buf         = NULL;
247 248

    is_progressive = !!(avctx->flags & CODEC_FLAG_INTERLACED_DCT);
249
    switch (avctx->pix_fmt) {
250
    case AV_PIX_FMT_RGBA64BE:
251
        bit_depth = 16;
252 253
        color_type = PNG_COLOR_TYPE_RGB_ALPHA;
        break;
254
    case AV_PIX_FMT_RGB48BE:
255
        bit_depth = 16;
256 257
        color_type = PNG_COLOR_TYPE_RGB;
        break;
258
    case AV_PIX_FMT_RGBA:
259
        bit_depth  = 8;
260 261
        color_type = PNG_COLOR_TYPE_RGB_ALPHA;
        break;
262
    case AV_PIX_FMT_RGB24:
263
        bit_depth  = 8;
264 265
        color_type = PNG_COLOR_TYPE_RGB;
        break;
266
    case AV_PIX_FMT_GRAY16BE:
267
        bit_depth  = 16;
268 269
        color_type = PNG_COLOR_TYPE_GRAY;
        break;
270
    case AV_PIX_FMT_GRAY8:
271
        bit_depth  = 8;
272 273
        color_type = PNG_COLOR_TYPE_GRAY;
        break;
274
    case AV_PIX_FMT_GRAY8A:
275 276 277
        bit_depth = 8;
        color_type = PNG_COLOR_TYPE_GRAY_ALPHA;
        break;
278
    case AV_PIX_FMT_MONOBLACK:
279
        bit_depth  = 1;
280 281
        color_type = PNG_COLOR_TYPE_GRAY;
        break;
282
    case AV_PIX_FMT_PAL8:
283
        bit_depth  = 8;
284 285 286 287 288 289
        color_type = PNG_COLOR_TYPE_PALETTE;
        break;
    default:
        return -1;
    }
    bits_per_pixel = ff_png_get_nb_channels(color_type) * bit_depth;
290
    row_size       = (avctx->width * bits_per_pixel + 7) >> 3;
291 292

    s->zstream.zalloc = ff_png_zalloc;
293
    s->zstream.zfree  = ff_png_zfree;
294
    s->zstream.opaque = NULL;
295 296 297
    compression_level = avctx->compression_level == FF_COMPRESSION_DEFAULT
                      ? Z_DEFAULT_COMPRESSION
                      : av_clip(avctx->compression_level, 0, 9);
298
    ret = deflateInit2(&s->zstream, compression_level,
299 300 301
                       Z_DEFLATED, 15, 8, Z_DEFAULT_STRATEGY);
    if (ret != Z_OK)
        return -1;
302 303

    enc_row_size    = deflateBound(&s->zstream, row_size);
304
    max_packet_size = avctx->height * (int64_t)(enc_row_size +
305 306
                                       ((enc_row_size + IOBUF_SIZE - 1) / IOBUF_SIZE) * 12)
                      + FF_MIN_BUFFER_SIZE;
307 308
    if (max_packet_size > INT_MAX)
        return AVERROR(ENOMEM);
309
    if ((ret = ff_alloc_packet2(avctx, pkt, max_packet_size)) < 0)
310 311 312 313 314 315
        return ret;

    s->bytestream_start =
    s->bytestream       = pkt->data;
    s->bytestream_end   = pkt->data + pkt->size;

Loren Merritt's avatar
Loren Merritt committed
316 317
    crow_base = av_malloc((row_size + 32) << (s->filter_type == PNG_FILTER_VALUE_MIXED));
    if (!crow_base)
318
        goto fail;
319 320
    // pixel data should be aligned, but there's a control byte before it
    crow_buf = crow_base + 15;
321
    if (is_progressive) {
Loren Merritt's avatar
Loren Merritt committed
322 323 324 325
        progressive_buf = av_malloc(row_size + 1);
        if (!progressive_buf)
            goto fail;
    }
326
    if (is_progressive) {
Loren Merritt's avatar
Loren Merritt committed
327 328
        top_buf = av_malloc(row_size + 1);
        if (!top_buf)
329 330 331 332
            goto fail;
    }

    /* write png header */
333
    AV_WB64(s->bytestream, PNGSIG);
334 335 336 337
    s->bytestream += 8;

    AV_WB32(s->buf, avctx->width);
    AV_WB32(s->buf + 4, avctx->height);
338 339
    s->buf[8]  = bit_depth;
    s->buf[9]  = color_type;
340 341 342 343 344 345
    s->buf[10] = 0; /* compression type */
    s->buf[11] = 0; /* filter type */
    s->buf[12] = is_progressive; /* interlace type */

    png_write_chunk(&s->bytestream, MKTAG('I', 'H', 'D', 'R'), s->buf, 13);

346 347 348 349 350 351 352 353 354
    if (s->dpm) {
      AV_WB32(s->buf, s->dpm);
      AV_WB32(s->buf + 4, s->dpm);
      s->buf[8] = 1; /* unit specifier is meter */
    } else {
      AV_WB32(s->buf, avctx->sample_aspect_ratio.num);
      AV_WB32(s->buf + 4, avctx->sample_aspect_ratio.den);
      s->buf[8] = 0; /* unit specifier is unknown */
    }
355 356
    png_write_chunk(&s->bytestream, MKTAG('p', 'H', 'Y', 's'), s->buf, 9);

357 358 359 360 361 362 363
    /* put the palette if needed */
    if (color_type == PNG_COLOR_TYPE_PALETTE) {
        int has_alpha, alpha, i;
        unsigned int v;
        uint32_t *palette;
        uint8_t *alpha_ptr;

364 365
        palette   = (uint32_t *)p->data[1];
        ptr       = s->buf;
366 367
        alpha_ptr = s->buf + 256 * 3;
        has_alpha = 0;
368 369
        for (i = 0; i < 256; i++) {
            v     = palette[i];
370
            alpha = v >> 24;
371
            if (alpha != 0xff)
372 373 374 375
                has_alpha = 1;
            *alpha_ptr++ = alpha;
            bytestream_put_be24(&ptr, v);
        }
376 377
        png_write_chunk(&s->bytestream,
                        MKTAG('P', 'L', 'T', 'E'), s->buf, 256 * 3);
378
        if (has_alpha) {
379 380
            png_write_chunk(&s->bytestream,
                            MKTAG('t', 'R', 'N', 'S'), s->buf + 256 * 3, 256);
381 382 383 384 385
        }
    }

    /* now put each row */
    s->zstream.avail_out = IOBUF_SIZE;
386
    s->zstream.next_out  = s->buf;
387 388 389
    if (is_progressive) {
        int pass;

390
        for (pass = 0; pass < NB_PASSES; pass++) {
Diego Biurrun's avatar
Diego Biurrun committed
391
            /* NOTE: a pass is completely omitted if no pixels would be
392
             * output */
393 394
            pass_row_size = ff_png_pass_row_size(pass, bits_per_pixel, avctx->width);
            if (pass_row_size > 0) {
Loren Merritt's avatar
Loren Merritt committed
395
                top = NULL;
396
                for (y = 0; y < avctx->height; y++)
397 398
                    if ((ff_png_pass_ymask[pass] << (y & 7)) & 0x80) {
                        ptr = p->data[0] + y * p->linesize[0];
399
                        FFSWAP(uint8_t *, progressive_buf, top_buf);
Loren Merritt's avatar
Loren Merritt committed
400
                        png_get_interlaced_row(progressive_buf, pass_row_size,
401
                                               bits_per_pixel, pass,
Loren Merritt's avatar
Loren Merritt committed
402
                                               ptr, avctx->width);
403 404
                        crow = png_choose_filter(s, crow_buf, progressive_buf,
                                                 top, pass_row_size, bits_per_pixel >> 3);
Loren Merritt's avatar
Loren Merritt committed
405 406
                        png_write_row(s, crow, pass_row_size + 1);
                        top = progressive_buf;
407 408 409 410
                    }
            }
        }
    } else {
Loren Merritt's avatar
Loren Merritt committed
411
        top = NULL;
412
        for (y = 0; y < avctx->height; y++) {
413
            ptr = p->data[0] + y * p->linesize[0];
414 415
            crow = png_choose_filter(s, crow_buf, ptr, top,
                                     row_size, bits_per_pixel >> 3);
Loren Merritt's avatar
Loren Merritt committed
416 417
            png_write_row(s, crow, row_size + 1);
            top = ptr;
418 419 420
        }
    }
    /* compress last bytes */
421
    for (;;) {
422 423 424 425 426 427 428
        ret = deflate(&s->zstream, Z_FINISH);
        if (ret == Z_OK || ret == Z_STREAM_END) {
            len = IOBUF_SIZE - s->zstream.avail_out;
            if (len > 0 && s->bytestream_end - s->bytestream > len + 100) {
                png_write_chunk(&s->bytestream, MKTAG('I', 'D', 'A', 'T'), s->buf, len);
            }
            s->zstream.avail_out = IOBUF_SIZE;
429
            s->zstream.next_out  = s->buf;
430 431 432 433 434 435 436 437
            if (ret == Z_STREAM_END)
                break;
        } else {
            goto fail;
        }
    }
    png_write_chunk(&s->bytestream, MKTAG('I', 'E', 'N', 'D'), NULL, 0);

438 439 440 441 442
    pkt->size   = s->bytestream - s->bytestream_start;
    pkt->flags |= AV_PKT_FLAG_KEY;
    *got_packet = 1;
    ret         = 0;

443
the_end:
Loren Merritt's avatar
Loren Merritt committed
444 445 446
    av_free(crow_base);
    av_free(progressive_buf);
    av_free(top_buf);
447 448
    deflateEnd(&s->zstream);
    return ret;
449
fail:
450 451 452 453
    ret = -1;
    goto the_end;
}

454 455
static av_cold int png_enc_init(AVCodecContext *avctx)
{
456 457
    PNGEncContext *s = avctx->priv_data;

458
    switch (avctx->pix_fmt) {
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
    case AV_PIX_FMT_RGBA:
        avctx->bits_per_coded_sample = 32;
        break;
    case AV_PIX_FMT_RGB24:
        avctx->bits_per_coded_sample = 24;
        break;
    case AV_PIX_FMT_GRAY8:
        avctx->bits_per_coded_sample = 0x28;
        break;
    case AV_PIX_FMT_MONOBLACK:
        avctx->bits_per_coded_sample = 1;
        break;
    case AV_PIX_FMT_PAL8:
        avctx->bits_per_coded_sample = 8;
    }

475 476 477 478 479 480 481
    avctx->coded_frame = av_frame_alloc();
    if (!avctx->coded_frame)
        return AVERROR(ENOMEM);

    avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
    avctx->coded_frame->key_frame = 1;

482
    ff_dsputil_init(&s->dsp, avctx);
Loren Merritt's avatar
Loren Merritt committed
483

484 485 486 487
    s->filter_type = av_clip(avctx->prediction_method,
                             PNG_FILTER_VALUE_NONE,
                             PNG_FILTER_VALUE_MIXED);
    if (avctx->pix_fmt == AV_PIX_FMT_MONOBLACK)
Loren Merritt's avatar
Loren Merritt committed
488
        s->filter_type = PNG_FILTER_VALUE_NONE;
489

490 491 492 493 494 495 496
    if (s->dpi && s->dpm) {
      av_log(avctx, AV_LOG_ERROR, "Only one of 'dpi' or 'dpm' options should be set\n");
      return AVERROR(EINVAL);
    } else if (s->dpi) {
      s->dpm = s->dpi * 10000 / 254;
    }

497 498 499
    return 0;
}

500 501 502 503 504 505
static av_cold int png_enc_close(AVCodecContext *avctx)
{
    av_frame_free(&avctx->coded_frame);
    return 0;
}

506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
#define OFFSET(x) offsetof(PNGEncContext, x)
#define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
static const AVOption options[] = {
    {"dpi", "Set image resolution (in dots per inch)",  OFFSET(dpi), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 0x10000, VE},
    {"dpm", "Set image resolution (in dots per meter)", OFFSET(dpm), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 0x10000, VE},
    { NULL }
};

static const AVClass pngenc_class = {
    .class_name = "PNG encoder",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
};

521
AVCodec ff_png_encoder = {
522
    .name           = "png",
523
    .long_name      = NULL_IF_CONFIG_SMALL("PNG (Portable Network Graphics) image"),
524
    .type           = AVMEDIA_TYPE_VIDEO,
525
    .id             = AV_CODEC_ID_PNG,
526 527
    .priv_data_size = sizeof(PNGEncContext),
    .init           = png_enc_init,
528
    .close          = png_enc_close,
529
    .encode2        = encode_frame,
530
    .capabilities   = CODEC_CAP_FRAME_THREADS | CODEC_CAP_INTRA_ONLY,
531
    .pix_fmts       = (const enum AVPixelFormat[]) {
532 533 534 535 536
        AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA,
        AV_PIX_FMT_RGB48BE, AV_PIX_FMT_RGBA64BE,
        AV_PIX_FMT_PAL8,
        AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY8A,
        AV_PIX_FMT_GRAY16BE,
537
        AV_PIX_FMT_MONOBLACK, AV_PIX_FMT_NONE
538
    },
539
    .priv_class     = &pngenc_class,
540
};