proresenc_anatoliy.c 29.5 KB
Newer Older
A
Anatoliy Wasserman 已提交
1 2 3 4
/*
 * Apple ProRes encoder
 *
 * Copyright (c) 2011 Anatoliy Wasserman
5
 * Copyright (c) 2012 Konstantin Shishkov
A
Anatoliy Wasserman 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * 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
 */

/**
25 26
 * @file
 * Apple ProRes encoder (Anatoliy Wasserman version)
27
 * Known FOURCCs: 'ap4h' (444), 'apch' (HQ), 'apcn' (422), 'apcs' (LT), 'acpo' (Proxy)
A
Anatoliy Wasserman 已提交
28 29 30
 */

#include "avcodec.h"
31
#include "dct.h"
32
#include "internal.h"
33
#include "profiles.h"
34
#include "proresdata.h"
A
Anatoliy Wasserman 已提交
35
#include "put_bits.h"
36
#include "bytestream.h"
37
#include "fdctdsp.h"
A
Anatoliy Wasserman 已提交
38 39 40 41 42 43 44 45

#define DEFAULT_SLICE_MB_WIDTH 8

static const AVProfile profiles[] = {
    { FF_PROFILE_PRORES_PROXY,    "apco"},
    { FF_PROFILE_PRORES_LT,       "apcs"},
    { FF_PROFILE_PRORES_STANDARD, "apcn"},
    { FF_PROFILE_PRORES_HQ,       "apch"},
46
    { FF_PROFILE_PRORES_4444,     "ap4h"},
A
Anatoliy Wasserman 已提交
47 48 49
    { FF_PROFILE_UNKNOWN }
};

50 51 52
static const int qp_start_table[5] = {  8, 3, 2, 1, 1};
static const int qp_end_table[5]   = { 13, 9, 6, 6, 5};
static const int bitrate_table[5]  = { 1000, 2100, 3500, 5400, 7000};
A
Anatoliy Wasserman 已提交
53

54
static const uint8_t QMAT_LUMA[5][64] = {
A
Anatoliy Wasserman 已提交
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
    {
         4,  7,  9, 11, 13, 14, 15, 63,
         7,  7, 11, 12, 14, 15, 63, 63,
         9, 11, 13, 14, 15, 63, 63, 63,
        11, 11, 13, 14, 63, 63, 63, 63,
        11, 13, 14, 63, 63, 63, 63, 63,
        13, 14, 63, 63, 63, 63, 63, 63,
        13, 63, 63, 63, 63, 63, 63, 63,
        63, 63, 63, 63, 63, 63, 63, 63
    }, {
         4,  5,  6,  7,  9, 11, 13, 15,
         5,  5,  7,  8, 11, 13, 15, 17,
         6,  7,  9, 11, 13, 15, 15, 17,
         7,  7,  9, 11, 13, 15, 17, 19,
         7,  9, 11, 13, 14, 16, 19, 23,
         9, 11, 13, 14, 16, 19, 23, 29,
         9, 11, 13, 15, 17, 21, 28, 35,
        11, 13, 16, 17, 21, 28, 35, 41
    }, {
         4,  4,  5,  5,  6,  7,  7,  9,
         4,  4,  5,  6,  7,  7,  9,  9,
         5,  5,  6,  7,  7,  9,  9, 10,
         5,  5,  6,  7,  7,  9,  9, 10,
         5,  6,  7,  7,  8,  9, 10, 12,
         6,  7,  7,  8,  9, 10, 12, 15,
         6,  7,  7,  9, 10, 11, 14, 17,
         7,  7,  9, 10, 11, 14, 17, 21
    }, {
         4,  4,  4,  4,  4,  4,  4,  4,
         4,  4,  4,  4,  4,  4,  4,  4,
         4,  4,  4,  4,  4,  4,  4,  4,
         4,  4,  4,  4,  4,  4,  4,  5,
         4,  4,  4,  4,  4,  4,  5,  5,
         4,  4,  4,  4,  4,  5,  5,  6,
         4,  4,  4,  4,  5,  5,  6,  7,
         4,  4,  4,  4,  5,  6,  7,  7
91 92 93 94 95 96 97 98 99
    }, { /* 444 */
        4,  4,  4,  4,  4,  4,  4,  4,
        4,  4,  4,  4,  4,  4,  4,  4,
        4,  4,  4,  4,  4,  4,  4,  4,
        4,  4,  4,  4,  4,  4,  4,  5,
        4,  4,  4,  4,  4,  4,  5,  5,
        4,  4,  4,  4,  4,  5,  5,  6,
        4,  4,  4,  4,  5,  5,  6,  7,
        4,  4,  4,  4,  5,  6,  7,  7
A
Anatoliy Wasserman 已提交
100 101 102
    }
};

103
static const uint8_t QMAT_CHROMA[5][64] = {
A
Anatoliy Wasserman 已提交
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
    {
         4,  7,  9, 11, 13, 14, 63, 63,
         7,  7, 11, 12, 14, 63, 63, 63,
         9, 11, 13, 14, 63, 63, 63, 63,
        11, 11, 13, 14, 63, 63, 63, 63,
        11, 13, 14, 63, 63, 63, 63, 63,
        13, 14, 63, 63, 63, 63, 63, 63,
        13, 63, 63, 63, 63, 63, 63, 63,
        63, 63, 63, 63, 63, 63, 63, 63
    }, {
         4,  5,  6,  7,  9, 11, 13, 15,
         5,  5,  7,  8, 11, 13, 15, 17,
         6,  7,  9, 11, 13, 15, 15, 17,
         7,  7,  9, 11, 13, 15, 17, 19,
         7,  9, 11, 13, 14, 16, 19, 23,
         9, 11, 13, 14, 16, 19, 23, 29,
         9, 11, 13, 15, 17, 21, 28, 35,
        11, 13, 16, 17, 21, 28, 35, 41
    }, {
         4,  4,  5,  5,  6,  7,  7,  9,
         4,  4,  5,  6,  7,  7,  9,  9,
         5,  5,  6,  7,  7,  9,  9, 10,
         5,  5,  6,  7,  7,  9,  9, 10,
         5,  6,  7,  7,  8,  9, 10, 12,
         6,  7,  7,  8,  9, 10, 12, 15,
         6,  7,  7,  9, 10, 11, 14, 17,
         7,  7,  9, 10, 11, 14, 17, 21
    }, {
         4,  4,  4,  4,  4,  4,  4,  4,
         4,  4,  4,  4,  4,  4,  4,  4,
         4,  4,  4,  4,  4,  4,  4,  4,
         4,  4,  4,  4,  4,  4,  4,  5,
         4,  4,  4,  4,  4,  4,  5,  5,
         4,  4,  4,  4,  4,  5,  5,  6,
         4,  4,  4,  4,  5,  5,  6,  7,
         4,  4,  4,  4,  5,  6,  7,  7
140 141 142 143 144 145 146 147 148
    }, { /* 444 */
        4,  4,  4,  4,  4,  4,  4,  4,
        4,  4,  4,  4,  4,  4,  4,  4,
        4,  4,  4,  4,  4,  4,  4,  4,
        4,  4,  4,  4,  4,  4,  4,  5,
        4,  4,  4,  4,  4,  4,  5,  5,
        4,  4,  4,  4,  4,  5,  5,  6,
        4,  4,  4,  4,  5,  5,  6,  7,
        4,  4,  4,  4,  5,  6,  7,  7
A
Anatoliy Wasserman 已提交
149 150 151 152 153
    }
};


typedef struct {
154
    FDCTDSPContext fdsp;
A
Anatoliy Wasserman 已提交
155 156 157
    uint8_t* fill_y;
    uint8_t* fill_u;
    uint8_t* fill_v;
158
    uint8_t* fill_a;
A
Anatoliy Wasserman 已提交
159 160 161

    int qmat_luma[16][64];
    int qmat_chroma[16][64];
162 163

    int is_422;
164
    int need_alpha;
A
Anatoliy Wasserman 已提交
165 166 167 168
} ProresContext;

static void encode_codeword(PutBitContext *pb, int val, int codebook)
{
169
    unsigned int rice_order, exp_order, switch_bits, first_exp, exp, zeros;
A
Anatoliy Wasserman 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183

    /* number of bits to switch between rice and exp golomb */
    switch_bits = codebook & 3;
    rice_order  = codebook >> 5;
    exp_order   = (codebook >> 2) & 7;

    first_exp = ((switch_bits + 1) << rice_order);

    if (val >= first_exp) { /* exp golomb */
        val -= first_exp;
        val += (1 << exp_order);
        exp = av_log2(val);
        zeros = exp - exp_order + switch_bits + 1;
        put_bits(pb, zeros, 0);
184
        put_bits(pb, exp + 1, val);
A
Anatoliy Wasserman 已提交
185 186 187
    } else if (rice_order) {
        put_bits(pb, (val >> rice_order), 0);
        put_bits(pb, 1, 1);
188
        put_sbits(pb, rice_order, val);
A
Anatoliy Wasserman 已提交
189 190 191 192 193 194
    } else {
        put_bits(pb, val, 0);
        put_bits(pb, 1, 1);
    }
}

195 196 197 198 199
#define QSCALE(qmat,ind,val) ((val) / ((qmat)[ind]))
#define TO_GOLOMB(val) (((val) << 1) ^ ((val) >> 31))
#define DIFF_SIGN(val, sign) (((val) >> 31) ^ (sign))
#define IS_NEGATIVE(val) ((((val) >> 31) ^ -1) + 1)
#define TO_GOLOMB2(val,sign) ((val)==0 ? 0 : ((val) << 1) + (sign))
A
Anatoliy Wasserman 已提交
200 201 202 203 204 205 206 207 208 209 210

static av_always_inline int get_level(int val)
{
    int sign = (val >> 31);
    return (val ^ sign) - sign;
}

#define FIRST_DC_CB 0xB8

static const uint8_t dc_codebook[7] = { 0x04, 0x28, 0x28, 0x4D, 0x4D, 0x70, 0x70};

211
static void encode_dc_coeffs(PutBitContext *pb, int16_t *in,
A
Anatoliy Wasserman 已提交
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
        int blocks_per_slice, int *qmat)
{
    int prev_dc, code;
    int i, sign, idx;
    int new_dc, delta, diff_sign, new_code;

    prev_dc = QSCALE(qmat, 0, in[0] - 16384);
    code = TO_GOLOMB(prev_dc);
    encode_codeword(pb, code, FIRST_DC_CB);

    code = 5; sign = 0; idx = 64;
    for (i = 1; i < blocks_per_slice; i++, idx += 64) {
        new_dc    = QSCALE(qmat, 0, in[idx] - 16384);
        delta     = new_dc - prev_dc;
        diff_sign = DIFF_SIGN(delta, sign);
        new_code  = TO_GOLOMB2(get_level(delta), diff_sign);

        encode_codeword(pb, new_code, dc_codebook[FFMIN(code, 6)]);

        code      = new_code;
        sign      = delta >> 31;
        prev_dc   = new_dc;
    }
}

static const uint8_t run_to_cb[16] = { 0x06, 0x06, 0x05, 0x05, 0x04, 0x29,
        0x29, 0x29, 0x29, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x4C };
static const uint8_t lev_to_cb[10] = { 0x04, 0x0A, 0x05, 0x06, 0x04, 0x28,
        0x28, 0x28, 0x28, 0x4C };

242
static void encode_ac_coeffs(PutBitContext *pb,
243
        int16_t *in, int blocks_per_slice, int *qmat)
A
Anatoliy Wasserman 已提交
244 245 246 247
{
    int prev_run = 4;
    int prev_level = 2;

M
Michael Niedermayer 已提交
248 249
    int run = 0, level, code, i, j;
    for (i = 1; i < 64; i++) {
250
        int indp = ff_prores_progressive_scan[i];
M
Michael Niedermayer 已提交
251
        for (j = 0; j < blocks_per_slice; j++) {
A
Anatoliy Wasserman 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
            int val = QSCALE(qmat, indp, in[(j << 6) + indp]);
            if (val) {
                encode_codeword(pb, run, run_to_cb[FFMIN(prev_run, 15)]);

                prev_run   = run;
                run        = 0;
                level      = get_level(val);
                code       = level - 1;

                encode_codeword(pb, code, lev_to_cb[FFMIN(prev_level, 9)]);

                prev_level = level;

                put_bits(pb, 1, IS_NEGATIVE(val));
            } else {
                ++run;
            }
        }
    }
}

273
static void get(uint8_t *pixels, int stride, int16_t* block)
A
Anatoliy Wasserman 已提交
274
{
275
    int i;
A
Anatoliy Wasserman 已提交
276 277

    for (i = 0; i < 8; i++) {
278 279 280
        AV_WN64(block, AV_RN64(pixels));
        AV_WN64(block+4, AV_RN64(pixels+8));
        pixels += stride;
A
Anatoliy Wasserman 已提交
281 282 283 284
        block += 8;
    }
}

285
static void fdct_get(FDCTDSPContext *fdsp, uint8_t *pixels, int stride, int16_t* block)
A
Anatoliy Wasserman 已提交
286 287
{
    get(pixels, stride, block);
288
    fdsp->fdct(block);
A
Anatoliy Wasserman 已提交
289 290
}

291
static void calc_plane_dct(FDCTDSPContext *fdsp, uint8_t *src, int16_t * blocks, int src_stride, int mb_count, int chroma, int is_422)
A
Anatoliy Wasserman 已提交
292
{
293
    int16_t *block;
294
    int i;
A
Anatoliy Wasserman 已提交
295 296

    block = blocks;
297 298 299 300

    if (!chroma) { /* Luma plane */
        for (i = 0; i < mb_count; i++) {
            fdct_get(fdsp, src,                       src_stride, block + (0 << 6));
301
            fdct_get(fdsp, src + 16,                  src_stride, block + (1 << 6));
302
            fdct_get(fdsp, src +      8 * src_stride, src_stride, block + (2 << 6));
303
            fdct_get(fdsp, src + 16 + 8 * src_stride, src_stride, block + (3 << 6));
304 305 306

            block += 256;
            src   += 32;
A
Anatoliy Wasserman 已提交
307
        }
308 309 310 311 312 313 314 315 316 317 318 319 320
    } else if (chroma && is_422){ /* chroma plane 422 */
        for (i = 0; i < mb_count; i++) {
            fdct_get(fdsp, src,                  src_stride, block + (0 << 6));
            fdct_get(fdsp, src + 8 * src_stride, src_stride, block + (1 << 6));
            block += (256 >> 1);
            src   += (32  >> 1);
        }
    } else { /* chroma plane 444 */
        for (i = 0; i < mb_count; i++) {
            fdct_get(fdsp, src,                       src_stride, block + (0 << 6));
            fdct_get(fdsp, src +      8 * src_stride, src_stride, block + (1 << 6));
            fdct_get(fdsp, src + 16,                  src_stride, block + (2 << 6));
            fdct_get(fdsp, src + 16 + 8 * src_stride, src_stride, block + (3 << 6));
A
Anatoliy Wasserman 已提交
321

322 323 324
            block += 256;
            src   += 32;
        }
A
Anatoliy Wasserman 已提交
325
    }
326 327
}

328
static int encode_slice_plane(int16_t *blocks, int mb_count, uint8_t *buf, unsigned buf_size, int *qmat, int sub_sample_chroma)
329 330 331
{
    int blocks_per_slice;
    PutBitContext pb;
A
Anatoliy Wasserman 已提交
332

333
    blocks_per_slice = mb_count << (2 - sub_sample_chroma);
334
    init_put_bits(&pb, buf, buf_size);
A
Anatoliy Wasserman 已提交
335 336

    encode_dc_coeffs(&pb, blocks, blocks_per_slice, qmat);
337
    encode_ac_coeffs(&pb, blocks, blocks_per_slice, qmat);
A
Anatoliy Wasserman 已提交
338 339 340 341 342 343

    flush_put_bits(&pb);
    return put_bits_ptr(&pb) - pb.buf;
}

static av_always_inline unsigned encode_slice_data(AVCodecContext *avctx,
344 345 346 347
                                                   int16_t * blocks_y, int16_t * blocks_u, int16_t * blocks_v,
                                                   unsigned mb_count, uint8_t *buf, unsigned data_size,
                                                   unsigned* y_data_size, unsigned* u_data_size, unsigned* v_data_size,
                                                   int qp)
A
Anatoliy Wasserman 已提交
348
{
R
Reimar Döffinger 已提交
349
    ProresContext* ctx = avctx->priv_data;
A
Anatoliy Wasserman 已提交
350

351 352
    *y_data_size = encode_slice_plane(blocks_y, mb_count,
                                      buf, data_size, ctx->qmat_luma[qp - 1], 0);
A
Anatoliy Wasserman 已提交
353

354
    if (!(avctx->flags & AV_CODEC_FLAG_GRAY)) {
355
        *u_data_size = encode_slice_plane(blocks_u, mb_count, buf + *y_data_size, data_size - *y_data_size,
356
                                          ctx->qmat_chroma[qp - 1], ctx->is_422);
357 358 359

        *v_data_size = encode_slice_plane(blocks_v, mb_count, buf + *y_data_size + *u_data_size,
                                          data_size - *y_data_size - *u_data_size,
360
                                          ctx->qmat_chroma[qp - 1], ctx->is_422);
A
Anatoliy Wasserman 已提交
361 362 363 364 365
    }

    return *y_data_size + *u_data_size + *v_data_size;
}

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
static void put_alpha_diff(PutBitContext *pb, int cur, int prev)
{
    const int abits = 16;
    const int dbits = 7;
    const int dsize = 1 << dbits - 1;
    int diff = cur - prev;

    diff = av_mod_uintp2(diff, abits);
    if (diff >= (1 << abits) - dsize)
        diff -= 1 << abits;
    if (diff < -dsize || diff > dsize || !diff) {
        put_bits(pb, 1, 1);
        put_bits(pb, abits, diff);
    } else {
        put_bits(pb, 1, 0);
        put_bits(pb, dbits - 1, FFABS(diff) - 1);
        put_bits(pb, 1, diff < 0);
    }
}

static inline void put_alpha_run(PutBitContext *pb, int run)
{
    if (run) {
        put_bits(pb, 1, 0);
        if (run < 0x10)
            put_bits(pb, 4, run);
        else
            put_bits(pb, 15, run);
    } else {
        put_bits(pb, 1, 1);
    }
}

static av_always_inline int encode_alpha_slice_data(AVCodecContext *avctx, int8_t * src_a,
                                                   unsigned mb_count, uint8_t *buf, unsigned data_size, unsigned* a_data_size)
{
    const int abits = 16;
    const int mask  = (1 << abits) - 1;
    const int num_coeffs = mb_count * 256;
    int prev = mask, cur;
    int idx = 0;
    int run = 0;
    int16_t * blocks = (int16_t *)src_a;
    PutBitContext pb;
    init_put_bits(&pb, buf, data_size);

    cur = blocks[idx++];
    put_alpha_diff(&pb, cur, prev);
    prev = cur;
    do {
        cur = blocks[idx++];
        if (cur != prev) {
            put_alpha_run (&pb, run);
            put_alpha_diff(&pb, cur, prev);
            prev = cur;
            run  = 0;
        } else {
            run++;
        }
    } while (idx < num_coeffs);
    if (run)
        put_alpha_run(&pb, run);
    flush_put_bits(&pb);
    *a_data_size = put_bits_count(&pb) >> 3;

    if (put_bits_left(&pb) < 0) {
        av_log(avctx, AV_LOG_ERROR,
               "Underestimated required buffer size.\n");
        return AVERROR_BUG;
    } else {
        return 0;
    }
}

A
Anatoliy Wasserman 已提交
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
static void subimage_with_fill(uint16_t *src, unsigned x, unsigned y,
        unsigned stride, unsigned width, unsigned height, uint16_t *dst,
        unsigned dst_width, unsigned dst_height)
{

    int box_width = FFMIN(width - x, dst_width);
    int box_height = FFMIN(height - y, dst_height);
    int i, j, src_stride = stride >> 1;
    uint16_t last_pix, *last_line;

    src += y * src_stride + x;
    for (i = 0; i < box_height; ++i) {
        for (j = 0; j < box_width; ++j) {
            dst[j] = src[j];
        }
        last_pix = dst[j - 1];
        for (; j < dst_width; j++)
            dst[j] = last_pix;
        src += src_stride;
        dst += dst_width;
    }
    last_line = dst - dst_width;
    for (; i < dst_height; i++) {
        for (j = 0; j < dst_width; ++j) {
            dst[j] = last_line[j];
        }
        dst += dst_width;
    }
}

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
/* reorganize alpha data and convert 10b -> 16b */
static void subimage_alpha_with_fill(uint16_t *src, unsigned x, unsigned y,
                               unsigned stride, unsigned width, unsigned height, uint16_t *dst,
                               unsigned dst_width, unsigned dst_height)
{
    int box_width = FFMIN(width - x, dst_width);
    int box_height = FFMIN(height - y, dst_height);
    int i, j, src_stride = stride >> 1;
    uint16_t last_pix, *last_line;

    src += y * src_stride + x;
    for (i = 0; i < box_height; ++i) {
        for (j = 0; j < box_width; ++j) {
            dst[j] = src[j] << 6; /* 10b to 16b */
        }
        last_pix = dst[j - 1] << 6; /* 10b to 16b */
        for (; j < dst_width; j++)
            dst[j] = last_pix;
        src += src_stride;
        dst += dst_width;
    }
    last_line = dst - dst_width;
    for (; i < dst_height; i++) {
        for (j = 0; j < dst_width; ++j) {
            dst[j] = last_line[j];
        }
        dst += dst_width;
    }
}

500
static int encode_slice(AVCodecContext *avctx, const AVFrame *pic, int mb_x,
A
Anatoliy Wasserman 已提交
501 502 503
        int mb_y, unsigned mb_count, uint8_t *buf, unsigned data_size,
        int unsafe, int *qp)
{
504
    int luma_stride, chroma_stride, alpha_stride = 0;
R
Reimar Döffinger 已提交
505
    ProresContext* ctx = avctx->priv_data;
506 507 508 509
    int hdr_size = 6 + (ctx->need_alpha * 2); /* v data size is write when there is alpha */
    int ret = 0, slice_size;
    uint8_t *dest_y, *dest_u, *dest_v;
    unsigned y_data_size = 0, u_data_size = 0, v_data_size = 0, a_data_size = 0;
510
    FDCTDSPContext *fdsp = &ctx->fdsp;
A
Anatoliy Wasserman 已提交
511 512 513 514
    int tgt_bits   = (mb_count * bitrate_table[avctx->profile]) >> 2;
    int low_bytes  = (tgt_bits - (tgt_bits >> 3)) >> 3; // 12% bitrate fluctuation
    int high_bytes = (tgt_bits + (tgt_bits >> 3)) >> 3;

515 516 517 518
    LOCAL_ALIGNED(16, int16_t, blocks_y, [DEFAULT_SLICE_MB_WIDTH << 8]);
    LOCAL_ALIGNED(16, int16_t, blocks_u, [DEFAULT_SLICE_MB_WIDTH << 8]);
    LOCAL_ALIGNED(16, int16_t, blocks_v, [DEFAULT_SLICE_MB_WIDTH << 8]);

A
Anatoliy Wasserman 已提交
519 520 521
    luma_stride   = pic->linesize[0];
    chroma_stride = pic->linesize[1];

522 523 524
    if (ctx->need_alpha)
        alpha_stride = pic->linesize[3];

A
Anatoliy Wasserman 已提交
525
    dest_y = pic->data[0] + (mb_y << 4) * luma_stride   + (mb_x << 5);
526 527
    dest_u = pic->data[1] + (mb_y << 4) * chroma_stride + (mb_x << (5 - ctx->is_422));
    dest_v = pic->data[2] + (mb_y << 4) * chroma_stride + (mb_x << (5 - ctx->is_422));
A
Anatoliy Wasserman 已提交
528 529 530 531 532

    if (unsafe) {
        subimage_with_fill((uint16_t *) pic->data[0], mb_x << 4, mb_y << 4,
                luma_stride, avctx->width, avctx->height,
                (uint16_t *) ctx->fill_y, mb_count << 4, 16);
533 534 535 536 537 538
        subimage_with_fill((uint16_t *) pic->data[1], mb_x << (4 - ctx->is_422), mb_y << 4,
                           chroma_stride, avctx->width >> ctx->is_422, avctx->height,
                           (uint16_t *) ctx->fill_u, mb_count << (4 - ctx->is_422), 16);
        subimage_with_fill((uint16_t *) pic->data[2], mb_x << (4 - ctx->is_422), mb_y << 4,
                           chroma_stride, avctx->width >> ctx->is_422, avctx->height,
                           (uint16_t *) ctx->fill_v, mb_count << (4 - ctx->is_422), 16);
A
Anatoliy Wasserman 已提交
539

540 541 542
        calc_plane_dct(fdsp, ctx->fill_y, blocks_y, mb_count <<  5,                mb_count, 0, 0);
        calc_plane_dct(fdsp, ctx->fill_u, blocks_u, mb_count << (5 - ctx->is_422), mb_count, 1, ctx->is_422);
        calc_plane_dct(fdsp, ctx->fill_v, blocks_v, mb_count << (5 - ctx->is_422), mb_count, 1, ctx->is_422);
543

544
        slice_size = encode_slice_data(avctx, blocks_y, blocks_u, blocks_v,
545 546 547
                          mb_count, buf + hdr_size, data_size - hdr_size,
                          &y_data_size, &u_data_size, &v_data_size,
                          *qp);
A
Anatoliy Wasserman 已提交
548
    } else {
549 550 551
        calc_plane_dct(fdsp, dest_y, blocks_y, luma_stride, mb_count, 0, 0);
        calc_plane_dct(fdsp, dest_u, blocks_u, chroma_stride, mb_count, 1, ctx->is_422);
        calc_plane_dct(fdsp, dest_v, blocks_v, chroma_stride, mb_count, 1, ctx->is_422);
552 553 554 555 556

        slice_size = encode_slice_data(avctx, blocks_y, blocks_u, blocks_v,
                          mb_count, buf + hdr_size, data_size - hdr_size,
                          &y_data_size, &u_data_size, &v_data_size,
                          *qp);
A
Anatoliy Wasserman 已提交
557 558 559 560

        if (slice_size > high_bytes && *qp < qp_end_table[avctx->profile]) {
            do {
                *qp += 1;
561 562 563 564
                slice_size = encode_slice_data(avctx, blocks_y, blocks_u, blocks_v,
                                               mb_count, buf + hdr_size, data_size - hdr_size,
                                               &y_data_size, &u_data_size, &v_data_size,
                                               *qp);
A
Anatoliy Wasserman 已提交
565 566 567 568 569
            } while (slice_size > high_bytes && *qp < qp_end_table[avctx->profile]);
        } else if (slice_size < low_bytes && *qp
                > qp_start_table[avctx->profile]) {
            do {
                *qp -= 1;
570 571 572 573
                slice_size = encode_slice_data(avctx, blocks_y, blocks_u, blocks_v,
                                               mb_count, buf + hdr_size, data_size - hdr_size,
                                               &y_data_size, &u_data_size, &v_data_size,
                                               *qp);
A
Anatoliy Wasserman 已提交
574 575 576 577 578 579 580 581 582
            } while (slice_size < low_bytes && *qp > qp_start_table[avctx->profile]);
        }
    }

    buf[0] = hdr_size << 3;
    buf[1] = *qp;
    AV_WB16(buf + 2, y_data_size);
    AV_WB16(buf + 4, u_data_size);

583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
    if (ctx->need_alpha) {
        AV_WB16(buf + 6, v_data_size); /* write v data size only if there is alpha */

        subimage_alpha_with_fill((uint16_t *) pic->data[3], mb_x << 4, mb_y << 4,
                           alpha_stride, avctx->width, avctx->height,
                           (uint16_t *) ctx->fill_a, mb_count << 4, 16);
        ret = encode_alpha_slice_data(avctx, ctx->fill_a, mb_count,
                                      buf + hdr_size + slice_size,
                                      data_size - hdr_size - slice_size, &a_data_size);
    }

    if (ret != 0) {
        return ret;
    }
    return hdr_size + y_data_size + u_data_size + v_data_size + a_data_size;
A
Anatoliy Wasserman 已提交
598 599
}

600
static int prores_encode_picture(AVCodecContext *avctx, const AVFrame *pic,
A
Anatoliy Wasserman 已提交
601 602 603 604
        uint8_t *buf, const int buf_size)
{
    int mb_width = (avctx->width + 15) >> 4;
    int mb_height = (avctx->height + 15) >> 4;
M
Michael Niedermayer 已提交
605
    int hdr_size, sl_size, i;
606
    int mb_y, sl_data_size, qp;
A
Anatoliy Wasserman 已提交
607
    int unsafe_bot, unsafe_right;
608
    uint8_t *sl_data, *sl_data_sizes;
A
Anatoliy Wasserman 已提交
609 610
    int slice_per_line = 0, rem = mb_width;

M
Michael Niedermayer 已提交
611
    for (i = av_log2(DEFAULT_SLICE_MB_WIDTH); i >= 0; --i) {
A
Anatoliy Wasserman 已提交
612 613 614 615 616
        slice_per_line += rem >> i;
        rem &= (1 << i) - 1;
    }

    qp = qp_start_table[avctx->profile];
617 618 619
    hdr_size = 8; sl_data_size = buf_size - hdr_size;
    sl_data_sizes = buf + hdr_size;
    sl_data = sl_data_sizes + (slice_per_line * mb_height * 2);
A
Anatoliy Wasserman 已提交
620 621 622 623 624 625 626 627 628 629 630 631
    for (mb_y = 0; mb_y < mb_height; mb_y++) {
        int mb_x = 0;
        int slice_mb_count = DEFAULT_SLICE_MB_WIDTH;
        while (mb_x < mb_width) {
            while (mb_width - mb_x < slice_mb_count)
                slice_mb_count >>= 1;

            unsafe_bot = (avctx->height & 0xf) && (mb_y == mb_height - 1);
            unsafe_right = (avctx->width & 0xf) && (mb_x + slice_mb_count == mb_width);

            sl_size = encode_slice(avctx, pic, mb_x, mb_y, slice_mb_count,
                    sl_data, sl_data_size, unsafe_bot || unsafe_right, &qp);
632 633 634
            if (sl_size < 0){
                return sl_size;
            }
A
Anatoliy Wasserman 已提交
635

636
            bytestream_put_be16(&sl_data_sizes, sl_size);
A
Anatoliy Wasserman 已提交
637 638 639 640 641 642 643 644 645 646 647 648 649 650
            sl_data           += sl_size;
            sl_data_size      -= sl_size;
            mb_x              += slice_mb_count;
        }
    }

    buf[0] = hdr_size << 3;
    AV_WB32(buf + 1, sl_data - buf);
    AV_WB16(buf + 5, slice_per_line * mb_height);
    buf[7] = av_log2(DEFAULT_SLICE_MB_WIDTH) << 4;

    return sl_data - buf;
}

651 652
static int prores_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
                               const AVFrame *pict, int *got_packet)
A
Anatoliy Wasserman 已提交
653 654
{
    int header_size = 148;
655 656
    uint8_t *buf;
    int pic_size, ret;
657
    int frame_size = FFALIGN(avctx->width, 16) * FFALIGN(avctx->height, 16)*16 + 500 + AV_INPUT_BUFFER_MIN_SIZE; //FIXME choose tighter limit
658 659


660
    if ((ret = ff_alloc_packet2(avctx, pkt, frame_size + AV_INPUT_BUFFER_MIN_SIZE, 0)) < 0)
661 662 663 664 665
        return ret;

    buf = pkt->data;
    pic_size = prores_encode_picture(avctx, pict, buf + header_size + 8,
            pkt->size - header_size - 8);
666 667 668
    if (pic_size < 0) {
        return pic_size;
    }
A
Anatoliy Wasserman 已提交
669

670 671 672 673
    bytestream_put_be32(&buf, pic_size + 8 + header_size);
    bytestream_put_buffer(&buf, "icpf", 4);

    bytestream_put_be16(&buf, header_size);
674
    bytestream_put_be16(&buf, 0); /* version */
675
    bytestream_put_buffer(&buf, "fmpg", 4);
676 677
    bytestream_put_be16(&buf, avctx->width);
    bytestream_put_be16(&buf, avctx->height);
678
    if (avctx->profile == FF_PROFILE_PRORES_4444) {
679 680
        *buf++ = 0xC2; // 444, not interlaced
    } else {
681
        *buf++ = 0x82; // 422, not interlaced
682
    }
683
    *buf++ = 0; /* reserved */
684 685 686
    *buf++ = pict->color_primaries;
    *buf++ = pict->color_trc;
    *buf++ = pict->colorspace;
687 688 689 690 691 692 693
    if (avctx->profile >= FF_PROFILE_PRORES_4444) {
        if (avctx->pix_fmt == AV_PIX_FMT_YUV444P10) {
            *buf++ = 0xA0;/* src b64a and no alpha */
        } else {
            *buf++ = 0xA2;/* src b64a and 16b alpha */
        }
    } else {
694
        *buf++ = 32;/* src v210 and no alpha */
695
    }
696 697
    *buf++ = 0; /* reserved */
    *buf++ = 3; /* luma and chroma matrix present */
698 699 700

    bytestream_put_buffer(&buf, QMAT_LUMA[avctx->profile],   64);
    bytestream_put_buffer(&buf, QMAT_CHROMA[avctx->profile], 64);
A
Anatoliy Wasserman 已提交
701

702 703 704 705 706
    pkt->flags |= AV_PKT_FLAG_KEY;
    pkt->size = pic_size + 8 + header_size;
    *got_packet = 1;

    return 0;
A
Anatoliy Wasserman 已提交
707 708 709 710 711 712 713 714 715 716 717 718
}

static void scale_mat(const uint8_t* src, int* dst, int scale)
{
    int i;
    for (i = 0; i < 64; i++)
        dst[i] = src[i] * scale;
}

static av_cold int prores_encode_init(AVCodecContext *avctx)
{
    int i;
R
Reimar Döffinger 已提交
719
    ProresContext* ctx = avctx->priv_data;
A
Anatoliy Wasserman 已提交
720

721
    avctx->bits_per_raw_sample = 10;
722
    ctx->need_alpha = 0;
723

A
Anatoliy Wasserman 已提交
724 725 726
    if (avctx->width & 0x1) {
        av_log(avctx, AV_LOG_ERROR,
                "frame width needs to be multiple of 2\n");
727
        return AVERROR(EINVAL);
A
Anatoliy Wasserman 已提交
728 729
    }

730 731 732 733 734 735
    if (avctx->width > 65534 || avctx->height > 65535) {
        av_log(avctx, AV_LOG_ERROR,
                "The maximum dimensions are 65534x65535\n");
        return AVERROR(EINVAL);
    }

A
Anatoliy Wasserman 已提交
736
    if (avctx->profile == FF_PROFILE_UNKNOWN) {
737 738 739
        if (avctx->pix_fmt == AV_PIX_FMT_YUV422P10) {
            avctx->profile = FF_PROFILE_PRORES_STANDARD;
            av_log(avctx, AV_LOG_INFO,
A
Anatoliy Wasserman 已提交
740
                "encoding with ProRes standard (apcn) profile\n");
741
        } else if (avctx->pix_fmt == AV_PIX_FMT_YUV444P10) {
742
            avctx->profile = FF_PROFILE_PRORES_4444;
743
            av_log(avctx, AV_LOG_INFO,
744
                   "encoding with ProRes 4444 (ap4h) profile\n");
745 746 747 748 749 750 751
        } else if (avctx->pix_fmt == AV_PIX_FMT_YUVA444P10) {
            avctx->profile = FF_PROFILE_PRORES_4444;
            av_log(avctx, AV_LOG_INFO,
                   "encoding with ProRes 4444+ (ap4h) profile\n");
        } else {
            av_log(avctx, AV_LOG_ERROR, "Unknown pixel format\n");
            return AVERROR(EINVAL);
752
        }
A
Anatoliy Wasserman 已提交
753
    } else if (avctx->profile < FF_PROFILE_PRORES_PROXY
754
            || avctx->profile > FF_PROFILE_PRORES_4444) {
A
Anatoliy Wasserman 已提交
755 756 757
        av_log(
                avctx,
                AV_LOG_ERROR,
758
                "unknown profile %d, use [0 - apco, 1 - apcs, 2 - apcn (default), 3 - apch, 4 - ap4h]\n",
A
Anatoliy Wasserman 已提交
759
                avctx->profile);
760
        return AVERROR(EINVAL);
761 762 763 764
    } else if ((avctx->pix_fmt == AV_PIX_FMT_YUV422P10) && (avctx->profile > FF_PROFILE_PRORES_HQ)){
        av_log(avctx, AV_LOG_ERROR,
               "encoding with ProRes 444 (ap4h) profile, need YUV444P10 input\n");
        return AVERROR(EINVAL);
765 766
    }  else if ((avctx->pix_fmt == AV_PIX_FMT_YUV444P10 || avctx->pix_fmt == AV_PIX_FMT_YUVA444P10)
                && (avctx->profile < FF_PROFILE_PRORES_4444)){
767 768 769 770 771
        av_log(avctx, AV_LOG_ERROR,
               "encoding with ProRes Proxy/LT/422/422 HQ (apco, apcs, apcn, ap4h) profile, need YUV422P10 input\n");
        return AVERROR(EINVAL);
    }

772
    if (avctx->profile < FF_PROFILE_PRORES_4444) { /* 422 versions */
773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
        ctx->is_422 = 1;
        if ((avctx->height & 0xf) || (avctx->width & 0xf)) {
            ctx->fill_y = av_malloc(4 * (DEFAULT_SLICE_MB_WIDTH << 8));
            if (!ctx->fill_y)
                return AVERROR(ENOMEM);
            ctx->fill_u = ctx->fill_y + (DEFAULT_SLICE_MB_WIDTH << 9);
            ctx->fill_v = ctx->fill_u + (DEFAULT_SLICE_MB_WIDTH << 8);
        }
    } else { /* 444 */
        ctx->is_422 = 0;
        if ((avctx->height & 0xf) || (avctx->width & 0xf)) {
            ctx->fill_y = av_malloc(3 * (DEFAULT_SLICE_MB_WIDTH << 9));
            if (!ctx->fill_y)
                return AVERROR(ENOMEM);
            ctx->fill_u = ctx->fill_y + (DEFAULT_SLICE_MB_WIDTH << 9);
            ctx->fill_v = ctx->fill_u + (DEFAULT_SLICE_MB_WIDTH << 9);
        }
790 791 792 793 794 795
        if (avctx->pix_fmt == AV_PIX_FMT_YUVA444P10) {
            ctx->need_alpha = 1;
            ctx->fill_a = av_malloc(DEFAULT_SLICE_MB_WIDTH << 9); /* 8 blocks x 16px x 16px x sizeof (uint16) */
            if (!ctx->fill_a)
                return AVERROR(ENOMEM);
        }
A
Anatoliy Wasserman 已提交
796 797
    }

798
    ff_fdctdsp_init(&ctx->fdsp, avctx);
799

A
Anatoliy Wasserman 已提交
800 801 802 803 804 805 806 807 808 809 810 811
    avctx->codec_tag = AV_RL32((const uint8_t*)profiles[avctx->profile].name);

    for (i = 1; i <= 16; i++) {
        scale_mat(QMAT_LUMA[avctx->profile]  , ctx->qmat_luma[i - 1]  , i);
        scale_mat(QMAT_CHROMA[avctx->profile], ctx->qmat_chroma[i - 1], i);
    }

    return 0;
}

static av_cold int prores_encode_close(AVCodecContext *avctx)
{
R
Reimar Döffinger 已提交
812
    ProresContext* ctx = avctx->priv_data;
813
    av_freep(&ctx->fill_y);
814
    av_freep(&ctx->fill_a);
A
Anatoliy Wasserman 已提交
815 816 817 818

    return 0;
}

819 820
AVCodec ff_prores_aw_encoder = {
    .name           = "prores_aw",
821
    .long_name      = NULL_IF_CONFIG_SMALL("Apple ProRes"),
822
    .type           = AVMEDIA_TYPE_VIDEO,
823
    .id             = AV_CODEC_ID_PRORES,
824 825 826
    .priv_data_size = sizeof(ProresContext),
    .init           = prores_encode_init,
    .close          = prores_encode_close,
827
    .encode2        = prores_encode_frame,
828
    .pix_fmts       = (const enum AVPixelFormat[]){AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUVA444P10, AV_PIX_FMT_NONE},
829
    .capabilities   = AV_CODEC_CAP_FRAME_THREADS | AV_CODEC_CAP_INTRA_ONLY,
830
    .profiles       = NULL_IF_CONFIG_SMALL(ff_prores_profiles),
831 832
};

A
Anatoliy Wasserman 已提交
833 834
AVCodec ff_prores_encoder = {
    .name           = "prores",
835
    .long_name      = NULL_IF_CONFIG_SMALL("Apple ProRes"),
A
Anatoliy Wasserman 已提交
836
    .type           = AVMEDIA_TYPE_VIDEO,
837
    .id             = AV_CODEC_ID_PRORES,
A
Anatoliy Wasserman 已提交
838 839 840
    .priv_data_size = sizeof(ProresContext),
    .init           = prores_encode_init,
    .close          = prores_encode_close,
841
    .encode2        = prores_encode_frame,
842
    .pix_fmts       = (const enum AVPixelFormat[]){AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUVA444P10, AV_PIX_FMT_NONE},
843
    .capabilities   = AV_CODEC_CAP_FRAME_THREADS | AV_CODEC_CAP_INTRA_ONLY,
844
    .profiles       = NULL_IF_CONFIG_SMALL(ff_prores_profiles),
A
Anatoliy Wasserman 已提交
845
};