]> git.sesse.net Git - ffmpeg/blob - libavcodec/ffv1enc.c
h264: eliminate decode_postinit()
[ffmpeg] / libavcodec / ffv1enc.c
1 /*
2  * FFV1 encoder for libavcodec
3  *
4  * Copyright (c) 2003-2012 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * FF Video Codec 1 (a lossless codec) encoder
26  */
27
28 #include "libavutil/attributes.h"
29 #include "libavutil/avassert.h"
30 #include "libavutil/pixdesc.h"
31 #include "libavutil/crc.h"
32 #include "libavutil/opt.h"
33 #include "libavutil/imgutils.h"
34
35 #include "avcodec.h"
36 #include "internal.h"
37 #include "put_bits.h"
38 #include "rangecoder.h"
39 #include "golomb.h"
40 #include "mathops.h"
41 #include "ffv1.h"
42
43 static void find_best_state(uint8_t best_state[256][256],
44                             const uint8_t one_state[256])
45 {
46     int i, j, k, m;
47     double l2tab[256];
48
49     for (i = 1; i < 256; i++)
50         l2tab[i] = log2(i / 256.0);
51
52     for (i = 0; i < 256; i++) {
53         double best_len[256];
54         double p = i / 256.0;
55
56         for (j = 0; j < 256; j++)
57             best_len[j] = 1 << 30;
58
59         for (j = FFMAX(i - 10, 1); j < FFMIN(i + 11, 256); j++) {
60             double occ[256] = { 0 };
61             double len      = 0;
62             occ[j] = 1.0;
63             for (k = 0; k < 256; k++) {
64                 double newocc[256] = { 0 };
65                 for (m = 1; m < 256; m++)
66                     if (occ[m]) {
67                         len -= occ[m] *     (p  * l2tab[m] +
68                                         (1 - p) * l2tab[256 - m]);
69                     }
70                 if (len < best_len[k]) {
71                     best_len[k]      = len;
72                     best_state[i][k] = j;
73                 }
74                 for (m = 1; m < 256; m++)
75                     if (occ[m]) {
76                         newocc[one_state[m]]             += occ[m] * p;
77                         newocc[256 - one_state[256 - m]] += occ[m] * (1 - p);
78                     }
79                 memcpy(occ, newocc, sizeof(occ));
80             }
81         }
82     }
83 }
84
85 static av_always_inline av_flatten void put_symbol_inline(RangeCoder *c,
86                                                           uint8_t *state, int v,
87                                                           int is_signed,
88                                                           uint64_t rc_stat[256][2],
89                                                           uint64_t rc_stat2[32][2])
90 {
91     int i;
92
93 #define put_rac(C, S, B)                        \
94     do {                                        \
95         if (rc_stat) {                          \
96             rc_stat[*(S)][B]++;                 \
97             rc_stat2[(S) - state][B]++;         \
98         }                                       \
99         put_rac(C, S, B);                       \
100     } while (0)
101
102     if (v) {
103         const int a = FFABS(v);
104         const int e = av_log2(a);
105         put_rac(c, state + 0, 0);
106         if (e <= 9) {
107             for (i = 0; i < e; i++)
108                 put_rac(c, state + 1 + i, 1);  // 1..10
109             put_rac(c, state + 1 + i, 0);
110
111             for (i = e - 1; i >= 0; i--)
112                 put_rac(c, state + 22 + i, (a >> i) & 1);  // 22..31
113
114             if (is_signed)
115                 put_rac(c, state + 11 + e, v < 0);  // 11..21
116         } else {
117             for (i = 0; i < e; i++)
118                 put_rac(c, state + 1 + FFMIN(i, 9), 1);  // 1..10
119             put_rac(c, state + 1 + 9, 0);
120
121             for (i = e - 1; i >= 0; i--)
122                 put_rac(c, state + 22 + FFMIN(i, 9), (a >> i) & 1);  // 22..31
123
124             if (is_signed)
125                 put_rac(c, state + 11 + 10, v < 0);  // 11..21
126         }
127     } else {
128         put_rac(c, state + 0, 1);
129     }
130 #undef put_rac
131 }
132
133 static av_noinline void put_symbol(RangeCoder *c, uint8_t *state,
134                                    int v, int is_signed)
135 {
136     put_symbol_inline(c, state, v, is_signed, NULL, NULL);
137 }
138
139 static inline void put_vlc_symbol(PutBitContext *pb, VlcState *const state,
140                                   int v, int bits)
141 {
142     int i, k, code;
143     v = fold(v - state->bias, bits);
144
145     i = state->count;
146     k = 0;
147     while (i < state->error_sum) { // FIXME: optimize
148         k++;
149         i += i;
150     }
151
152     assert(k <= 13);
153
154 #if 0 // JPEG LS
155     if (k == 0 && 2 * state->drift <= -state->count)
156         code = v ^ (-1);
157     else
158         code = v;
159 #else
160     code = v ^ ((2 * state->drift + state->count) >> 31);
161 #endif
162
163     ff_dlog(NULL, "v:%d/%d bias:%d error:%d drift:%d count:%d k:%d\n", v, code,
164             state->bias, state->error_sum, state->drift, state->count, k);
165     set_sr_golomb(pb, code, k, 12, bits);
166
167     update_vlc_state(state, v);
168 }
169
170 static av_always_inline int encode_line(FFV1Context *s, int w,
171                                         int16_t *sample[3],
172                                         int plane_index, int bits)
173 {
174     PlaneContext *const p = &s->plane[plane_index];
175     RangeCoder *const c   = &s->c;
176     int x;
177     int run_index = s->run_index;
178     int run_count = 0;
179     int run_mode  = 0;
180
181     if (s->ac != AC_GOLOMB_RICE) {
182         if (c->bytestream_end - c->bytestream < w * 20) {
183             av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
184             return AVERROR_INVALIDDATA;
185         }
186     } else {
187         if (s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb) >> 3) < w * 4) {
188             av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
189             return AVERROR_INVALIDDATA;
190         }
191     }
192
193     for (x = 0; x < w; x++) {
194         int diff, context;
195
196         context = get_context(p, sample[0] + x, sample[1] + x, sample[2] + x);
197         diff    = sample[0][x] - predict(sample[0] + x, sample[1] + x);
198
199         if (context < 0) {
200             context = -context;
201             diff    = -diff;
202         }
203
204         diff = fold(diff, bits);
205
206         if (s->ac != AC_GOLOMB_RICE) {
207             if (s->flags & AV_CODEC_FLAG_PASS1) {
208                 put_symbol_inline(c, p->state[context], diff, 1, s->rc_stat,
209                                   s->rc_stat2[p->quant_table_index][context]);
210             } else {
211                 put_symbol_inline(c, p->state[context], diff, 1, NULL, NULL);
212             }
213         } else {
214             if (context == 0)
215                 run_mode = 1;
216
217             if (run_mode) {
218                 if (diff) {
219                     while (run_count >= 1 << ff_log2_run[run_index]) {
220                         run_count -= 1 << ff_log2_run[run_index];
221                         run_index++;
222                         put_bits(&s->pb, 1, 1);
223                     }
224
225                     put_bits(&s->pb, 1 + ff_log2_run[run_index], run_count);
226                     if (run_index)
227                         run_index--;
228                     run_count = 0;
229                     run_mode  = 0;
230                     if (diff > 0)
231                         diff--;
232                 } else {
233                     run_count++;
234                 }
235             }
236
237             ff_dlog(s->avctx, "count:%d index:%d, mode:%d, x:%d pos:%d\n",
238                     run_count, run_index, run_mode, x,
239                     (int)put_bits_count(&s->pb));
240
241             if (run_mode == 0)
242                 put_vlc_symbol(&s->pb, &p->vlc_state[context], diff, bits);
243         }
244     }
245     if (run_mode) {
246         while (run_count >= 1 << ff_log2_run[run_index]) {
247             run_count -= 1 << ff_log2_run[run_index];
248             run_index++;
249             put_bits(&s->pb, 1, 1);
250         }
251
252         if (run_count)
253             put_bits(&s->pb, 1, 1);
254     }
255     s->run_index = run_index;
256
257     return 0;
258 }
259
260 static void encode_plane(FFV1Context *s, uint8_t *src, int w, int h,
261                          int stride, int plane_index)
262 {
263     int x, y, i;
264     const int ring_size = s->context_model ? 3 : 2;
265     int16_t *sample[3];
266     s->run_index = 0;
267
268     memset(s->sample_buffer, 0, ring_size * (w + 6) * sizeof(*s->sample_buffer));
269
270     for (y = 0; y < h; y++) {
271         for (i = 0; i < ring_size; i++)
272             sample[i] = s->sample_buffer + (w + 6) * ((h + i - y) % ring_size) + 3;
273
274         sample[0][-1] = sample[1][0];
275         sample[1][w]  = sample[1][w - 1];
276 // { START_TIMER
277         if (s->bits_per_raw_sample <= 8) {
278             for (x = 0; x < w; x++)
279                 sample[0][x] = src[x + stride * y];
280             encode_line(s, w, sample, plane_index, 8);
281         } else {
282             if (s->packed_at_lsb) {
283                 for (x = 0; x < w; x++)
284                     sample[0][x] = ((uint16_t *)(src + stride * y))[x];
285             } else {
286                 for (x = 0; x < w; x++)
287                     sample[0][x] =
288                         ((uint16_t *)(src + stride * y))[x] >> (16 - s->bits_per_raw_sample);
289             }
290             encode_line(s, w, sample, plane_index, s->bits_per_raw_sample);
291         }
292 // STOP_TIMER("encode line") }
293     }
294 }
295
296 static void encode_rgb_frame(FFV1Context *s, const uint8_t *src[3],
297                              int w, int h, const int stride[3])
298 {
299     int x, y, p, i;
300     const int ring_size = s->context_model ? 3 : 2;
301     int16_t *sample[MAX_PLANES][3];
302     int lbd  = s->avctx->bits_per_raw_sample <= 8;
303     int bits = s->avctx->bits_per_raw_sample > 0
304                ? s->avctx->bits_per_raw_sample
305                : 8;
306     int offset = 1 << bits;
307
308     s->run_index = 0;
309
310     memset(s->sample_buffer, 0, ring_size * MAX_PLANES *
311                                 (w + 6) * sizeof(*s->sample_buffer));
312
313     for (y = 0; y < h; y++) {
314         for (i = 0; i < ring_size; i++)
315             for (p = 0; p < MAX_PLANES; p++)
316                 sample[p][i] = s->sample_buffer + p * ring_size *
317                                (w + 6) +
318                                ((h + i - y) % ring_size) * (w + 6) + 3;
319
320         for (x = 0; x < w; x++) {
321             int b, g, r, av_uninit(a);
322             if (lbd) {
323                 unsigned v = *((const uint32_t *)(src[0] + x * 4 + stride[0] * y));
324                 b = v & 0xFF;
325                 g = (v >> 8) & 0xFF;
326                 r = (v >> 16) & 0xFF;
327                 a = v >> 24;
328             } else {
329                 b = *((const uint16_t *)(src[0] + x * 2 + stride[0] * y));
330                 g = *((const uint16_t *)(src[1] + x * 2 + stride[1] * y));
331                 r = *((const uint16_t *)(src[2] + x * 2 + stride[2] * y));
332             }
333
334             b -= g;
335             r -= g;
336             g += (b + r) >> 2;
337             b += offset;
338             r += offset;
339
340             sample[0][0][x] = g;
341             sample[1][0][x] = b;
342             sample[2][0][x] = r;
343             sample[3][0][x] = a;
344         }
345         for (p = 0; p < 3 + s->transparency; p++) {
346             sample[p][0][-1] = sample[p][1][0];
347             sample[p][1][w]  = sample[p][1][w - 1];
348             if (lbd)
349                 encode_line(s, w, sample[p], (p + 1) / 2, 9);
350             else
351                 encode_line(s, w, sample[p], (p + 1) / 2, bits + 1);
352         }
353     }
354 }
355
356
357 static void write_quant_table(RangeCoder *c, int16_t *quant_table)
358 {
359     int last = 0;
360     int i;
361     uint8_t state[CONTEXT_SIZE];
362     memset(state, 128, sizeof(state));
363
364     for (i = 1; i < 128; i++)
365         if (quant_table[i] != quant_table[i - 1]) {
366             put_symbol(c, state, i - last - 1, 0);
367             last = i;
368         }
369     put_symbol(c, state, i - last - 1, 0);
370 }
371
372 static void write_quant_tables(RangeCoder *c,
373                                int16_t quant_table[MAX_CONTEXT_INPUTS][256])
374 {
375     int i;
376     for (i = 0; i < 5; i++)
377         write_quant_table(c, quant_table[i]);
378 }
379
380 static void write_header(FFV1Context *f)
381 {
382     uint8_t state[CONTEXT_SIZE];
383     int i;
384     RangeCoder *const c = &f->slice_context[0]->c;
385
386     memset(state, 128, sizeof(state));
387
388     if (f->version < 2) {
389         put_symbol(c, state, f->version, 0);
390         put_symbol(c, state, f->ac, 0);
391         if (f->ac == AC_RANGE_CUSTOM_TAB) {
392             for (i = 1; i < 256; i++)
393                 put_symbol(c, state,
394                            f->state_transition[i] - c->one_state[i], 1);
395         }
396         put_symbol(c, state, f->colorspace, 0); // YUV cs type
397         if (f->version > 0)
398             put_symbol(c, state, f->bits_per_raw_sample, 0);
399         put_rac(c, state, f->chroma_planes);
400         put_symbol(c, state, f->chroma_h_shift, 0);
401         put_symbol(c, state, f->chroma_v_shift, 0);
402         put_rac(c, state, f->transparency);
403
404         write_quant_tables(c, f->quant_table);
405     }
406 }
407
408 static int write_extradata(FFV1Context *f)
409 {
410     RangeCoder *const c = &f->c;
411     uint8_t state[CONTEXT_SIZE];
412     int i, j, k;
413     uint8_t state2[32][CONTEXT_SIZE];
414     unsigned v;
415
416     memset(state2, 128, sizeof(state2));
417     memset(state, 128, sizeof(state));
418
419     f->avctx->extradata_size = 10000 + 4 +
420                                     (11 * 11 * 5 * 5 * 5 + 11 * 11 * 11) * 32;
421     f->avctx->extradata = av_malloc(f->avctx->extradata_size);
422     ff_init_range_encoder(c, f->avctx->extradata, f->avctx->extradata_size);
423     ff_build_rac_states(c, 0.05 * (1LL << 32), 256 - 8);
424
425     put_symbol(c, state, f->version, 0);
426     if (f->version > 1) {
427         if (f->version == 3)
428             f->minor_version = 2;
429         put_symbol(c, state, f->minor_version, 0);
430     }
431
432     put_symbol(c, state, f->ac, 0);
433     if (f->ac == AC_RANGE_CUSTOM_TAB)
434         for (i = 1; i < 256; i++)
435             put_symbol(c, state, f->state_transition[i] - c->one_state[i], 1);
436
437     put_symbol(c, state, f->colorspace, 0); // YUV cs type
438     put_symbol(c, state, f->bits_per_raw_sample, 0);
439     put_rac(c, state, f->chroma_planes);
440     put_symbol(c, state, f->chroma_h_shift, 0);
441     put_symbol(c, state, f->chroma_v_shift, 0);
442     put_rac(c, state, f->transparency);
443     put_symbol(c, state, f->num_h_slices - 1, 0);
444     put_symbol(c, state, f->num_v_slices - 1, 0);
445
446     put_symbol(c, state, f->quant_table_count, 0);
447     for (i = 0; i < f->quant_table_count; i++)
448         write_quant_tables(c, f->quant_tables[i]);
449
450     for (i = 0; i < f->quant_table_count; i++) {
451         for (j = 0; j < f->context_count[i] * CONTEXT_SIZE; j++)
452             if (f->initial_states[i] && f->initial_states[i][0][j] != 128)
453                 break;
454         if (j < f->context_count[i] * CONTEXT_SIZE) {
455             put_rac(c, state, 1);
456             for (j = 0; j < f->context_count[i]; j++)
457                 for (k = 0; k < CONTEXT_SIZE; k++) {
458                     int pred = j ? f->initial_states[i][j - 1][k] : 128;
459                     put_symbol(c, state2[k],
460                                (int8_t)(f->initial_states[i][j][k] - pred), 1);
461                 }
462         } else {
463             put_rac(c, state, 0);
464         }
465     }
466
467     if (f->version > 2) {
468         put_symbol(c, state, f->ec, 0);
469     }
470
471     f->avctx->extradata_size = ff_rac_terminate(c);
472
473     v = av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0,
474                f->avctx->extradata, f->avctx->extradata_size);
475     AV_WL32(f->avctx->extradata + f->avctx->extradata_size, v);
476     f->avctx->extradata_size += 4;
477
478     return 0;
479 }
480
481 static int sort_stt(FFV1Context *s, uint8_t stt[256])
482 {
483     int i, i2, changed, print = 0;
484
485     do {
486         changed = 0;
487         for (i = 12; i < 244; i++) {
488             for (i2 = i + 1; i2 < 245 && i2 < i + 4; i2++) {
489
490 #define COST(old, new)                                      \
491     s->rc_stat[old][0] * -log2((256 - (new)) / 256.0) +     \
492     s->rc_stat[old][1] * -log2((new)         / 256.0)
493
494 #define COST2(old, new)                         \
495     COST(old, new) + COST(256 - (old), 256 - (new))
496
497                 double size0 = COST2(i,  i) + COST2(i2, i2);
498                 double sizeX = COST2(i, i2) + COST2(i2, i);
499                 if (sizeX < size0 && i != 128 && i2 != 128) {
500                     int j;
501                     FFSWAP(int, stt[i], stt[i2]);
502                     FFSWAP(int, s->rc_stat[i][0], s->rc_stat[i2][0]);
503                     FFSWAP(int, s->rc_stat[i][1], s->rc_stat[i2][1]);
504                     if (i != 256 - i2) {
505                         FFSWAP(int, stt[256 - i], stt[256 - i2]);
506                         FFSWAP(int, s->rc_stat[256 - i][0], s->rc_stat[256 - i2][0]);
507                         FFSWAP(int, s->rc_stat[256 - i][1], s->rc_stat[256 - i2][1]);
508                     }
509                     for (j = 1; j < 256; j++) {
510                         if (stt[j] == i)
511                             stt[j] = i2;
512                         else if (stt[j] == i2)
513                             stt[j] = i;
514                         if (i != 256 - i2) {
515                             if (stt[256 - j] == 256 - i)
516                                 stt[256 - j] = 256 - i2;
517                             else if (stt[256 - j] == 256 - i2)
518                                 stt[256 - j] = 256 - i;
519                         }
520                     }
521                     print = changed = 1;
522                 }
523             }
524         }
525     } while (changed);
526     return print;
527 }
528
529 static av_cold int init_slices_state(FFV1Context *f)
530 {
531     int i, ret;
532     for (i = 0; i < f->slice_count; i++) {
533         FFV1Context *fs = f->slice_context[i];
534         if ((ret = ffv1_init_slice_state(f, fs)) < 0)
535             return AVERROR(ENOMEM);
536     }
537     return 0;
538 }
539
540 static av_cold int ffv1_encode_init(AVCodecContext *avctx)
541 {
542     FFV1Context *s = avctx->priv_data;
543     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
544     int i, j, k, m, ret;
545
546     ffv1_common_init(avctx);
547
548     s->version = 0;
549
550     switch (avctx->level) {
551     case 3:
552         break;
553     case 2:
554         av_log(avctx, AV_LOG_ERROR,
555                "Version 2 had been deemed non-standard and deprecated "
556                "the support for it had been removed\n");
557         return AVERROR(ENOSYS);
558     case 1:
559     case 0:
560         if (avctx->flags & (AV_CODEC_FLAG_PASS1 | AV_CODEC_FLAG_PASS2)) {
561             av_log(avctx, AV_LOG_ERROR,
562                    "Multiple pass encoding requires version 3.\n");
563             return AVERROR(ENOSYS);
564         }
565         if (avctx->slices > 1) {
566             av_log(avctx, AV_LOG_ERROR,
567                    "Multiple slices support requires version 3.\n");
568             return AVERROR(ENOSYS);
569         }
570         break;
571     case FF_LEVEL_UNKNOWN:
572         if ((avctx->flags & (AV_CODEC_FLAG_PASS1 | AV_CODEC_FLAG_PASS2)) ||
573             avctx->slices > 1)
574             s->version = 3;
575         else
576             s->version = 0;
577         break;
578     default:
579         av_log(avctx, AV_LOG_ERROR, "Version %d not supported\n",
580                avctx->level);
581         return AVERROR(ENOSYS);
582     }
583
584     if (s->ec < 0) {
585         s->ec = (s->version >= 3);
586     }
587
588 #if FF_API_CODER_TYPE
589 FF_DISABLE_DEPRECATION_WARNINGS
590     if (avctx->coder_type != -1)
591         s->ac = avctx->coder_type > 0 ? AC_RANGE_CUSTOM_TAB : AC_GOLOMB_RICE;
592 FF_ENABLE_DEPRECATION_WARNINGS
593 #endif
594
595     s->plane_count = 3;
596     switch (avctx->pix_fmt) {
597     case AV_PIX_FMT_YUV444P9:
598     case AV_PIX_FMT_YUV422P9:
599     case AV_PIX_FMT_YUV420P9:
600         if (!avctx->bits_per_raw_sample)
601             s->bits_per_raw_sample = 9;
602     case AV_PIX_FMT_YUV444P10:
603     case AV_PIX_FMT_YUV420P10:
604     case AV_PIX_FMT_YUV422P10:
605         s->packed_at_lsb = 1;
606         if (!avctx->bits_per_raw_sample && !s->bits_per_raw_sample)
607             s->bits_per_raw_sample = 10;
608     case AV_PIX_FMT_GRAY16:
609     case AV_PIX_FMT_YUV444P16:
610     case AV_PIX_FMT_YUV422P16:
611     case AV_PIX_FMT_YUV420P16:
612         if (!avctx->bits_per_raw_sample && !s->bits_per_raw_sample) {
613             s->bits_per_raw_sample = 16;
614         } else if (!s->bits_per_raw_sample) {
615             s->bits_per_raw_sample = avctx->bits_per_raw_sample;
616         }
617         if (s->bits_per_raw_sample <= 8) {
618             av_log(avctx, AV_LOG_ERROR, "bits_per_raw_sample invalid\n");
619             return AVERROR_INVALIDDATA;
620         }
621         if (s->ac == AC_GOLOMB_RICE) {
622             av_log(avctx, AV_LOG_INFO,
623                    "bits_per_raw_sample > 8, forcing range coder\n");
624             s->ac = AC_RANGE_CUSTOM_TAB;
625         }
626         s->version = FFMAX(s->version, 1);
627     case AV_PIX_FMT_GRAY8:
628     case AV_PIX_FMT_YUV444P:
629     case AV_PIX_FMT_YUV440P:
630     case AV_PIX_FMT_YUV422P:
631     case AV_PIX_FMT_YUV420P:
632     case AV_PIX_FMT_YUV411P:
633     case AV_PIX_FMT_YUV410P:
634         s->chroma_planes = desc->nb_components < 3 ? 0 : 1;
635         s->colorspace    = 0;
636         break;
637     case AV_PIX_FMT_YUVA444P:
638     case AV_PIX_FMT_YUVA422P:
639     case AV_PIX_FMT_YUVA420P:
640         s->chroma_planes = 1;
641         s->colorspace    = 0;
642         s->transparency  = 1;
643         break;
644     case AV_PIX_FMT_RGB32:
645         s->colorspace   = 1;
646         s->transparency = 1;
647         break;
648     case AV_PIX_FMT_GBRP9:
649         if (!avctx->bits_per_raw_sample)
650             s->bits_per_raw_sample = 9;
651     case AV_PIX_FMT_GBRP10:
652         if (!avctx->bits_per_raw_sample && !s->bits_per_raw_sample)
653             s->bits_per_raw_sample = 10;
654     case AV_PIX_FMT_GBRP16:
655         if (!avctx->bits_per_raw_sample && !s->bits_per_raw_sample)
656             s->bits_per_raw_sample = 16;
657         else if (!s->bits_per_raw_sample)
658             s->bits_per_raw_sample = avctx->bits_per_raw_sample;
659         s->colorspace    = 1;
660         s->chroma_planes = 1;
661         s->version       = FFMAX(s->version, 1);
662         break;
663     default:
664         av_log(avctx, AV_LOG_ERROR, "format not supported\n");
665         return AVERROR_INVALIDDATA;
666     }
667     if (s->transparency) {
668         av_log(
669             avctx, AV_LOG_WARNING,
670             "Storing alpha plane, this will require a recent FFV1 decoder to playback!\n");
671     }
672 #if FF_API_PRIVATE_OPT
673 FF_DISABLE_DEPRECATION_WARNINGS
674     if (avctx->context_model)
675         s->context_model = avctx->context_model;
676     if (avctx->context_model > 1U) {
677         av_log(avctx, AV_LOG_ERROR,
678                "Invalid context model %d, valid values are 0 and 1\n",
679                avctx->context_model);
680         return AVERROR(EINVAL);
681     }
682 FF_ENABLE_DEPRECATION_WARNINGS
683 #endif
684
685     if (s->ac == AC_RANGE_CUSTOM_TAB)
686         for (i = 1; i < 256; i++)
687             s->state_transition[i] = ffv1_ver2_state[i];
688
689     for (i = 0; i < 256; i++) {
690         s->quant_table_count = 2;
691         if (s->bits_per_raw_sample <= 8) {
692             s->quant_tables[0][0][i] = ffv1_quant11[i];
693             s->quant_tables[0][1][i] = ffv1_quant11[i] * 11;
694             s->quant_tables[0][2][i] = ffv1_quant11[i] * 11 * 11;
695             s->quant_tables[1][0][i] = ffv1_quant11[i];
696             s->quant_tables[1][1][i] = ffv1_quant11[i] * 11;
697             s->quant_tables[1][2][i] = ffv1_quant5[i]  * 11 * 11;
698             s->quant_tables[1][3][i] = ffv1_quant5[i]  *  5 * 11 * 11;
699             s->quant_tables[1][4][i] = ffv1_quant5[i]  *  5 *  5 * 11 * 11;
700         } else {
701             s->quant_tables[0][0][i] = ffv1_quant9_10bit[i];
702             s->quant_tables[0][1][i] = ffv1_quant9_10bit[i] * 11;
703             s->quant_tables[0][2][i] = ffv1_quant9_10bit[i] * 11 * 11;
704             s->quant_tables[1][0][i] = ffv1_quant9_10bit[i];
705             s->quant_tables[1][1][i] = ffv1_quant9_10bit[i] * 11;
706             s->quant_tables[1][2][i] = ffv1_quant5_10bit[i] * 11 * 11;
707             s->quant_tables[1][3][i] = ffv1_quant5_10bit[i] *  5 * 11 * 11;
708             s->quant_tables[1][4][i] = ffv1_quant5_10bit[i] *  5 *  5 * 11 * 11;
709         }
710     }
711     s->context_count[0] = (11 * 11 * 11        + 1) / 2;
712     s->context_count[1] = (11 * 11 * 5 * 5 * 5 + 1) / 2;
713     memcpy(s->quant_table, s->quant_tables[s->context_model],
714            sizeof(s->quant_table));
715
716     for (i = 0; i < s->plane_count; i++) {
717         PlaneContext *const p = &s->plane[i];
718
719         memcpy(p->quant_table, s->quant_table, sizeof(p->quant_table));
720         p->quant_table_index = s->context_model;
721         p->context_count     = s->context_count[p->quant_table_index];
722     }
723
724     if ((ret = ffv1_allocate_initial_states(s)) < 0)
725         return ret;
726
727 #if FF_API_CODED_FRAME
728 FF_DISABLE_DEPRECATION_WARNINGS
729     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
730 FF_ENABLE_DEPRECATION_WARNINGS
731 #endif
732
733     if (!s->transparency)
734         s->plane_count = 2;
735
736     av_pix_fmt_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_h_shift,
737                                      &s->chroma_v_shift);
738
739     s->picture_number = 0;
740
741     if (avctx->flags & (AV_CODEC_FLAG_PASS1 | AV_CODEC_FLAG_PASS2)) {
742         for (i = 0; i < s->quant_table_count; i++) {
743             s->rc_stat2[i] = av_mallocz(s->context_count[i] *
744                                         sizeof(*s->rc_stat2[i]));
745             if (!s->rc_stat2[i])
746                 return AVERROR(ENOMEM);
747         }
748     }
749     if (avctx->stats_in) {
750         char *p = avctx->stats_in;
751         uint8_t best_state[256][256];
752         int gob_count = 0;
753         char *next;
754
755         av_assert0(s->version > 2);
756
757         for (;; ) {
758             for (j = 0; j < 256; j++)
759                 for (i = 0; i < 2; i++) {
760                     s->rc_stat[j][i] = strtol(p, &next, 0);
761                     if (next == p) {
762                         av_log(avctx, AV_LOG_ERROR,
763                                "2Pass file invalid at %d %d [%s]\n", j, i, p);
764                         return AVERROR_INVALIDDATA;
765                     }
766                     p = next;
767                 }
768             for (i = 0; i < s->quant_table_count; i++)
769                 for (j = 0; j < s->context_count[i]; j++) {
770                     for (k = 0; k < 32; k++)
771                         for (m = 0; m < 2; m++) {
772                             s->rc_stat2[i][j][k][m] = strtol(p, &next, 0);
773                             if (next == p) {
774                                 av_log(avctx, AV_LOG_ERROR,
775                                        "2Pass file invalid at %d %d %d %d [%s]\n",
776                                        i, j, k, m, p);
777                                 return AVERROR_INVALIDDATA;
778                             }
779                             p = next;
780                         }
781                 }
782             gob_count = strtol(p, &next, 0);
783             if (next == p || gob_count <= 0) {
784                 av_log(avctx, AV_LOG_ERROR, "2Pass file invalid\n");
785                 return AVERROR_INVALIDDATA;
786             }
787             p = next;
788             while (*p == '\n' || *p == ' ')
789                 p++;
790             if (p[0] == 0)
791                 break;
792         }
793         sort_stt(s, s->state_transition);
794
795         find_best_state(best_state, s->state_transition);
796
797         for (i = 0; i < s->quant_table_count; i++) {
798             for (j = 0; j < s->context_count[i]; j++)
799                 for (k = 0; k < 32; k++) {
800                     double p = 128;
801                     if (s->rc_stat2[i][j][k][0] + s->rc_stat2[i][j][k][1]) {
802                         p = 256.0 * s->rc_stat2[i][j][k][1] /
803                             (s->rc_stat2[i][j][k][0] + s->rc_stat2[i][j][k][1]);
804                     }
805                     s->initial_states[i][j][k] =
806                         best_state[av_clip(round(p), 1, 255)][av_clip((s->rc_stat2[i][j][k][0] +
807                                                                        s->rc_stat2[i][j][k][1]) /
808                                                                       gob_count, 0, 255)];
809                 }
810         }
811     }
812
813     if (s->version > 1) {
814         for (s->num_v_slices = 2; s->num_v_slices < 9; s->num_v_slices++)
815             for (s->num_h_slices = s->num_v_slices;
816                  s->num_h_slices < 2 * s->num_v_slices; s->num_h_slices++)
817                 if (avctx->slices == s->num_h_slices * s->num_v_slices &&
818                     avctx->slices <= 64 || !avctx->slices)
819                     goto slices_ok;
820         av_log(avctx, AV_LOG_ERROR,
821                "Unsupported number %d of slices requested, please specify a "
822                "supported number with -slices (ex:4,6,9,12,16, ...)\n",
823                avctx->slices);
824         return AVERROR(ENOSYS);
825 slices_ok:
826         write_extradata(s);
827     }
828
829     if ((ret = ffv1_init_slice_contexts(s)) < 0)
830         return ret;
831     if ((ret = init_slices_state(s)) < 0)
832         return ret;
833
834 #define STATS_OUT_SIZE 1024 * 1024 * 6
835     if (avctx->flags & AV_CODEC_FLAG_PASS1) {
836         avctx->stats_out = av_mallocz(STATS_OUT_SIZE);
837         for (i = 0; i < s->quant_table_count; i++)
838             for (j = 0; j < s->slice_count; j++) {
839                 FFV1Context *sf = s->slice_context[j];
840                 av_assert0(!sf->rc_stat2[i]);
841                 sf->rc_stat2[i] = av_mallocz(s->context_count[i] *
842                                              sizeof(*sf->rc_stat2[i]));
843                 if (!sf->rc_stat2[i])
844                     return AVERROR(ENOMEM);
845             }
846     }
847
848     return 0;
849 }
850
851 static void encode_slice_header(FFV1Context *f, FFV1Context *fs)
852 {
853     RangeCoder *c = &fs->c;
854     uint8_t state[CONTEXT_SIZE];
855     int j;
856     memset(state, 128, sizeof(state));
857
858     put_symbol(c, state, (fs->slice_x + 1) * f->num_h_slices / f->width, 0);
859     put_symbol(c, state, (fs->slice_y + 1) * f->num_v_slices / f->height, 0);
860     put_symbol(c, state, (fs->slice_width + 1) * f->num_h_slices / f->width - 1,
861                0);
862     put_symbol(c, state,
863                (fs->slice_height + 1) * f->num_v_slices / f->height - 1,
864                0);
865     for (j = 0; j < f->plane_count; j++) {
866         put_symbol(c, state, f->plane[j].quant_table_index, 0);
867         av_assert0(f->plane[j].quant_table_index == f->context_model);
868     }
869     if (!f->frame->interlaced_frame)
870         put_symbol(c, state, 3, 0);
871     else
872         put_symbol(c, state, 1 + !f->frame->top_field_first, 0);
873     put_symbol(c, state, f->frame->sample_aspect_ratio.num, 0);
874     put_symbol(c, state, f->frame->sample_aspect_ratio.den, 0);
875 }
876
877 static int encode_slice(AVCodecContext *c, void *arg)
878 {
879     FFV1Context *fs  = *(void **)arg;
880     FFV1Context *f   = fs->avctx->priv_data;
881     int width        = fs->slice_width;
882     int height       = fs->slice_height;
883     int x            = fs->slice_x;
884     int y            = fs->slice_y;
885     const AVFrame *const p = f->frame;
886     const int ps     = (av_pix_fmt_desc_get(c->pix_fmt)->flags & AV_PIX_FMT_FLAG_PLANAR)
887                        ? (f->bits_per_raw_sample > 8) + 1
888                        : 4;
889
890     if (f->key_frame)
891         ffv1_clear_slice_state(f, fs);
892     if (f->version > 2) {
893         encode_slice_header(f, fs);
894     }
895     if (fs->ac == AC_GOLOMB_RICE) {
896         if (f->version > 2)
897             put_rac(&fs->c, (uint8_t[]) { 129 }, 0);
898         fs->ac_byte_count = f->version > 2 || (!x && !y) ? ff_rac_terminate( &fs->c) : 0;
899         init_put_bits(&fs->pb, fs->c.bytestream_start + fs->ac_byte_count,
900                       fs->c.bytestream_end - fs->c.bytestream_start - fs->ac_byte_count);
901     }
902
903     if (f->colorspace == 0) {
904         const int chroma_width  = AV_CEIL_RSHIFT(width,  f->chroma_h_shift);
905         const int chroma_height = AV_CEIL_RSHIFT(height, f->chroma_v_shift);
906         const int cx            = x >> f->chroma_h_shift;
907         const int cy            = y >> f->chroma_v_shift;
908
909         encode_plane(fs, p->data[0] + ps * x + y * p->linesize[0],
910                      width, height, p->linesize[0], 0);
911
912         if (f->chroma_planes) {
913             encode_plane(fs, p->data[1] + ps * cx + cy * p->linesize[1],
914                          chroma_width, chroma_height, p->linesize[1], 1);
915             encode_plane(fs, p->data[2] + ps * cx + cy * p->linesize[2],
916                          chroma_width, chroma_height, p->linesize[2], 1);
917         }
918         if (fs->transparency)
919             encode_plane(fs, p->data[3] + ps * x + y * p->linesize[3], width,
920                          height, p->linesize[3], 2);
921     } else {
922         const uint8_t *planes[3] = { p->data[0] + ps * x + y * p->linesize[0],
923                                      p->data[1] + ps * x + y * p->linesize[1],
924                                      p->data[2] + ps * x + y * p->linesize[2] };
925         encode_rgb_frame(fs, planes, width, height, p->linesize);
926     }
927     emms_c();
928
929     return 0;
930 }
931
932 static int ffv1_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
933                         const AVFrame *pict, int *got_packet)
934 {
935     FFV1Context *f      = avctx->priv_data;
936     RangeCoder *const c = &f->slice_context[0]->c;
937     int used_count      = 0;
938     uint8_t keystate    = 128;
939     uint8_t *buf_p;
940     int i, ret;
941
942     f->frame = pict;
943
944     if ((ret = ff_alloc_packet(pkt, avctx->width * avctx->height *
945                              ((8 * 2 + 1 + 1) * 4) / 8 +
946                              AV_INPUT_BUFFER_MIN_SIZE)) < 0) {
947         av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
948         return ret;
949     }
950
951     ff_init_range_encoder(c, pkt->data, pkt->size);
952     ff_build_rac_states(c, 0.05 * (1LL << 32), 256 - 8);
953
954     if (avctx->gop_size == 0 || f->picture_number % avctx->gop_size == 0) {
955         put_rac(c, &keystate, 1);
956         f->key_frame = 1;
957         f->gob_count++;
958         write_header(f);
959     } else {
960         put_rac(c, &keystate, 0);
961         f->key_frame = 0;
962     }
963
964     if (f->ac == AC_RANGE_CUSTOM_TAB) {
965         int i;
966         for (i = 1; i < 256; i++) {
967             c->one_state[i]        = f->state_transition[i];
968             c->zero_state[256 - i] = 256 - c->one_state[i];
969         }
970     }
971
972     for (i = 1; i < f->slice_count; i++) {
973         FFV1Context *fs = f->slice_context[i];
974         uint8_t *start  = pkt->data +
975                           (pkt->size - used_count) * (int64_t)i / f->slice_count;
976         int len = pkt->size / f->slice_count;
977         ff_init_range_encoder(&fs->c, start, len);
978     }
979     avctx->execute(avctx, encode_slice, &f->slice_context[0], NULL,
980                    f->slice_count, sizeof(void *));
981
982     buf_p = pkt->data;
983     for (i = 0; i < f->slice_count; i++) {
984         FFV1Context *fs = f->slice_context[i];
985         int bytes;
986
987         if (fs->ac != AC_GOLOMB_RICE) {
988             uint8_t state = 129;
989             put_rac(&fs->c, &state, 0);
990             bytes = ff_rac_terminate(&fs->c);
991         } else {
992             flush_put_bits(&fs->pb); // FIXME: nicer padding
993             bytes = fs->ac_byte_count + (put_bits_count(&fs->pb) + 7) / 8;
994         }
995         if (i > 0 || f->version > 2) {
996             av_assert0(bytes < pkt->size / f->slice_count);
997             memmove(buf_p, fs->c.bytestream_start, bytes);
998             av_assert0(bytes < (1 << 24));
999             AV_WB24(buf_p + bytes, bytes);
1000             bytes += 3;
1001         }
1002         if (f->ec) {
1003             unsigned v;
1004             buf_p[bytes++] = 0;
1005             v = av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, buf_p, bytes);
1006             AV_WL32(buf_p + bytes, v);
1007             bytes += 4;
1008         }
1009         buf_p += bytes;
1010     }
1011
1012     if ((avctx->flags & AV_CODEC_FLAG_PASS1) && (f->picture_number & 31) == 0) {
1013         int j, k, m;
1014         char *p   = avctx->stats_out;
1015         char *end = p + STATS_OUT_SIZE;
1016
1017         memset(f->rc_stat, 0, sizeof(f->rc_stat));
1018         for (i = 0; i < f->quant_table_count; i++)
1019             memset(f->rc_stat2[i], 0, f->context_count[i] * sizeof(*f->rc_stat2[i]));
1020
1021         for (j = 0; j < f->slice_count; j++) {
1022             FFV1Context *fs = f->slice_context[j];
1023             for (i = 0; i < 256; i++) {
1024                 f->rc_stat[i][0] += fs->rc_stat[i][0];
1025                 f->rc_stat[i][1] += fs->rc_stat[i][1];
1026             }
1027             for (i = 0; i < f->quant_table_count; i++) {
1028                 for (k = 0; k < f->context_count[i]; k++)
1029                     for (m = 0; m < 32; m++) {
1030                         f->rc_stat2[i][k][m][0] += fs->rc_stat2[i][k][m][0];
1031                         f->rc_stat2[i][k][m][1] += fs->rc_stat2[i][k][m][1];
1032                     }
1033             }
1034         }
1035
1036         for (j = 0; j < 256; j++) {
1037             snprintf(p, end - p, "%" PRIu64 " %" PRIu64 " ",
1038                      f->rc_stat[j][0], f->rc_stat[j][1]);
1039             p += strlen(p);
1040         }
1041         snprintf(p, end - p, "\n");
1042
1043         for (i = 0; i < f->quant_table_count; i++) {
1044             for (j = 0; j < f->context_count[i]; j++)
1045                 for (m = 0; m < 32; m++) {
1046                     snprintf(p, end - p, "%" PRIu64 " %" PRIu64 " ",
1047                              f->rc_stat2[i][j][m][0], f->rc_stat2[i][j][m][1]);
1048                     p += strlen(p);
1049                 }
1050         }
1051         snprintf(p, end - p, "%d\n", f->gob_count);
1052     } else if (avctx->flags & AV_CODEC_FLAG_PASS1)
1053         avctx->stats_out[0] = '\0';
1054
1055 #if FF_API_CODED_FRAME
1056 FF_DISABLE_DEPRECATION_WARNINGS
1057     avctx->coded_frame->key_frame = f->key_frame;
1058 FF_ENABLE_DEPRECATION_WARNINGS
1059 #endif
1060
1061     f->picture_number++;
1062     pkt->size   = buf_p - pkt->data;
1063     pkt->flags |= AV_PKT_FLAG_KEY * f->key_frame;
1064     *got_packet = 1;
1065
1066     return 0;
1067 }
1068
1069 static av_cold int ffv1_encode_close(AVCodecContext *avctx)
1070 {
1071     ffv1_close(avctx);
1072     return 0;
1073 }
1074
1075 #define OFFSET(x) offsetof(FFV1Context, x)
1076 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1077 static const AVOption options[] = {
1078     { "slicecrc", "Protect slices with CRCs", OFFSET(ec), AV_OPT_TYPE_INT,
1079              { .i64 = -1 }, -1, 1, VE },
1080     { "coder", "Coder type", OFFSET(ac), AV_OPT_TYPE_INT,
1081             { .i64 = AC_GOLOMB_RICE }, 0, 2, VE, "coder" },
1082         { "rice", "Golomb rice", 0, AV_OPT_TYPE_CONST,
1083             { .i64 = AC_GOLOMB_RICE }, INT_MIN, INT_MAX, VE, "coder" },
1084         { "range_def", "Range with default table", 0, AV_OPT_TYPE_CONST,
1085             { .i64 = AC_RANGE_DEFAULT_TAB }, INT_MIN, INT_MAX, VE, "coder" },
1086         { "range_tab", "Range with custom table", 0, AV_OPT_TYPE_CONST,
1087             { .i64 = AC_RANGE_CUSTOM_TAB }, INT_MIN, INT_MAX, VE, "coder" },
1088     { "context", "Context model", OFFSET(context_model), AV_OPT_TYPE_INT,
1089             { .i64 = 0 }, 0, 1, VE },
1090
1091     { NULL }
1092 };
1093
1094 static const AVClass class = {
1095     .class_name = "ffv1 encoder",
1096     .item_name  = av_default_item_name,
1097     .option     = options,
1098     .version    = LIBAVUTIL_VERSION_INT,
1099 };
1100
1101 #if FF_API_CODER_TYPE
1102 static const AVCodecDefault ffv1_defaults[] = {
1103     { "coder", "-1" },
1104     { NULL },
1105 };
1106 #endif
1107
1108 AVCodec ff_ffv1_encoder = {
1109     .name           = "ffv1",
1110     .long_name      = NULL_IF_CONFIG_SMALL("FFmpeg video codec #1"),
1111     .type           = AVMEDIA_TYPE_VIDEO,
1112     .id             = AV_CODEC_ID_FFV1,
1113     .priv_data_size = sizeof(FFV1Context),
1114     .init           = ffv1_encode_init,
1115     .encode2        = ffv1_encode_frame,
1116     .close          = ffv1_encode_close,
1117     .capabilities   = AV_CODEC_CAP_SLICE_THREADS,
1118     .pix_fmts       = (const enum AVPixelFormat[]) {
1119         AV_PIX_FMT_YUV420P,   AV_PIX_FMT_YUV422P,   AV_PIX_FMT_YUV444P,
1120         AV_PIX_FMT_YUV411P,   AV_PIX_FMT_YUV410P,
1121         AV_PIX_FMT_YUV444P9,  AV_PIX_FMT_YUV422P9,  AV_PIX_FMT_YUV420P9,
1122         AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10,
1123         AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
1124         AV_PIX_FMT_RGB32,
1125         AV_PIX_FMT_GBRP9,     AV_PIX_FMT_GBRP10,
1126         AV_PIX_FMT_YUVA420P,  AV_PIX_FMT_YUVA422P,  AV_PIX_FMT_YUVA444P,
1127         AV_PIX_FMT_GRAY16,    AV_PIX_FMT_GRAY8,
1128         AV_PIX_FMT_NONE
1129
1130     },
1131 #if FF_API_CODER_TYPE
1132     .defaults       = ffv1_defaults,
1133 #endif
1134     .priv_class     = &class,
1135 };