FFmpeg  4.4.6
ffv1dec.c
Go to the documentation of this file.
1 /*
2  * FFV1 decoder
3  *
4  * Copyright (c) 2003-2013 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg 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  * FFmpeg 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 FFmpeg; 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) decoder
26  */
27 
28 #include "libavutil/avassert.h"
29 #include "libavutil/crc.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/imgutils.h"
32 #include "libavutil/pixdesc.h"
33 #include "avcodec.h"
34 #include "internal.h"
35 #include "get_bits.h"
36 #include "rangecoder.h"
37 #include "golomb.h"
38 #include "mathops.h"
39 #include "ffv1.h"
40 
42  int is_signed)
43 {
44  if (get_rac(c, state + 0))
45  return 0;
46  else {
47  int i, e;
48  unsigned a;
49  e = 0;
50  while (get_rac(c, state + 1 + FFMIN(e, 9))) { // 1..10
51  e++;
52  if (e > 31)
53  return AVERROR_INVALIDDATA;
54  }
55 
56  a = 1;
57  for (i = e - 1; i >= 0; i--)
58  a += a + get_rac(c, state + 22 + FFMIN(i, 9)); // 22..31
59 
60  e = -(is_signed && get_rac(c, state + 11 + FFMIN(e, 10))); // 11..21
61  return (a ^ e) - e;
62  }
63 }
64 
65 static av_noinline int get_symbol(RangeCoder *c, uint8_t *state, int is_signed)
66 {
67  return get_symbol_inline(c, state, is_signed);
68 }
69 
70 static inline int get_vlc_symbol(GetBitContext *gb, VlcState *const state,
71  int bits)
72 {
73  int k, i, v, ret;
74 
75  i = state->count;
76  k = 0;
77  while (i < state->error_sum) { // FIXME: optimize
78  k++;
79  i += i;
80  }
81 
82  v = get_sr_golomb(gb, k, 12, bits);
83  ff_dlog(NULL, "v:%d bias:%d error:%d drift:%d count:%d k:%d",
84  v, state->bias, state->error_sum, state->drift, state->count, k);
85 
86  v ^= ((2 * state->drift + state->count) >> 31);
87 
88  ret = fold(v + state->bias, bits);
89 
91 
92  return ret;
93 }
94 
96 {
97  if (s->ac != AC_GOLOMB_RICE) {
98  RangeCoder *const c = &s->c;
99  if (c->overread > MAX_OVERREAD)
100  return AVERROR_INVALIDDATA;
101  } else {
102  if (get_bits_left(&s->gb) < 1)
103  return AVERROR_INVALIDDATA;
104  }
105  return 0;
106 }
107 
108 #define TYPE int16_t
109 #define RENAME(name) name
110 #include "ffv1dec_template.c"
111 #undef TYPE
112 #undef RENAME
113 
114 #define TYPE int32_t
115 #define RENAME(name) name ## 32
116 #include "ffv1dec_template.c"
117 
119  int w, int h, int stride, int plane_index,
120  int pixel_stride)
121 {
122  int x, y;
123  int16_t *sample[2];
124  sample[0] = s->sample_buffer + 3;
125  sample[1] = s->sample_buffer + w + 6 + 3;
126 
127  s->run_index = 0;
128 
129  memset(s->sample_buffer, 0, 2 * (w + 6) * sizeof(*s->sample_buffer));
130 
131  for (y = 0; y < h; y++) {
132  int16_t *temp = sample[0]; // FIXME: try a normal buffer
133 
134  sample[0] = sample[1];
135  sample[1] = temp;
136 
137  sample[1][-1] = sample[0][0];
138  sample[0][w] = sample[0][w - 1];
139 
140  if (s->avctx->bits_per_raw_sample <= 8) {
141  int ret = decode_line(s, w, sample, plane_index, 8);
142  if (ret < 0)
143  return ret;
144  for (x = 0; x < w; x++)
145  src[x*pixel_stride + stride * y] = sample[1][x];
146  } else {
147  int ret = decode_line(s, w, sample, plane_index, s->avctx->bits_per_raw_sample);
148  if (ret < 0)
149  return ret;
150  if (s->packed_at_lsb) {
151  for (x = 0; x < w; x++) {
152  ((uint16_t*)(src + stride*y))[x*pixel_stride] = sample[1][x];
153  }
154  } else {
155  for (x = 0; x < w; x++) {
156  ((uint16_t*)(src + stride*y))[x*pixel_stride] = sample[1][x] << (16 - s->avctx->bits_per_raw_sample) | ((uint16_t **)sample)[1][x] >> (2 * s->avctx->bits_per_raw_sample - 16);
157  }
158  }
159  }
160  }
161  return 0;
162 }
163 
165 {
166  RangeCoder *c = &fs->c;
168  unsigned ps, i, context_count;
169  int sx, sy, sw, sh;
170 
171  memset(state, 128, sizeof(state));
172  sx = get_symbol(c, state, 0);
173  sy = get_symbol(c, state, 0);
174  sw = get_symbol(c, state, 0) + 1U;
175  sh = get_symbol(c, state, 0) + 1U;
176 
177  av_assert0(f->version > 2);
178 
179 
180  if (sx < 0 || sy < 0 || sw <= 0 || sh <= 0)
181  return AVERROR_INVALIDDATA;
182  if (sx > f->num_h_slices - sw || sy > f->num_v_slices - sh)
183  return AVERROR_INVALIDDATA;
184 
185  fs->slice_x = sx * (int64_t)f->width / f->num_h_slices;
186  fs->slice_y = sy * (int64_t)f->height / f->num_v_slices;
187  fs->slice_width = (sx + sw) * (int64_t)f->width / f->num_h_slices - fs->slice_x;
188  fs->slice_height = (sy + sh) * (int64_t)f->height / f->num_v_slices - fs->slice_y;
189 
190  av_assert0((unsigned)fs->slice_width <= f->width &&
191  (unsigned)fs->slice_height <= f->height);
192  av_assert0 ( (unsigned)fs->slice_x + (uint64_t)fs->slice_width <= f->width
193  && (unsigned)fs->slice_y + (uint64_t)fs->slice_height <= f->height);
194 
195  if (fs->ac == AC_GOLOMB_RICE && fs->slice_width >= (1<<23))
196  return AVERROR_INVALIDDATA;
197 
198  for (i = 0; i < f->plane_count; i++) {
199  PlaneContext * const p = &fs->plane[i];
200  int idx = get_symbol(c, state, 0);
201  if (idx >= (unsigned)f->quant_table_count) {
202  av_log(f->avctx, AV_LOG_ERROR, "quant_table_index out of range\n");
203  return -1;
204  }
205  p->quant_table_index = idx;
206  memcpy(p->quant_table, f->quant_tables[idx], sizeof(p->quant_table));
207  context_count = f->context_count[idx];
208 
209  if (p->context_count < context_count) {
210  av_freep(&p->state);
211  av_freep(&p->vlc_state);
212  }
213  p->context_count = context_count;
214  }
215 
216  ps = get_symbol(c, state, 0);
217  if (ps == 1) {
218  f->cur->interlaced_frame = 1;
219  f->cur->top_field_first = 1;
220  } else if (ps == 2) {
221  f->cur->interlaced_frame = 1;
222  f->cur->top_field_first = 0;
223  } else if (ps == 3) {
224  f->cur->interlaced_frame = 0;
225  }
226  f->cur->sample_aspect_ratio.num = get_symbol(c, state, 0);
227  f->cur->sample_aspect_ratio.den = get_symbol(c, state, 0);
228 
229  if (av_image_check_sar(f->width, f->height,
230  f->cur->sample_aspect_ratio) < 0) {
231  av_log(f->avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
232  f->cur->sample_aspect_ratio.num,
233  f->cur->sample_aspect_ratio.den);
234  f->cur->sample_aspect_ratio = (AVRational){ 0, 1 };
235  }
236 
237  if (fs->version > 3) {
238  fs->slice_reset_contexts = get_rac(c, state);
239  fs->slice_coding_mode = get_symbol(c, state, 0);
240  if (fs->slice_coding_mode != 1) {
241  fs->slice_rct_by_coef = get_symbol(c, state, 0);
242  fs->slice_rct_ry_coef = get_symbol(c, state, 0);
243  if ((uint64_t)fs->slice_rct_by_coef + (uint64_t)fs->slice_rct_ry_coef > 4) {
244  av_log(f->avctx, AV_LOG_ERROR, "slice_rct_y_coef out of range\n");
245  return AVERROR_INVALIDDATA;
246  }
247  }
248  }
249 
250  return 0;
251 }
252 
253 static int decode_slice(AVCodecContext *c, void *arg)
254 {
255  FFV1Context *fs = *(void **)arg;
256  FFV1Context *f = fs->avctx->priv_data;
257  int width, height, x, y, ret;
258  const int ps = av_pix_fmt_desc_get(c->pix_fmt)->comp[0].step;
259  AVFrame * const p = f->cur;
260  int i, si;
261 
262  for( si=0; fs != f->slice_context[si]; si ++)
263  ;
264 
265  if(f->fsrc && !p->key_frame)
266  ff_thread_await_progress(&f->last_picture, si, 0);
267 
268  if(f->fsrc && !p->key_frame) {
269  FFV1Context *fssrc = f->fsrc->slice_context[si];
270  FFV1Context *fsdst = f->slice_context[si];
271  av_assert1(fsdst->plane_count == fssrc->plane_count);
272  av_assert1(fsdst == fs);
273 
274  if (!p->key_frame)
275  fsdst->slice_damaged |= fssrc->slice_damaged;
276 
277  for (i = 0; i < f->plane_count; i++) {
278  PlaneContext *psrc = &fssrc->plane[i];
279  PlaneContext *pdst = &fsdst->plane[i];
280 
281  av_free(pdst->state);
282  av_free(pdst->vlc_state);
283  memcpy(pdst, psrc, sizeof(*pdst));
284  pdst->state = NULL;
285  pdst->vlc_state = NULL;
286 
287  if (fssrc->ac) {
289  memcpy(pdst->state, psrc->state, CONTEXT_SIZE * psrc->context_count);
290  } else {
291  pdst->vlc_state = av_malloc_array(sizeof(*pdst->vlc_state), psrc->context_count);
292  memcpy(pdst->vlc_state, psrc->vlc_state, sizeof(*pdst->vlc_state) * psrc->context_count);
293  }
294  }
295  }
296 
297  fs->slice_rct_by_coef = 1;
298  fs->slice_rct_ry_coef = 1;
299 
300  if (f->version > 2) {
301  if (ff_ffv1_init_slice_state(f, fs) < 0)
302  return AVERROR(ENOMEM);
303  if (decode_slice_header(f, fs) < 0) {
304  fs->slice_x = fs->slice_y = fs->slice_height = fs->slice_width = 0;
305  fs->slice_damaged = 1;
306  return AVERROR_INVALIDDATA;
307  }
308  }
309  if ((ret = ff_ffv1_init_slice_state(f, fs)) < 0)
310  return ret;
311  if (f->cur->key_frame || fs->slice_reset_contexts) {
313  } else if (fs->slice_damaged) {
314  return AVERROR_INVALIDDATA;
315  }
316 
317  width = fs->slice_width;
318  height = fs->slice_height;
319  x = fs->slice_x;
320  y = fs->slice_y;
321 
322  if (fs->ac == AC_GOLOMB_RICE) {
323  if (f->version == 3 && f->micro_version > 1 || f->version > 3)
324  get_rac(&fs->c, (uint8_t[]) { 129 });
325  fs->ac_byte_count = f->version > 2 || (!x && !y) ? fs->c.bytestream - fs->c.bytestream_start - 1 : 0;
326  init_get_bits(&fs->gb,
327  fs->c.bytestream_start + fs->ac_byte_count,
328  (fs->c.bytestream_end - fs->c.bytestream_start - fs->ac_byte_count) * 8);
329  }
330 
331  av_assert1(width && height);
332  if (f->colorspace == 0 && (f->chroma_planes || !fs->transparency)) {
333  const int chroma_width = AV_CEIL_RSHIFT(width, f->chroma_h_shift);
334  const int chroma_height = AV_CEIL_RSHIFT(height, f->chroma_v_shift);
335  const int cx = x >> f->chroma_h_shift;
336  const int cy = y >> f->chroma_v_shift;
337  decode_plane(fs, p->data[0] + ps*x + y*p->linesize[0], width, height, p->linesize[0], 0, 1);
338 
339  if (f->chroma_planes) {
340  decode_plane(fs, p->data[1] + ps*cx+cy*p->linesize[1], chroma_width, chroma_height, p->linesize[1], 1, 1);
341  decode_plane(fs, p->data[2] + ps*cx+cy*p->linesize[2], chroma_width, chroma_height, p->linesize[2], 1, 1);
342  }
343  if (fs->transparency)
344  decode_plane(fs, p->data[3] + ps*x + y*p->linesize[3], width, height, p->linesize[3], (f->version >= 4 && !f->chroma_planes) ? 1 : 2, 1);
345  } else if (f->colorspace == 0) {
346  decode_plane(fs, p->data[0] + ps*x + y*p->linesize[0] , width, height, p->linesize[0], 0, 2);
347  decode_plane(fs, p->data[0] + ps*x + y*p->linesize[0] + 1, width, height, p->linesize[0], 1, 2);
348  } else if (f->use32bit) {
349  uint8_t *planes[4] = { p->data[0] + ps * x + y * p->linesize[0],
350  p->data[1] + ps * x + y * p->linesize[1],
351  p->data[2] + ps * x + y * p->linesize[2],
352  p->data[3] + ps * x + y * p->linesize[3] };
353  decode_rgb_frame32(fs, planes, width, height, p->linesize);
354  } else {
355  uint8_t *planes[4] = { p->data[0] + ps * x + y * p->linesize[0],
356  p->data[1] + ps * x + y * p->linesize[1],
357  p->data[2] + ps * x + y * p->linesize[2],
358  p->data[3] + ps * x + y * p->linesize[3] };
360  }
361  if (fs->ac != AC_GOLOMB_RICE && f->version > 2) {
362  int v;
363  get_rac(&fs->c, (uint8_t[]) { 129 });
364  v = fs->c.bytestream_end - fs->c.bytestream - 2 - 5*!!f->ec;
365  if (v) {
366  av_log(f->avctx, AV_LOG_ERROR, "bytestream end mismatching by %d\n", v);
367  fs->slice_damaged = 1;
368  }
369  }
370 
371  emms_c();
372 
373  ff_thread_report_progress(&f->picture, si, 0);
374 
375  return 0;
376 }
377 
378 static int read_quant_table(RangeCoder *c, int16_t *quant_table, int scale)
379 {
380  int v;
381  int i = 0;
383 
384  memset(state, 128, sizeof(state));
385 
386  for (v = 0; i < 128; v++) {
387  unsigned len = get_symbol(c, state, 0) + 1U;
388 
389  if (len > 128 - i || !len)
390  return AVERROR_INVALIDDATA;
391 
392  while (len--) {
393  quant_table[i] = scale * v;
394  i++;
395  }
396  }
397 
398  for (i = 1; i < 128; i++)
399  quant_table[256 - i] = -quant_table[i];
400  quant_table[128] = -quant_table[127];
401 
402  return 2 * v - 1;
403 }
404 
406  int16_t quant_table[MAX_CONTEXT_INPUTS][256])
407 {
408  int i;
409  int context_count = 1;
410 
411  for (i = 0; i < 5; i++) {
412  int ret = read_quant_table(c, quant_table[i], context_count);
413  if (ret < 0)
414  return ret;
415  context_count *= ret;
416  if (context_count > 32768U) {
417  return AVERROR_INVALIDDATA;
418  }
419  }
420  return (context_count + 1) / 2;
421 }
422 
424 {
425  RangeCoder *const c = &f->c;
427  int i, j, k, ret;
428  uint8_t state2[32][CONTEXT_SIZE];
429  unsigned crc = 0;
430 
431  memset(state2, 128, sizeof(state2));
432  memset(state, 128, sizeof(state));
433 
434  ff_init_range_decoder(c, f->avctx->extradata, f->avctx->extradata_size);
435  ff_build_rac_states(c, 0.05 * (1LL << 32), 256 - 8);
436 
437  f->version = get_symbol(c, state, 0);
438  if (f->version < 2) {
439  av_log(f->avctx, AV_LOG_ERROR, "Invalid version in global header\n");
440  return AVERROR_INVALIDDATA;
441  }
442  if (f->version > 2) {
443  c->bytestream_end -= 4;
444  f->micro_version = get_symbol(c, state, 0);
445  if (f->micro_version < 0)
446  return AVERROR_INVALIDDATA;
447  }
448  f->ac = get_symbol(c, state, 0);
449 
450  if (f->ac == AC_RANGE_CUSTOM_TAB) {
451  for (i = 1; i < 256; i++)
452  f->state_transition[i] = get_symbol(c, state, 1) + c->one_state[i];
453  }
454 
455  f->colorspace = get_symbol(c, state, 0); //YUV cs type
456  f->avctx->bits_per_raw_sample = get_symbol(c, state, 0);
457  f->chroma_planes = get_rac(c, state);
458  f->chroma_h_shift = get_symbol(c, state, 0);
459  f->chroma_v_shift = get_symbol(c, state, 0);
460  f->transparency = get_rac(c, state);
461  f->plane_count = 1 + (f->chroma_planes || f->version<4) + f->transparency;
462  f->num_h_slices = 1 + get_symbol(c, state, 0);
463  f->num_v_slices = 1 + get_symbol(c, state, 0);
464 
465  if (f->chroma_h_shift > 4U || f->chroma_v_shift > 4U) {
466  av_log(f->avctx, AV_LOG_ERROR, "chroma shift parameters %d %d are invalid\n",
467  f->chroma_h_shift, f->chroma_v_shift);
468  return AVERROR_INVALIDDATA;
469  }
470 
471  if (f->num_h_slices > (unsigned)f->width || !f->num_h_slices ||
472  f->num_v_slices > (unsigned)f->height || !f->num_v_slices
473  ) {
474  av_log(f->avctx, AV_LOG_ERROR, "slice count invalid\n");
475  return AVERROR_INVALIDDATA;
476  }
477 
478  if (f->num_h_slices > MAX_SLICES / f->num_v_slices) {
479  av_log(f->avctx, AV_LOG_ERROR, "slice count unsupported\n");
480  return AVERROR_PATCHWELCOME;
481  }
482 
483  f->quant_table_count = get_symbol(c, state, 0);
484  if (f->quant_table_count > (unsigned)MAX_QUANT_TABLES || !f->quant_table_count) {
485  av_log(f->avctx, AV_LOG_ERROR, "quant table count %d is invalid\n", f->quant_table_count);
486  f->quant_table_count = 0;
487  return AVERROR_INVALIDDATA;
488  }
489 
490  for (i = 0; i < f->quant_table_count; i++) {
491  f->context_count[i] = read_quant_tables(c, f->quant_tables[i]);
492  if (f->context_count[i] < 0) {
493  av_log(f->avctx, AV_LOG_ERROR, "read_quant_table error\n");
494  return AVERROR_INVALIDDATA;
495  }
496  }
497  if ((ret = ff_ffv1_allocate_initial_states(f)) < 0)
498  return ret;
499 
500  for (i = 0; i < f->quant_table_count; i++)
501  if (get_rac(c, state)) {
502  for (j = 0; j < f->context_count[i]; j++)
503  for (k = 0; k < CONTEXT_SIZE; k++) {
504  int pred = j ? f->initial_states[i][j - 1][k] : 128;
505  f->initial_states[i][j][k] =
506  (pred + get_symbol(c, state2[k], 1)) & 0xFF;
507  }
508  }
509 
510  if (f->version > 2) {
511  f->ec = get_symbol(c, state, 0);
512  if (f->micro_version > 2)
513  f->intra = get_symbol(c, state, 0);
514  }
515 
516  if (f->version > 2) {
517  unsigned v;
519  f->avctx->extradata, f->avctx->extradata_size);
520  if (v || f->avctx->extradata_size < 4) {
521  av_log(f->avctx, AV_LOG_ERROR, "CRC mismatch %X!\n", v);
522  return AVERROR_INVALIDDATA;
523  }
524  crc = AV_RB32(f->avctx->extradata + f->avctx->extradata_size - 4);
525  }
526 
527  if (f->avctx->debug & FF_DEBUG_PICT_INFO)
528  av_log(f->avctx, AV_LOG_DEBUG,
529  "global: ver:%d.%d, coder:%d, colorspace: %d bpr:%d chroma:%d(%d:%d), alpha:%d slices:%dx%d qtabs:%d ec:%d intra:%d CRC:0x%08X\n",
530  f->version, f->micro_version,
531  f->ac,
532  f->colorspace,
533  f->avctx->bits_per_raw_sample,
534  f->chroma_planes, f->chroma_h_shift, f->chroma_v_shift,
535  f->transparency,
536  f->num_h_slices, f->num_v_slices,
537  f->quant_table_count,
538  f->ec,
539  f->intra,
540  crc
541  );
542  return 0;
543 }
544 
546 {
548  int i, j, context_count = -1; //-1 to avoid warning
549  RangeCoder *const c = &f->slice_context[0]->c;
550 
551  memset(state, 128, sizeof(state));
552 
553  if (f->version < 2) {
554  int chroma_planes, chroma_h_shift, chroma_v_shift, transparency, colorspace, bits_per_raw_sample;
555  unsigned v= get_symbol(c, state, 0);
556  if (v >= 2) {
557  av_log(f->avctx, AV_LOG_ERROR, "invalid version %d in ver01 header\n", v);
558  return AVERROR_INVALIDDATA;
559  }
560  f->version = v;
561  f->ac = get_symbol(c, state, 0);
562 
563  if (f->ac == AC_RANGE_CUSTOM_TAB) {
564  for (i = 1; i < 256; i++) {
565  int st = get_symbol(c, state, 1) + c->one_state[i];
566  if (st < 1 || st > 255) {
567  av_log(f->avctx, AV_LOG_ERROR, "invalid state transition %d\n", st);
568  return AVERROR_INVALIDDATA;
569  }
570  f->state_transition[i] = st;
571  }
572  }
573 
574  colorspace = get_symbol(c, state, 0); //YUV cs type
575  bits_per_raw_sample = f->version > 0 ? get_symbol(c, state, 0) : f->avctx->bits_per_raw_sample;
576  chroma_planes = get_rac(c, state);
577  chroma_h_shift = get_symbol(c, state, 0);
578  chroma_v_shift = get_symbol(c, state, 0);
579  transparency = get_rac(c, state);
580  if (colorspace == 0 && f->avctx->skip_alpha)
581  transparency = 0;
582 
583  if (f->plane_count) {
584  if (colorspace != f->colorspace ||
585  bits_per_raw_sample != f->avctx->bits_per_raw_sample ||
586  chroma_planes != f->chroma_planes ||
587  chroma_h_shift != f->chroma_h_shift ||
588  chroma_v_shift != f->chroma_v_shift ||
589  transparency != f->transparency) {
590  av_log(f->avctx, AV_LOG_ERROR, "Invalid change of global parameters\n");
591  return AVERROR_INVALIDDATA;
592  }
593  }
594 
595  if (chroma_h_shift > 4U || chroma_v_shift > 4U) {
596  av_log(f->avctx, AV_LOG_ERROR, "chroma shift parameters %d %d are invalid\n",
597  chroma_h_shift, chroma_v_shift);
598  return AVERROR_INVALIDDATA;
599  }
600 
601  f->colorspace = colorspace;
602  f->avctx->bits_per_raw_sample = bits_per_raw_sample;
603  f->chroma_planes = chroma_planes;
604  f->chroma_h_shift = chroma_h_shift;
605  f->chroma_v_shift = chroma_v_shift;
606  f->transparency = transparency;
607 
608  f->plane_count = 2 + f->transparency;
609  }
610 
611  if (f->colorspace == 0) {
612  if (!f->transparency && !f->chroma_planes) {
613  if (f->avctx->bits_per_raw_sample <= 8)
614  f->avctx->pix_fmt = AV_PIX_FMT_GRAY8;
615  else if (f->avctx->bits_per_raw_sample == 9) {
616  f->packed_at_lsb = 1;
617  f->avctx->pix_fmt = AV_PIX_FMT_GRAY9;
618  } else if (f->avctx->bits_per_raw_sample == 10) {
619  f->packed_at_lsb = 1;
620  f->avctx->pix_fmt = AV_PIX_FMT_GRAY10;
621  } else if (f->avctx->bits_per_raw_sample == 12) {
622  f->packed_at_lsb = 1;
623  f->avctx->pix_fmt = AV_PIX_FMT_GRAY12;
624  } else if (f->avctx->bits_per_raw_sample == 16) {
625  f->packed_at_lsb = 1;
626  f->avctx->pix_fmt = AV_PIX_FMT_GRAY16;
627  } else if (f->avctx->bits_per_raw_sample < 16) {
628  f->avctx->pix_fmt = AV_PIX_FMT_GRAY16;
629  } else
630  return AVERROR(ENOSYS);
631  } else if (f->transparency && !f->chroma_planes) {
632  if (f->avctx->bits_per_raw_sample <= 8)
633  f->avctx->pix_fmt = AV_PIX_FMT_YA8;
634  else
635  return AVERROR(ENOSYS);
636  } else if (f->avctx->bits_per_raw_sample<=8 && !f->transparency) {
637  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
638  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P; break;
639  case 0x01: f->avctx->pix_fmt = AV_PIX_FMT_YUV440P; break;
640  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P; break;
641  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P; break;
642  case 0x20: f->avctx->pix_fmt = AV_PIX_FMT_YUV411P; break;
643  case 0x22: f->avctx->pix_fmt = AV_PIX_FMT_YUV410P; break;
644  }
645  } else if (f->avctx->bits_per_raw_sample <= 8 && f->transparency) {
646  switch(16*f->chroma_h_shift + f->chroma_v_shift) {
647  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUVA444P; break;
648  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUVA422P; break;
649  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUVA420P; break;
650  }
651  } else if (f->avctx->bits_per_raw_sample == 9 && !f->transparency) {
652  f->packed_at_lsb = 1;
653  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
654  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P9; break;
655  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P9; break;
656  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P9; break;
657  }
658  } else if (f->avctx->bits_per_raw_sample == 9 && f->transparency) {
659  f->packed_at_lsb = 1;
660  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
661  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUVA444P9; break;
662  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUVA422P9; break;
663  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUVA420P9; break;
664  }
665  } else if (f->avctx->bits_per_raw_sample == 10 && !f->transparency) {
666  f->packed_at_lsb = 1;
667  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
668  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P10; break;
669  case 0x01: f->avctx->pix_fmt = AV_PIX_FMT_YUV440P10; break;
670  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P10; break;
671  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P10; break;
672  }
673  } else if (f->avctx->bits_per_raw_sample == 10 && f->transparency) {
674  f->packed_at_lsb = 1;
675  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
676  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUVA444P10; break;
677  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUVA422P10; break;
678  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUVA420P10; break;
679  }
680  } else if (f->avctx->bits_per_raw_sample == 12 && !f->transparency) {
681  f->packed_at_lsb = 1;
682  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
683  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P12; break;
684  case 0x01: f->avctx->pix_fmt = AV_PIX_FMT_YUV440P12; break;
685  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P12; break;
686  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P12; break;
687  }
688  } else if (f->avctx->bits_per_raw_sample == 14 && !f->transparency) {
689  f->packed_at_lsb = 1;
690  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
691  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P14; break;
692  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P14; break;
693  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P14; break;
694  }
695  } else if (f->avctx->bits_per_raw_sample == 16 && !f->transparency){
696  f->packed_at_lsb = 1;
697  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
698  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P16; break;
699  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P16; break;
700  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P16; break;
701  }
702  } else if (f->avctx->bits_per_raw_sample == 16 && f->transparency){
703  f->packed_at_lsb = 1;
704  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
705  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUVA444P16; break;
706  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUVA422P16; break;
707  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUVA420P16; break;
708  }
709  }
710  } else if (f->colorspace == 1) {
711  if (f->chroma_h_shift || f->chroma_v_shift) {
712  av_log(f->avctx, AV_LOG_ERROR,
713  "chroma subsampling not supported in this colorspace\n");
714  return AVERROR(ENOSYS);
715  }
716  if ( f->avctx->bits_per_raw_sample <= 8 && !f->transparency)
717  f->avctx->pix_fmt = AV_PIX_FMT_0RGB32;
718  else if (f->avctx->bits_per_raw_sample <= 8 && f->transparency)
719  f->avctx->pix_fmt = AV_PIX_FMT_RGB32;
720  else if (f->avctx->bits_per_raw_sample == 9 && !f->transparency)
721  f->avctx->pix_fmt = AV_PIX_FMT_GBRP9;
722  else if (f->avctx->bits_per_raw_sample == 10 && !f->transparency)
723  f->avctx->pix_fmt = AV_PIX_FMT_GBRP10;
724  else if (f->avctx->bits_per_raw_sample == 10 && f->transparency)
725  f->avctx->pix_fmt = AV_PIX_FMT_GBRAP10;
726  else if (f->avctx->bits_per_raw_sample == 12 && !f->transparency)
727  f->avctx->pix_fmt = AV_PIX_FMT_GBRP12;
728  else if (f->avctx->bits_per_raw_sample == 12 && f->transparency)
729  f->avctx->pix_fmt = AV_PIX_FMT_GBRAP12;
730  else if (f->avctx->bits_per_raw_sample == 14 && !f->transparency)
731  f->avctx->pix_fmt = AV_PIX_FMT_GBRP14;
732  else if (f->avctx->bits_per_raw_sample == 16 && !f->transparency) {
733  f->avctx->pix_fmt = AV_PIX_FMT_GBRP16;
734  f->use32bit = 1;
735  }
736  else if (f->avctx->bits_per_raw_sample == 16 && f->transparency) {
737  f->avctx->pix_fmt = AV_PIX_FMT_GBRAP16;
738  f->use32bit = 1;
739  }
740  } else {
741  av_log(f->avctx, AV_LOG_ERROR, "colorspace not supported\n");
742  return AVERROR(ENOSYS);
743  }
744  if (f->avctx->pix_fmt == AV_PIX_FMT_NONE) {
745  av_log(f->avctx, AV_LOG_ERROR, "format not supported\n");
746  return AVERROR(ENOSYS);
747  }
748 
749  ff_dlog(f->avctx, "%d %d %d\n",
750  f->chroma_h_shift, f->chroma_v_shift, f->avctx->pix_fmt);
751  if (f->version < 2) {
752  context_count = read_quant_tables(c, f->quant_table);
753  if (context_count < 0) {
754  av_log(f->avctx, AV_LOG_ERROR, "read_quant_table error\n");
755  return AVERROR_INVALIDDATA;
756  }
757  f->slice_count = f->max_slice_count;
758  } else if (f->version < 3) {
759  f->slice_count = get_symbol(c, state, 0);
760  } else {
761  const uint8_t *p = c->bytestream_end;
762  for (f->slice_count = 0;
763  f->slice_count < MAX_SLICES && 3 + 5*!!f->ec < p - c->bytestream_start;
764  f->slice_count++) {
765  int trailer = 3 + 5*!!f->ec;
766  int size = AV_RB24(p-trailer);
767  if (size + trailer > p - c->bytestream_start)
768  break;
769  p -= size + trailer;
770  }
771  }
772  if (f->slice_count > (unsigned)MAX_SLICES || f->slice_count <= 0 || f->slice_count > f->max_slice_count) {
773  av_log(f->avctx, AV_LOG_ERROR, "slice count %d is invalid (max=%d)\n", f->slice_count, f->max_slice_count);
774  return AVERROR_INVALIDDATA;
775  }
776 
777  for (j = 0; j < f->slice_count; j++) {
778  FFV1Context *fs = f->slice_context[j];
779  fs->ac = f->ac;
780  fs->packed_at_lsb = f->packed_at_lsb;
781 
782  fs->slice_damaged = 0;
783 
784  if (f->version == 2) {
785  int sx = get_symbol(c, state, 0);
786  int sy = get_symbol(c, state, 0);
787  int sw = get_symbol(c, state, 0) + 1U;
788  int sh = get_symbol(c, state, 0) + 1U;
789 
790  if (sx < 0 || sy < 0 || sw <= 0 || sh <= 0)
791  return AVERROR_INVALIDDATA;
792  if (sx > f->num_h_slices - sw || sy > f->num_v_slices - sh)
793  return AVERROR_INVALIDDATA;
794 
795  fs->slice_x = sx * (int64_t)f->width / f->num_h_slices;
796  fs->slice_y = sy * (int64_t)f->height / f->num_v_slices;
797  fs->slice_width = (sx + sw) * (int64_t)f->width / f->num_h_slices - fs->slice_x;
798  fs->slice_height = (sy + sh) * (int64_t)f->height / f->num_v_slices - fs->slice_y;
799 
800  av_assert0((unsigned)fs->slice_width <= f->width &&
801  (unsigned)fs->slice_height <= f->height);
802  av_assert0 ( (unsigned)fs->slice_x + (uint64_t)fs->slice_width <= f->width
803  && (unsigned)fs->slice_y + (uint64_t)fs->slice_height <= f->height);
804  }
805 
806  for (i = 0; i < f->plane_count; i++) {
807  PlaneContext *const p = &fs->plane[i];
808 
809  if (f->version == 2) {
810  int idx = get_symbol(c, state, 0);
811  if (idx >= (unsigned)f->quant_table_count) {
812  av_log(f->avctx, AV_LOG_ERROR,
813  "quant_table_index out of range\n");
814  return AVERROR_INVALIDDATA;
815  }
816  p->quant_table_index = idx;
817  memcpy(p->quant_table, f->quant_tables[idx],
818  sizeof(p->quant_table));
819  context_count = f->context_count[idx];
820  } else {
821  memcpy(p->quant_table, f->quant_table, sizeof(p->quant_table));
822  }
823 
824  if (f->version <= 2) {
825  av_assert0(context_count >= 0);
826  if (p->context_count < context_count) {
827  av_freep(&p->state);
828  av_freep(&p->vlc_state);
829  }
830  p->context_count = context_count;
831  }
832  }
833  }
834  return 0;
835 }
836 
838 {
839  FFV1Context *f = avctx->priv_data;
840  int ret;
841 
842  if ((ret = ff_ffv1_common_init(avctx)) < 0)
843  return ret;
844 
845  if (avctx->extradata_size > 0 && (ret = read_extra_header(f)) < 0)
846  return ret;
847 
848  if ((ret = ff_ffv1_init_slice_contexts(f)) < 0)
849  return ret;
850 
851  return 0;
852 }
853 
854 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
855 {
856  uint8_t *buf = avpkt->data;
857  int buf_size = avpkt->size;
858  FFV1Context *f = avctx->priv_data;
859  RangeCoder *const c = &f->slice_context[0]->c;
860  int i, ret;
861  uint8_t keystate = 128;
862  uint8_t *buf_p;
863  AVFrame *p;
864 
865  if (f->last_picture.f)
866  ff_thread_release_buffer(avctx, &f->last_picture);
867  FFSWAP(ThreadFrame, f->picture, f->last_picture);
868 
869  f->cur = p = f->picture.f;
870 
871  if (f->version < 3 && avctx->field_order > AV_FIELD_PROGRESSIVE) {
872  /* we have interlaced material flagged in container */
873  p->interlaced_frame = 1;
874  if (avctx->field_order == AV_FIELD_TT || avctx->field_order == AV_FIELD_TB)
875  p->top_field_first = 1;
876  }
877 
878  f->avctx = avctx;
879  ff_init_range_decoder(c, buf, buf_size);
880  ff_build_rac_states(c, 0.05 * (1LL << 32), 256 - 8);
881 
882  p->pict_type = AV_PICTURE_TYPE_I; //FIXME I vs. P
883  if (get_rac(c, &keystate)) {
884  p->key_frame = 1;
885  f->key_frame_ok = 0;
886  if ((ret = read_header(f)) < 0)
887  return ret;
888  f->key_frame_ok = 1;
889  } else {
890  if (!f->key_frame_ok) {
891  av_log(avctx, AV_LOG_ERROR,
892  "Cannot decode non-keyframe without valid keyframe\n");
893  return AVERROR_INVALIDDATA;
894  }
895  p->key_frame = 0;
896  }
897 
898  if ((ret = ff_thread_get_buffer(avctx, &f->picture, AV_GET_BUFFER_FLAG_REF)) < 0)
899  return ret;
900 
901  if (avctx->debug & FF_DEBUG_PICT_INFO)
902  av_log(avctx, AV_LOG_DEBUG, "ver:%d keyframe:%d coder:%d ec:%d slices:%d bps:%d\n",
903  f->version, p->key_frame, f->ac, f->ec, f->slice_count, f->avctx->bits_per_raw_sample);
904 
905  ff_thread_finish_setup(avctx);
906 
907  buf_p = buf + buf_size;
908  for (i = f->slice_count - 1; i >= 0; i--) {
909  FFV1Context *fs = f->slice_context[i];
910  int trailer = 3 + 5*!!f->ec;
911  int v;
912 
913  if (i || f->version > 2) {
914  if (trailer > buf_p - buf) v = INT_MAX;
915  else v = AV_RB24(buf_p-trailer) + trailer;
916  } else v = buf_p - c->bytestream_start;
917  if (buf_p - c->bytestream_start < v) {
918  av_log(avctx, AV_LOG_ERROR, "Slice pointer chain broken\n");
919  ff_thread_report_progress(&f->picture, INT_MAX, 0);
920  return AVERROR_INVALIDDATA;
921  }
922  buf_p -= v;
923 
924  if (f->ec) {
925  unsigned crc = av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, buf_p, v);
926  if (crc) {
927  int64_t ts = avpkt->pts != AV_NOPTS_VALUE ? avpkt->pts : avpkt->dts;
928  av_log(f->avctx, AV_LOG_ERROR, "slice CRC mismatch %X!", crc);
929  if (ts != AV_NOPTS_VALUE && avctx->pkt_timebase.num) {
930  av_log(f->avctx, AV_LOG_ERROR, "at %f seconds\n", ts*av_q2d(avctx->pkt_timebase));
931  } else if (ts != AV_NOPTS_VALUE) {
932  av_log(f->avctx, AV_LOG_ERROR, "at %"PRId64"\n", ts);
933  } else {
934  av_log(f->avctx, AV_LOG_ERROR, "\n");
935  }
936  fs->slice_damaged = 1;
937  }
938  if (avctx->debug & FF_DEBUG_PICT_INFO) {
939  av_log(avctx, AV_LOG_DEBUG, "slice %d, CRC: 0x%08"PRIX32"\n", i, AV_RB32(buf_p + v - 4));
940  }
941  }
942 
943  if (i) {
944  ff_init_range_decoder(&fs->c, buf_p, v);
945  } else
946  fs->c.bytestream_end = buf_p + v;
947 
948  fs->avctx = avctx;
949  fs->cur = p;
950  }
951 
952  avctx->execute(avctx,
953  decode_slice,
954  &f->slice_context[0],
955  NULL,
956  f->slice_count,
957  sizeof(void*));
958 
959  for (i = f->slice_count - 1; i >= 0; i--) {
960  FFV1Context *fs = f->slice_context[i];
961  int j;
962  if (fs->slice_damaged && f->last_picture.f->data[0]) {
964  const uint8_t *src[4];
965  uint8_t *dst[4];
966  ff_thread_await_progress(&f->last_picture, INT_MAX, 0);
967  for (j = 0; j < desc->nb_components; j++) {
968  int pixshift = desc->comp[j].depth > 8;
969  int sh = (j == 1 || j == 2) ? f->chroma_h_shift : 0;
970  int sv = (j == 1 || j == 2) ? f->chroma_v_shift : 0;
971  dst[j] = p->data[j] + p->linesize[j] *
972  (fs->slice_y >> sv) + ((fs->slice_x >> sh) << pixshift);
973  src[j] = f->last_picture.f->data[j] + f->last_picture.f->linesize[j] *
974  (fs->slice_y >> sv) + ((fs->slice_x >> sh) << pixshift);
975 
976  }
977  if (desc->flags & AV_PIX_FMT_FLAG_PAL ||
978  desc->flags & FF_PSEUDOPAL) {
979  dst[1] = p->data[1];
980  src[1] = f->last_picture.f->data[1];
981  }
982  av_image_copy(dst, p->linesize, src,
983  f->last_picture.f->linesize,
984  avctx->pix_fmt,
985  fs->slice_width,
986  fs->slice_height);
987  }
988  }
989  ff_thread_report_progress(&f->picture, INT_MAX, 0);
990 
991  f->picture_number++;
992 
993  if (f->last_picture.f)
994  ff_thread_release_buffer(avctx, &f->last_picture);
995  f->cur = NULL;
996  if ((ret = av_frame_ref(data, f->picture.f)) < 0)
997  return ret;
998 
999  *got_frame = 1;
1000 
1001  return buf_size;
1002 }
1003 
1004 static void copy_fields(FFV1Context *fsdst, FFV1Context *fssrc, FFV1Context *fsrc)
1005 {
1006  fsdst->version = fsrc->version;
1007  fsdst->micro_version = fsrc->micro_version;
1008  fsdst->chroma_planes = fsrc->chroma_planes;
1009  fsdst->chroma_h_shift = fsrc->chroma_h_shift;
1010  fsdst->chroma_v_shift = fsrc->chroma_v_shift;
1011  fsdst->transparency = fsrc->transparency;
1012  fsdst->plane_count = fsrc->plane_count;
1013  fsdst->ac = fsrc->ac;
1014  fsdst->colorspace = fsrc->colorspace;
1015 
1016  fsdst->ec = fsrc->ec;
1017  fsdst->intra = fsrc->intra;
1018  fsdst->slice_damaged = fssrc->slice_damaged;
1019  fsdst->key_frame_ok = fsrc->key_frame_ok;
1020 
1022  fsdst->packed_at_lsb = fsrc->packed_at_lsb;
1023  fsdst->slice_count = fsrc->slice_count;
1024  if (fsrc->version<3){
1025  fsdst->slice_x = fssrc->slice_x;
1026  fsdst->slice_y = fssrc->slice_y;
1027  fsdst->slice_width = fssrc->slice_width;
1028  fsdst->slice_height = fssrc->slice_height;
1029  }
1030 }
1031 
1032 #if HAVE_THREADS
1033 static int update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
1034 {
1035  FFV1Context *fsrc = src->priv_data;
1036  FFV1Context *fdst = dst->priv_data;
1037  int i, ret;
1038 
1039  if (dst == src)
1040  return 0;
1041 
1042  {
1043  ThreadFrame picture = fdst->picture, last_picture = fdst->last_picture;
1044  uint8_t (*initial_states[MAX_QUANT_TABLES])[32];
1046  memcpy(initial_states, fdst->initial_states, sizeof(fdst->initial_states));
1047  memcpy(slice_context, fdst->slice_context , sizeof(fdst->slice_context));
1048 
1049  memcpy(fdst, fsrc, sizeof(*fdst));
1050  memcpy(fdst->initial_states, initial_states, sizeof(fdst->initial_states));
1051  memcpy(fdst->slice_context, slice_context , sizeof(fdst->slice_context));
1052  fdst->picture = picture;
1053  fdst->last_picture = last_picture;
1054  for (i = 0; i<fdst->num_h_slices * fdst->num_v_slices; i++) {
1055  FFV1Context *fssrc = fsrc->slice_context[i];
1056  FFV1Context *fsdst = fdst->slice_context[i];
1057  copy_fields(fsdst, fssrc, fsrc);
1058  }
1059  av_assert0(!fdst->plane[0].state);
1060  av_assert0(!fdst->sample_buffer);
1061  }
1062 
1064 
1065 
1066  ff_thread_release_buffer(dst, &fdst->picture);
1067  if (fsrc->picture.f->data[0]) {
1068  if ((ret = ff_thread_ref_frame(&fdst->picture, &fsrc->picture)) < 0)
1069  return ret;
1070  }
1071 
1072  fdst->fsrc = fsrc;
1073 
1074  return 0;
1075 }
1076 #endif
1077 
1079  .name = "ffv1",
1080  .long_name = NULL_IF_CONFIG_SMALL("FFmpeg video codec #1"),
1081  .type = AVMEDIA_TYPE_VIDEO,
1082  .id = AV_CODEC_ID_FFV1,
1083  .priv_data_size = sizeof(FFV1Context),
1084  .init = decode_init,
1085  .close = ff_ffv1_close,
1086  .decode = decode_frame,
1087  .update_thread_context = ONLY_IF_THREADS_ENABLED(update_thread_context),
1088  .capabilities = AV_CODEC_CAP_DR1 /*| AV_CODEC_CAP_DRAW_HORIZ_BAND*/ |
1091 };
#define av_noinline
Definition: attributes.h:68
#define av_flatten
Definition: attributes.h:94
#define av_cold
Definition: attributes.h:88
uint8_t
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition: avassert.h:53
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
Libavcodec external API header.
#define FF_DEBUG_PICT_INFO
Definition: avcodec.h:1628
#define AV_RB24
Definition: intreadwrite.h:64
#define AV_RB32
Definition: intreadwrite.h:130
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:31
#define s(width, name)
Definition: cbs_vp9.c:257
#define f(width, name)
Definition: cbs_vp9.c:255
#define fs(width, name, subs,...)
Definition: cbs_vp9.c:259
static struct @321 state
@ AV_FIELD_TT
Definition: codec_par.h:39
@ AV_FIELD_PROGRESSIVE
Definition: codec_par.h:38
@ AV_FIELD_TB
Definition: codec_par.h:41
#define FFSWAP(type, a, b)
Definition: common.h:108
#define FFMIN(a, b)
Definition: common.h:105
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
#define NULL
Definition: coverity.c:32
long long int64_t
Definition: coverity.c:34
Public header for CRC hash function implementation.
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:71
#define MAX_SLICES
Definition: dxva2_hevc.c:29
av_cold int ff_ffv1_common_init(AVCodecContext *avctx)
Definition: ffv1.c:41
av_cold int ff_ffv1_close(AVCodecContext *avctx)
Definition: ffv1.c:208
int ff_ffv1_allocate_initial_states(FFV1Context *f)
Definition: ffv1.c:165
av_cold int ff_ffv1_init_slice_contexts(FFV1Context *f)
Definition: ffv1.c:123
av_cold int ff_ffv1_init_slice_state(FFV1Context *f, FFV1Context *fs)
Definition: ffv1.c:66
void ff_ffv1_clear_slice_state(FFV1Context *f, FFV1Context *fs)
Definition: ffv1.c:180
FF Video Codec 1 (a lossless codec)
#define CONTEXT_SIZE
Definition: ffv1.h:50
static void update_vlc_state(VlcState *const state, const int v)
Definition: ffv1.h:162
#define AC_GOLOMB_RICE
Definition: ffv1.h:55
#define AC_RANGE_CUSTOM_TAB
Definition: ffv1.h:57
#define MAX_QUANT_TABLES
Definition: ffv1.h:52
static av_always_inline int fold(int diff, int bits)
Definition: ffv1.h:151
#define MAX_CONTEXT_INPUTS
Definition: ffv1.h:53
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:545
static void copy_fields(FFV1Context *fsdst, FFV1Context *fssrc, FFV1Context *fsrc)
Definition: ffv1dec.c:1004
AVCodec ff_ffv1_decoder
Definition: ffv1dec.c:1078
static int read_quant_tables(RangeCoder *c, int16_t quant_table[MAX_CONTEXT_INPUTS][256])
Definition: ffv1dec.c:405
static int read_extra_header(FFV1Context *f)
Definition: ffv1dec.c:423
static int read_quant_table(RangeCoder *c, int16_t *quant_table, int scale)
Definition: ffv1dec.c:378
static int get_vlc_symbol(GetBitContext *gb, VlcState *const state, int bits)
Definition: ffv1dec.c:70
static av_noinline int get_symbol(RangeCoder *c, uint8_t *state, int is_signed)
Definition: ffv1dec.c:65
static int decode_plane(FFV1Context *s, uint8_t *src, int w, int h, int stride, int plane_index, int pixel_stride)
Definition: ffv1dec.c:118
static av_cold int decode_init(AVCodecContext *avctx)
Definition: ffv1dec.c:837
static int decode_slice(AVCodecContext *c, void *arg)
Definition: ffv1dec.c:253
static int decode_slice_header(FFV1Context *f, FFV1Context *fs)
Definition: ffv1dec.c:164
static av_flatten int get_symbol_inline(RangeCoder *c, uint8_t *state, int is_signed)
Definition: ffv1dec.c:41
static int is_input_end(FFV1Context *s)
Definition: ffv1dec.c:95
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: ffv1dec.c:854
static av_always_inline int RENAME() decode_line(FFV1Context *s, int w, TYPE *sample[2], int plane_index, int bits)
static int RENAME() decode_rgb_frame(FFV1Context *s, uint8_t *src[4], int w, int h, int stride[4])
#define sample
bitstream reader API header.
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:849
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:659
exp golomb vlc stuff
static int get_sr_golomb(GetBitContext *gb, int k, int limit, int esc_len)
read signed golomb rice code (ffv1).
Definition: golomb.h:534
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
Definition: avcodec.h:514
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: codec.h:112
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: codec.h:108
@ AV_CODEC_ID_FFV1
Definition: codec_id.h:82
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
Definition: crc.c:374
uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length)
Calculate the CRC of a block.
Definition: crc.c:392
@ AV_CRC_32_IEEE
Definition: crc.h:53
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
#define AVERROR(e)
Definition: error.h:43
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition: frame.c:443
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:215
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:200
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:194
static double av_q2d(AVRational a)
Convert an AVRational to a double.
Definition: rational.h:104
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4], const uint8_t *src_data[4], const int src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height)
Copy image in src_data to dst_data.
Definition: imgutils.c:422
int av_image_check_sar(unsigned int w, unsigned int h, AVRational sar)
Check if the given sample aspect ratio of an image is valid.
Definition: imgutils.c:322
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:274
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
misc image utilities
int i
Definition: input.c:407
static const int16_t quant_table[64]
Definition: intrax8.c:522
#define MAX_OVERREAD
Definition: lagarithrac.h:51
#define FF_CODEC_CAP_ALLOCATE_PROGRESS
Definition: internal.h:76
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: internal.h:49
const char * arg
Definition: jacosubdec.c:66
int ff_thread_ref_frame(ThreadFrame *dst, const ThreadFrame *src)
Definition: utils.c:943
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
#define FF_PSEUDOPAL
Definition: internal.h:299
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
Definition: internal.h:156
#define emms_c()
Definition: internal.h:54
const char * desc
Definition: libsvtav1.c:79
uint8_t w
Definition: llviddspenc.c:39
static const struct @322 planes[]
int stride
Definition: mace.c:144
const char data[16]
Definition: mxf.c:142
AVOptions.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2573
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition: pixdesc.h:132
#define AV_PIX_FMT_0RGB32
Definition: pixfmt.h:376
#define AV_PIX_FMT_GBRAP12
Definition: pixfmt.h:420
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:410
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:406
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:398
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:399
#define AV_PIX_FMT_YUV440P12
Definition: pixfmt.h:405
#define AV_PIX_FMT_GRAY9
Definition: pixfmt.h:379
#define AV_PIX_FMT_GBRAP16
Definition: pixfmt.h:421
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:414
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:397
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:438
#define AV_PIX_FMT_YUVA420P16
Definition: pixfmt.h:441
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:403
#define AV_PIX_FMT_YUVA420P10
Definition: pixfmt.h:436
#define AV_PIX_FMT_YUVA422P9
Definition: pixfmt.h:434
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:404
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:415
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:400
#define AV_PIX_FMT_GRAY12
Definition: pixfmt.h:381
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:416
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:396
#define AV_PIX_FMT_YUVA420P9
Definition: pixfmt.h:433
#define AV_PIX_FMT_YUVA422P10
Definition: pixfmt.h:437
#define AV_PIX_FMT_YUV420P14
Definition: pixfmt.h:407
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:66
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:99
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:70
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition: pixfmt.h:74
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:101
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:72
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:73
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:71
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:177
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:176
@ AV_PIX_FMT_YA8
8 bits gray, 8 bits alpha
Definition: pixfmt.h:143
#define AV_PIX_FMT_YUV422P14
Definition: pixfmt.h:408
#define AV_PIX_FMT_GRAY10
Definition: pixfmt.h:380
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:411
#define AV_PIX_FMT_YUV440P10
Definition: pixfmt.h:401
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:383
#define AV_PIX_FMT_GBRAP10
Definition: pixfmt.h:419
#define AV_PIX_FMT_YUVA444P16
Definition: pixfmt.h:443
#define AV_PIX_FMT_YUVA422P16
Definition: pixfmt.h:442
#define AV_PIX_FMT_GBRP16
Definition: pixfmt.h:418
#define AV_PIX_FMT_YUV444P14
Definition: pixfmt.h:409
#define AV_PIX_FMT_YUVA444P9
Definition: pixfmt.h:435
#define AV_PIX_FMT_GBRP14
Definition: pixfmt.h:417
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:412
#define AV_PIX_FMT_RGB32
Definition: pixfmt.h:372
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:402
void ff_thread_report_progress(ThreadFrame *f, int n, int field)
Notify later decoding threads when part of their reference picture is ready.
FF_ENABLE_DEPRECATION_WARNINGS int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
void ff_thread_await_progress(ThreadFrame *f, int n, int field)
Wait for earlier decoding threads to finish reference pictures.
void ff_thread_finish_setup(AVCodecContext *avctx)
If the codec defines update_thread_context(), call this when they are ready for the next thread to st...
void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
Wrapper around release_buffer() frame-for multithreaded codecs.
av_cold void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf, int buf_size)
Definition: rangecoder.c:53
void ff_build_rac_states(RangeCoder *c, int factor, int max_p)
Definition: rangecoder.c:68
Range coder.
static int get_rac(RangeCoder *c, uint8_t *const state)
Definition: rangecoder.h:126
static const float pred[4]
Definition: siprdata.h:259
main external API structure.
Definition: avcodec.h:536
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:746
int debug
debug
Definition: avcodec.h:1627
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are.
Definition: avcodec.h:2089
enum AVFieldOrder field_order
Field order.
Definition: avcodec.h:1193
int(* execute)(struct AVCodecContext *c, int(*func)(struct AVCodecContext *c2, void *arg), void *arg2, int *ret, int count, int size)
The codec may call this to execute several independent things.
Definition: avcodec.h:1828
int extradata_size
Definition: avcodec.h:638
void * priv_data
Definition: avcodec.h:563
AVCodec.
Definition: codec.h:197
const char * name
Name of the codec implementation.
Definition: codec.h:204
int step
Number of elements between 2 horizontally consecutive pixels.
Definition: pixdesc.h:41
This structure describes decoded (raw) audio or video data.
Definition: frame.h:318
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:332
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:396
int top_field_first
If the content is interlaced, is top field displayed first.
Definition: frame.h:470
int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:465
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:349
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:401
This structure stores compressed data.
Definition: packet.h:346
int size
Definition: packet.h:370
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:362
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Definition: packet.h:368
uint8_t * data
Definition: packet.h:369
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:117
Rational number (pair of numerator and denominator).
Definition: rational.h:58
int num
Numerator.
Definition: rational.h:59
int ac
1=range coder <-> 0=golomb rice
Definition: ffv1.h:100
int colorspace
Definition: ffv1.h:109
ThreadFrame picture
Definition: ffv1.h:95
int version
Definition: ffv1.h:86
int transparency
Definition: ffv1.h:91
int slice_damaged
Definition: ffv1.h:117
int num_v_slices
Definition: ffv1.h:130
int max_slice_count
Definition: ffv1.h:129
struct FFV1Context * fsrc
Definition: ffv1.h:96
int chroma_planes
Definition: ffv1.h:89
int num_h_slices
Definition: ffv1.h:131
int plane_count
Definition: ffv1.h:99
PlaneContext plane[MAX_PLANES]
Definition: ffv1.h:102
int slice_count
Definition: ffv1.h:128
int micro_version
Definition: ffv1.h:87
int bits_per_raw_sample
Definition: ffv1.h:121
ThreadFrame last_picture
Definition: ffv1.h:95
int16_t * sample_buffer
Definition: ffv1.h:110
struct FFV1Context * slice_context[MAX_SLICES]
Definition: ffv1.h:127
int chroma_h_shift
Definition: ffv1.h:90
int key_frame_ok
Definition: ffv1.h:118
int slice_x
Definition: ffv1.h:134
int packed_at_lsb
Definition: ffv1.h:122
int slice_height
Definition: ffv1.h:133
int chroma_v_shift
Definition: ffv1.h:90
int ec
Definition: ffv1.h:115
int slice_y
Definition: ffv1.h:135
int intra
Definition: ffv1.h:116
int slice_width
Definition: ffv1.h:132
uint8_t(*[MAX_QUANT_TABLES] initial_states)[32]
Definition: ffv1.h:107
VlcState * vlc_state
Definition: ffv1.h:72
int16_t quant_table[MAX_CONTEXT_INPUTS][256]
Definition: ffv1.h:68
int quant_table_index
Definition: ffv1.h:69
int context_count
Definition: ffv1.h:70
uint8_t(* state)[CONTEXT_SIZE]
Definition: ffv1.h:71
AVFrame * f
Definition: thread.h:35
Definition: ffv1.h:60
#define av_free(p)
#define av_malloc_array(a, b)
#define ff_dlog(a,...)
#define av_freep(p)
#define av_log(a,...)
#define src
Definition: vp8dsp.c:255
enum AVPictureType last_picture
Definition: movenc.c:69
#define height
#define width
int size
else temp
Definition: vf_mcdeint.c:259
int len
uint8_t bits
Definition: vp3data.h:141
static double c[64]