FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ffv1dec.c
Go to the documentation of this file.
1 /*
2  * FFV1 decoder
3  *
4  * Copyright (c) 2003-2012 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 "libavutil/timer.h"
34 #include "avcodec.h"
35 #include "internal.h"
36 #include "get_bits.h"
37 #include "rangecoder.h"
38 #include "golomb.h"
39 #include "mathops.h"
40 #include "ffv1.h"
41 
43  int is_signed)
44 {
45  if (get_rac(c, state + 0))
46  return 0;
47  else {
48  int i, e, a;
49  e = 0;
50  while (get_rac(c, state + 1 + FFMIN(e, 9))) // 1..10
51  e++;
52 
53  a = 1;
54  for (i = e - 1; i >= 0; i--)
55  a += a + get_rac(c, state + 22 + FFMIN(i, 9)); // 22..31
56 
57  e = -(is_signed && get_rac(c, state + 11 + FFMIN(e, 10))); // 11..21
58  return (a ^ e) - e;
59  }
60 }
61 
62 static av_noinline int get_symbol(RangeCoder *c, uint8_t *state, int is_signed)
63 {
64  return get_symbol_inline(c, state, is_signed);
65 }
66 
67 static inline int get_vlc_symbol(GetBitContext *gb, VlcState *const state,
68  int bits)
69 {
70  int k, i, v, ret;
71 
72  i = state->count;
73  k = 0;
74  while (i < state->error_sum) { // FIXME: optimize
75  k++;
76  i += i;
77  }
78 
79  v = get_sr_golomb(gb, k, 12, bits);
80  av_dlog(NULL, "v:%d bias:%d error:%d drift:%d count:%d k:%d",
81  v, state->bias, state->error_sum, state->drift, state->count, k);
82 
83 #if 0 // JPEG LS
84  if (k == 0 && 2 * state->drift <= -state->count)
85  v ^= (-1);
86 #else
87  v ^= ((2 * state->drift + state->count) >> 31);
88 #endif
89 
90  ret = fold(v + state->bias, bits);
91 
92  update_vlc_state(state, v);
93 
94  return ret;
95 }
96 
98  int16_t *sample[2],
99  int plane_index, int bits)
100 {
101  PlaneContext *const p = &s->plane[plane_index];
102  RangeCoder *const c = &s->c;
103  int x;
104  int run_count = 0;
105  int run_mode = 0;
106  int run_index = s->run_index;
107 
108  for (x = 0; x < w; x++) {
109  int diff, context, sign;
110 
111  context = get_context(p, sample[1] + x, sample[0] + x, sample[1] + x);
112  if (context < 0) {
113  context = -context;
114  sign = 1;
115  } else
116  sign = 0;
117 
118  av_assert2(context < p->context_count);
119 
120  if (s->ac) {
121  diff = get_symbol_inline(c, p->state[context], 1);
122  } else {
123  if (context == 0 && run_mode == 0)
124  run_mode = 1;
125 
126  if (run_mode) {
127  if (run_count == 0 && run_mode == 1) {
128  if (get_bits1(&s->gb)) {
129  run_count = 1 << ff_log2_run[run_index];
130  if (x + run_count <= w)
131  run_index++;
132  } else {
133  if (ff_log2_run[run_index])
134  run_count = get_bits(&s->gb, ff_log2_run[run_index]);
135  else
136  run_count = 0;
137  if (run_index)
138  run_index--;
139  run_mode = 2;
140  }
141  }
142  run_count--;
143  if (run_count < 0) {
144  run_mode = 0;
145  run_count = 0;
146  diff = get_vlc_symbol(&s->gb, &p->vlc_state[context],
147  bits);
148  if (diff >= 0)
149  diff++;
150  } else
151  diff = 0;
152  } else
153  diff = get_vlc_symbol(&s->gb, &p->vlc_state[context], bits);
154 
155  av_dlog(s->avctx, "count:%d index:%d, mode:%d, x:%d pos:%d\n",
156  run_count, run_index, run_mode, x, get_bits_count(&s->gb));
157  }
158 
159  if (sign)
160  diff = -diff;
161 
162  sample[1][x] = (predict(sample[1] + x, sample[0] + x) + diff) &
163  ((1 << bits) - 1);
164  }
165  s->run_index = run_index;
166 }
167 
169  int w, int h, int stride, int plane_index)
170 {
171  int x, y;
172  int16_t *sample[2];
173  sample[0] = s->sample_buffer + 3;
174  sample[1] = s->sample_buffer + w + 6 + 3;
175 
176  s->run_index = 0;
177 
178  memset(s->sample_buffer, 0, 2 * (w + 6) * sizeof(*s->sample_buffer));
179 
180  for (y = 0; y < h; y++) {
181  int16_t *temp = sample[0]; // FIXME: try a normal buffer
182 
183  sample[0] = sample[1];
184  sample[1] = temp;
185 
186  sample[1][-1] = sample[0][0];
187  sample[0][w] = sample[0][w - 1];
188 
189 // { START_TIMER
190  if (s->avctx->bits_per_raw_sample <= 8) {
191  decode_line(s, w, sample, plane_index, 8);
192  for (x = 0; x < w; x++)
193  src[x + stride * y] = sample[1][x];
194  } else {
195  decode_line(s, w, sample, plane_index, s->avctx->bits_per_raw_sample);
196  if (s->packed_at_lsb) {
197  for (x = 0; x < w; x++) {
198  ((uint16_t*)(src + stride*y))[x] = sample[1][x];
199  }
200  } else {
201  for (x = 0; x < w; x++) {
202  ((uint16_t*)(src + stride*y))[x] = sample[1][x] << (16 - s->avctx->bits_per_raw_sample);
203  }
204  }
205  }
206 // STOP_TIMER("decode-line") }
207  }
208 }
209 
210 static void decode_rgb_frame(FFV1Context *s, uint8_t *src[3], int w, int h, int stride[3])
211 {
212  int x, y, p;
213  int16_t *sample[4][2];
214  int lbd = s->avctx->bits_per_raw_sample <= 8;
215  int bits = s->avctx->bits_per_raw_sample > 0 ? s->avctx->bits_per_raw_sample : 8;
216  int offset = 1 << bits;
217 
218  for (x = 0; x < 4; x++) {
219  sample[x][0] = s->sample_buffer + x * 2 * (w + 6) + 3;
220  sample[x][1] = s->sample_buffer + (x * 2 + 1) * (w + 6) + 3;
221  }
222 
223  s->run_index = 0;
224 
225  memset(s->sample_buffer, 0, 8 * (w + 6) * sizeof(*s->sample_buffer));
226 
227  for (y = 0; y < h; y++) {
228  for (p = 0; p < 3 + s->transparency; p++) {
229  int16_t *temp = sample[p][0]; // FIXME: try a normal buffer
230 
231  sample[p][0] = sample[p][1];
232  sample[p][1] = temp;
233 
234  sample[p][1][-1]= sample[p][0][0 ];
235  sample[p][0][ w]= sample[p][0][w-1];
236  if (lbd)
237  decode_line(s, w, sample[p], (p + 1)/2, 9);
238  else
239  decode_line(s, w, sample[p], (p + 1)/2, bits + 1);
240  }
241  for (x = 0; x < w; x++) {
242  int g = sample[0][1][x];
243  int b = sample[1][1][x];
244  int r = sample[2][1][x];
245  int a = sample[3][1][x];
246 
247  b -= offset;
248  r -= offset;
249  g -= (b + r) >> 2;
250  b += g;
251  r += g;
252 
253  if (lbd)
254  *((uint32_t*)(src[0] + x*4 + stride[0]*y)) = b + (g<<8) + (r<<16) + (a<<24);
255  else {
256  *((uint16_t*)(src[0] + x*2 + stride[0]*y)) = b;
257  *((uint16_t*)(src[1] + x*2 + stride[1]*y)) = g;
258  *((uint16_t*)(src[2] + x*2 + stride[2]*y)) = r;
259  }
260  }
261  }
262 }
263 
265 {
266  RangeCoder *c = &fs->c;
268  unsigned ps, i, context_count;
269  memset(state, 128, sizeof(state));
270 
271  av_assert0(f->version > 2);
272 
273  fs->slice_x = get_symbol(c, state, 0) * f->width ;
274  fs->slice_y = get_symbol(c, state, 0) * f->height;
275  fs->slice_width = (get_symbol(c, state, 0) + 1) * f->width + fs->slice_x;
276  fs->slice_height = (get_symbol(c, state, 0) + 1) * f->height + fs->slice_y;
277 
278  fs->slice_x /= f->num_h_slices;
279  fs->slice_y /= f->num_v_slices;
280  fs->slice_width = fs->slice_width /f->num_h_slices - fs->slice_x;
281  fs->slice_height = fs->slice_height/f->num_v_slices - fs->slice_y;
282  if ((unsigned)fs->slice_width > f->width || (unsigned)fs->slice_height > f->height)
283  return -1;
284  if ( (unsigned)fs->slice_x + (uint64_t)fs->slice_width > f->width
285  || (unsigned)fs->slice_y + (uint64_t)fs->slice_height > f->height)
286  return -1;
287 
288  for (i = 0; i < f->plane_count; i++) {
289  PlaneContext * const p = &fs->plane[i];
290  int idx = get_symbol(c, state, 0);
291  if (idx > (unsigned)f->quant_table_count) {
292  av_log(f->avctx, AV_LOG_ERROR, "quant_table_index out of range\n");
293  return -1;
294  }
295  p->quant_table_index = idx;
296  memcpy(p->quant_table, f->quant_tables[idx], sizeof(p->quant_table));
297  context_count = f->context_count[idx];
298 
299  if (p->context_count < context_count) {
300  av_freep(&p->state);
301  av_freep(&p->vlc_state);
302  }
304  }
305 
306  ps = get_symbol(c, state, 0);
307  if (ps == 1) {
308  f->cur->interlaced_frame = 1;
309  f->cur->top_field_first = 1;
310  } else if (ps == 2) {
311  f->cur->interlaced_frame = 1;
312  f->cur->top_field_first = 0;
313  } else if (ps == 3) {
314  f->cur->interlaced_frame = 0;
315  }
316  f->cur->sample_aspect_ratio.num = get_symbol(c, state, 0);
317  f->cur->sample_aspect_ratio.den = get_symbol(c, state, 0);
318 
319  return 0;
320 }
321 
322 static int decode_slice(AVCodecContext *c, void *arg)
323 {
324  FFV1Context *fs = *(void **)arg;
325  FFV1Context *f = fs->avctx->priv_data;
326  int width, height, x, y, ret;
327  const int ps = av_pix_fmt_desc_get(c->pix_fmt)->comp[0].step_minus1 + 1;
328  AVFrame * const p = f->cur;
329  int i, si;
330 
331  for( si=0; fs != f->slice_context[si]; si ++)
332  ;
333 
334  if(f->fsrc && !p->key_frame)
336 
337  if(f->fsrc && !p->key_frame) {
338  FFV1Context *fssrc = f->fsrc->slice_context[si];
339  FFV1Context *fsdst = f->slice_context[si];
340  av_assert1(fsdst->plane_count == fssrc->plane_count);
341  av_assert1(fsdst == fs);
342 
343  if (!p->key_frame)
344  fsdst->slice_damaged |= fssrc->slice_damaged;
345 
346  for (i = 0; i < f->plane_count; i++) {
347  PlaneContext *psrc = &fssrc->plane[i];
348  PlaneContext *pdst = &fsdst->plane[i];
349 
350  av_free(pdst->state);
351  av_free(pdst->vlc_state);
352  memcpy(pdst, psrc, sizeof(*pdst));
353  pdst->state = NULL;
354  pdst->vlc_state = NULL;
355 
356  if (fssrc->ac) {
357  pdst->state = av_malloc(CONTEXT_SIZE * psrc->context_count);
358  memcpy(pdst->state, psrc->state, CONTEXT_SIZE * psrc->context_count);
359  } else {
360  pdst->vlc_state = av_malloc(sizeof(*pdst->vlc_state) * psrc->context_count);
361  memcpy(pdst->vlc_state, psrc->vlc_state, sizeof(*pdst->vlc_state) * psrc->context_count);
362  }
363  }
364  }
365 
366  if (f->version > 2) {
367  if (ffv1_init_slice_state(f, fs) < 0)
368  return AVERROR(ENOMEM);
369  if (decode_slice_header(f, fs) < 0) {
370  fs->slice_damaged = 1;
371  return AVERROR_INVALIDDATA;
372  }
373  }
374  if ((ret = ffv1_init_slice_state(f, fs)) < 0)
375  return ret;
376  if (f->cur->key_frame)
377  ffv1_clear_slice_state(f, fs);
378 
379  width = fs->slice_width;
380  height = fs->slice_height;
381  x = fs->slice_x;
382  y = fs->slice_y;
383 
384  if (!fs->ac) {
385  if (f->version == 3 && f->minor_version > 1 || f->version > 3)
386  get_rac(&fs->c, (uint8_t[]) { 129 });
387  fs->ac_byte_count = f->version > 2 || (!x && !y) ? fs->c.bytestream - fs->c.bytestream_start - 1 : 0;
388  init_get_bits(&fs->gb,
389  fs->c.bytestream_start + fs->ac_byte_count,
390  (fs->c.bytestream_end - fs->c.bytestream_start - fs->ac_byte_count) * 8);
391  }
392 
393  av_assert1(width && height);
394  if (f->colorspace == 0) {
395  const int chroma_width = FF_CEIL_RSHIFT(width, f->chroma_h_shift);
396  const int chroma_height = FF_CEIL_RSHIFT(height, f->chroma_v_shift);
397  const int cx = x >> f->chroma_h_shift;
398  const int cy = y >> f->chroma_v_shift;
399  decode_plane(fs, p->data[0] + ps*x + y*p->linesize[0], width, height, p->linesize[0], 0);
400 
401  if (f->chroma_planes) {
402  decode_plane(fs, p->data[1] + ps*cx+cy*p->linesize[1], chroma_width, chroma_height, p->linesize[1], 1);
403  decode_plane(fs, p->data[2] + ps*cx+cy*p->linesize[2], chroma_width, chroma_height, p->linesize[2], 1);
404  }
405  if (fs->transparency)
406  decode_plane(fs, p->data[3] + ps*x + y*p->linesize[3], width, height, p->linesize[3], 2);
407  } else {
408  uint8_t *planes[3] = { p->data[0] + ps * x + y * p->linesize[0],
409  p->data[1] + ps * x + y * p->linesize[1],
410  p->data[2] + ps * x + y * p->linesize[2] };
411  decode_rgb_frame(fs, planes, width, height, p->linesize);
412  }
413  if (fs->ac && f->version > 2) {
414  int v;
415  get_rac(&fs->c, (uint8_t[]) { 129 });
416  v = fs->c.bytestream_end - fs->c.bytestream - 2 - 5*f->ec;
417  if (v) {
418  av_log(f->avctx, AV_LOG_ERROR, "bytestream end mismatching by %d\n", v);
419  fs->slice_damaged = 1;
420  }
421  }
422 
423  emms_c();
424 
425  ff_thread_report_progress(&f->picture, si, 0);
426 
427  return 0;
428 }
429 
430 static int read_quant_table(RangeCoder *c, int16_t *quant_table, int scale)
431 {
432  int v;
433  int i = 0;
435 
436  memset(state, 128, sizeof(state));
437 
438  for (v = 0; i < 128; v++) {
439  unsigned len = get_symbol(c, state, 0) + 1;
440 
441  if (len > 128 - i)
442  return AVERROR_INVALIDDATA;
443 
444  while (len--) {
445  quant_table[i] = scale * v;
446  i++;
447  }
448  }
449 
450  for (i = 1; i < 128; i++)
451  quant_table[256 - i] = -quant_table[i];
452  quant_table[128] = -quant_table[127];
453 
454  return 2 * v - 1;
455 }
456 
458  int16_t quant_table[MAX_CONTEXT_INPUTS][256])
459 {
460  int i;
461  int context_count = 1;
462 
463  for (i = 0; i < 5; i++) {
464  context_count *= read_quant_table(c, quant_table[i], context_count);
465  if (context_count > 32768U) {
466  return AVERROR_INVALIDDATA;
467  }
468  }
469  return (context_count + 1) / 2;
470 }
471 
473 {
474  RangeCoder *const c = &f->c;
476  int i, j, k, ret;
477  uint8_t state2[32][CONTEXT_SIZE];
478 
479  memset(state2, 128, sizeof(state2));
480  memset(state, 128, sizeof(state));
481 
483  ff_build_rac_states(c, 0.05 * (1LL << 32), 256 - 8);
484 
485  f->version = get_symbol(c, state, 0);
486  if (f->version > 2) {
487  c->bytestream_end -= 4;
488  f->minor_version = get_symbol(c, state, 0);
489  }
490  f->ac = f->avctx->coder_type = get_symbol(c, state, 0);
491  if (f->ac > 1) {
492  for (i = 1; i < 256; i++)
493  f->state_transition[i] = get_symbol(c, state, 1) + c->one_state[i];
494  }
495 
496  f->colorspace = get_symbol(c, state, 0); //YUV cs type
497  f->avctx->bits_per_raw_sample = get_symbol(c, state, 0);
498  f->chroma_planes = get_rac(c, state);
499  f->chroma_h_shift = get_symbol(c, state, 0);
500  f->chroma_v_shift = get_symbol(c, state, 0);
501  f->transparency = get_rac(c, state);
502  f->plane_count = 2 + f->transparency;
503  f->num_h_slices = 1 + get_symbol(c, state, 0);
504  f->num_v_slices = 1 + get_symbol(c, state, 0);
505 
506  if (f->num_h_slices > (unsigned)f->width || !f->num_h_slices ||
507  f->num_v_slices > (unsigned)f->height || !f->num_v_slices
508  ) {
509  av_log(f->avctx, AV_LOG_ERROR, "slice count invalid\n");
510  return AVERROR_INVALIDDATA;
511  }
512 
513  f->quant_table_count = get_symbol(c, state, 0);
514  if (f->quant_table_count > (unsigned)MAX_QUANT_TABLES)
515  return AVERROR_INVALIDDATA;
516 
517  for (i = 0; i < f->quant_table_count; i++) {
518  f->context_count[i] = read_quant_tables(c, f->quant_tables[i]);
519  if (f->context_count[i] < 0) {
520  av_log(f->avctx, AV_LOG_ERROR, "read_quant_table error\n");
521  return AVERROR_INVALIDDATA;
522  }
523  }
524  if ((ret = ffv1_allocate_initial_states(f)) < 0)
525  return ret;
526 
527  for (i = 0; i < f->quant_table_count; i++)
528  if (get_rac(c, state)) {
529  for (j = 0; j < f->context_count[i]; j++)
530  for (k = 0; k < CONTEXT_SIZE; k++) {
531  int pred = j ? f->initial_states[i][j - 1][k] : 128;
532  f->initial_states[i][j][k] =
533  (pred + get_symbol(c, state2[k], 1)) & 0xFF;
534  }
535  }
536 
537  if (f->version > 2) {
538  f->ec = get_symbol(c, state, 0);
539  if (f->minor_version > 2)
540  f->intra = get_symbol(c, state, 0);
541  }
542 
543  if (f->version > 2) {
544  unsigned v;
547  if (v) {
548  av_log(f->avctx, AV_LOG_ERROR, "CRC mismatch %X!\n", v);
549  return AVERROR_INVALIDDATA;
550  }
551  }
552 
553  return 0;
554 }
555 
556 static int read_header(FFV1Context *f)
557 {
559  int i, j, context_count = -1; //-1 to avoid warning
560  RangeCoder *const c = &f->slice_context[0]->c;
561 
562  memset(state, 128, sizeof(state));
563 
564  if (f->version < 2) {
565  unsigned v= get_symbol(c, state, 0);
566  if (v >= 2) {
567  av_log(f->avctx, AV_LOG_ERROR, "invalid version %d in ver01 header\n", v);
568  return AVERROR_INVALIDDATA;
569  }
570  f->version = v;
571  f->ac = f->avctx->coder_type = get_symbol(c, state, 0);
572  if (f->ac > 1) {
573  for (i = 1; i < 256; i++)
574  f->state_transition[i] = get_symbol(c, state, 1) + c->one_state[i];
575  }
576 
577  f->colorspace = get_symbol(c, state, 0); //YUV cs type
578 
579  if (f->version > 0)
580  f->avctx->bits_per_raw_sample = get_symbol(c, state, 0);
581 
582  f->chroma_planes = get_rac(c, state);
583  f->chroma_h_shift = get_symbol(c, state, 0);
584  f->chroma_v_shift = get_symbol(c, state, 0);
585  f->transparency = get_rac(c, state);
586  f->plane_count = 2 + f->transparency;
587  }
588 
589  if (f->colorspace == 0) {
590  if (!f->transparency && !f->chroma_planes) {
591  if (f->avctx->bits_per_raw_sample <= 8)
593  else
595  } else if (f->avctx->bits_per_raw_sample<=8 && !f->transparency) {
596  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
597  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P; break;
598  case 0x01: f->avctx->pix_fmt = AV_PIX_FMT_YUV440P; break;
599  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P; break;
600  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P; break;
601  case 0x20: f->avctx->pix_fmt = AV_PIX_FMT_YUV411P; break;
602  case 0x22: f->avctx->pix_fmt = AV_PIX_FMT_YUV410P; break;
603  default:
604  av_log(f->avctx, AV_LOG_ERROR, "format not supported\n");
605  return AVERROR(ENOSYS);
606  }
607  } else if (f->avctx->bits_per_raw_sample <= 8 && f->transparency) {
608  switch(16*f->chroma_h_shift + f->chroma_v_shift) {
609  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUVA444P; break;
610  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUVA422P; break;
611  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUVA420P; break;
612  default:
613  av_log(f->avctx, AV_LOG_ERROR, "format not supported\n");
614  return AVERROR(ENOSYS);
615  }
616  } else if (f->avctx->bits_per_raw_sample == 9) {
617  f->packed_at_lsb = 1;
618  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
619  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P9; break;
620  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P9; break;
621  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P9; break;
622  default:
623  av_log(f->avctx, AV_LOG_ERROR, "format not supported\n");
624  return AVERROR(ENOSYS);
625  }
626  } else if (f->avctx->bits_per_raw_sample == 10) {
627  f->packed_at_lsb = 1;
628  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
629  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P10; break;
630  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P10; break;
631  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P10; break;
632  default:
633  av_log(f->avctx, AV_LOG_ERROR, "format not supported\n");
634  return AVERROR(ENOSYS);
635  }
636  } else {
637  switch(16 * f->chroma_h_shift + f->chroma_v_shift) {
638  case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P16; break;
639  case 0x10: f->avctx->pix_fmt = AV_PIX_FMT_YUV422P16; break;
640  case 0x11: f->avctx->pix_fmt = AV_PIX_FMT_YUV420P16; break;
641  default:
642  av_log(f->avctx, AV_LOG_ERROR, "format not supported\n");
643  return AVERROR(ENOSYS);
644  }
645  }
646  } else if (f->colorspace == 1) {
647  if (f->chroma_h_shift || f->chroma_v_shift) {
649  "chroma subsampling not supported in this colorspace\n");
650  return AVERROR(ENOSYS);
651  }
652  if ( f->avctx->bits_per_raw_sample == 9)
654  else if (f->avctx->bits_per_raw_sample == 10)
656  else if (f->avctx->bits_per_raw_sample == 12)
658  else if (f->avctx->bits_per_raw_sample == 14)
660  else
662  else f->avctx->pix_fmt = AV_PIX_FMT_0RGB32;
663  } else {
664  av_log(f->avctx, AV_LOG_ERROR, "colorspace not supported\n");
665  return AVERROR(ENOSYS);
666  }
667 
668  av_dlog(f->avctx, "%d %d %d\n",
670  if (f->version < 2) {
671  context_count = read_quant_tables(c, f->quant_table);
672  if (context_count < 0) {
673  av_log(f->avctx, AV_LOG_ERROR, "read_quant_table error\n");
674  return AVERROR_INVALIDDATA;
675  }
676  } else if (f->version < 3) {
677  f->slice_count = get_symbol(c, state, 0);
678  } else {
679  const uint8_t *p = c->bytestream_end;
680  for (f->slice_count = 0;
681  f->slice_count < MAX_SLICES && 3 < p - c->bytestream_start;
682  f->slice_count++) {
683  int trailer = 3 + 5*!!f->ec;
684  int size = AV_RB24(p-trailer);
685  if (size + trailer > p - c->bytestream_start)
686  break;
687  p -= size + trailer;
688  }
689  }
690  if (f->slice_count > (unsigned)MAX_SLICES || f->slice_count <= 0) {
691  av_log(f->avctx, AV_LOG_ERROR, "slice count %d is invalid\n", f->slice_count);
692  return AVERROR_INVALIDDATA;
693  }
694 
695  for (j = 0; j < f->slice_count; j++) {
696  FFV1Context *fs = f->slice_context[j];
697  fs->ac = f->ac;
698  fs->packed_at_lsb = f->packed_at_lsb;
699 
700  fs->slice_damaged = 0;
701 
702  if (f->version == 2) {
703  fs->slice_x = get_symbol(c, state, 0) * f->width ;
704  fs->slice_y = get_symbol(c, state, 0) * f->height;
705  fs->slice_width = (get_symbol(c, state, 0) + 1) * f->width + fs->slice_x;
706  fs->slice_height = (get_symbol(c, state, 0) + 1) * f->height + fs->slice_y;
707 
708  fs->slice_x /= f->num_h_slices;
709  fs->slice_y /= f->num_v_slices;
710  fs->slice_width = fs->slice_width / f->num_h_slices - fs->slice_x;
711  fs->slice_height = fs->slice_height / f->num_v_slices - fs->slice_y;
712  if ((unsigned)fs->slice_width > f->width ||
713  (unsigned)fs->slice_height > f->height)
714  return AVERROR_INVALIDDATA;
715  if ( (unsigned)fs->slice_x + (uint64_t)fs->slice_width > f->width
716  || (unsigned)fs->slice_y + (uint64_t)fs->slice_height > f->height)
717  return AVERROR_INVALIDDATA;
718  }
719 
720  for (i = 0; i < f->plane_count; i++) {
721  PlaneContext *const p = &fs->plane[i];
722 
723  if (f->version == 2) {
724  int idx = get_symbol(c, state, 0);
725  if (idx > (unsigned)f->quant_table_count) {
727  "quant_table_index out of range\n");
728  return AVERROR_INVALIDDATA;
729  }
730  p->quant_table_index = idx;
731  memcpy(p->quant_table, f->quant_tables[idx],
732  sizeof(p->quant_table));
733  context_count = f->context_count[idx];
734  } else {
735  memcpy(p->quant_table, f->quant_table, sizeof(p->quant_table));
736  }
737 
738  if (f->version <= 2) {
739  av_assert0(context_count >= 0);
740  if (p->context_count < context_count) {
741  av_freep(&p->state);
742  av_freep(&p->vlc_state);
743  }
745  }
746  }
747  }
748  return 0;
749 }
750 
752 {
753  FFV1Context *f = avctx->priv_data;
754  int ret;
755 
756  if ((ret = ffv1_common_init(avctx)) < 0)
757  return ret;
758 
759  if (avctx->extradata && (ret = read_extra_header(f)) < 0)
760  return ret;
761 
762  if ((ret = ffv1_init_slice_contexts(f)) < 0)
763  return ret;
764 
765  avctx->internal->allocate_progress = 1;
766 
767  return 0;
768 }
769 
770 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
771 {
772  const uint8_t *buf = avpkt->data;
773  int buf_size = avpkt->size;
774  FFV1Context *f = avctx->priv_data;
775  RangeCoder *const c = &f->slice_context[0]->c;
776  int i, ret;
777  uint8_t keystate = 128;
778  const uint8_t *buf_p;
779  AVFrame *p;
780 
781  if (f->last_picture.f)
784 
785  f->cur = p = f->picture.f;
786 
787  f->avctx = avctx;
788  ff_init_range_decoder(c, buf, buf_size);
789  ff_build_rac_states(c, 0.05 * (1LL << 32), 256 - 8);
790 
791  p->pict_type = AV_PICTURE_TYPE_I; //FIXME I vs. P
792  if (get_rac(c, &keystate)) {
793  p->key_frame = 1;
794  f->key_frame_ok = 0;
795  if ((ret = read_header(f)) < 0)
796  return ret;
797  f->key_frame_ok = 1;
798  } else {
799  if (!f->key_frame_ok) {
800  av_log(avctx, AV_LOG_ERROR,
801  "Cannot decode non-keyframe without valid keyframe\n");
802  return AVERROR_INVALIDDATA;
803  }
804  p->key_frame = 0;
805  }
806 
807  if ((ret = ff_thread_get_buffer(avctx, &f->picture, AV_GET_BUFFER_FLAG_REF)) < 0)
808  return ret;
809 
810  if (avctx->debug & FF_DEBUG_PICT_INFO)
811  av_log(avctx, AV_LOG_DEBUG, "ver:%d keyframe:%d coder:%d ec:%d slices:%d bps:%d\n",
812  f->version, p->key_frame, f->ac, f->ec, f->slice_count, f->avctx->bits_per_raw_sample);
813 
814  ff_thread_finish_setup(avctx);
815 
816  buf_p = buf + buf_size;
817  for (i = f->slice_count - 1; i >= 0; i--) {
818  FFV1Context *fs = f->slice_context[i];
819  int trailer = 3 + 5*!!f->ec;
820  int v;
821 
822  if (i || f->version > 2) v = AV_RB24(buf_p-trailer) + trailer;
823  else v = buf_p - c->bytestream_start;
824  if (buf_p - c->bytestream_start < v) {
825  av_log(avctx, AV_LOG_ERROR, "Slice pointer chain broken\n");
826  return AVERROR_INVALIDDATA;
827  }
828  buf_p -= v;
829 
830  if (f->ec) {
831  unsigned crc = av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, buf_p, v);
832  if (crc) {
833  int64_t ts = avpkt->pts != AV_NOPTS_VALUE ? avpkt->pts : avpkt->dts;
834  av_log(f->avctx, AV_LOG_ERROR, "CRC mismatch %X!", crc);
835  if (ts != AV_NOPTS_VALUE && avctx->pkt_timebase.num) {
836  av_log(f->avctx, AV_LOG_ERROR, "at %f seconds\n", ts*av_q2d(avctx->pkt_timebase));
837  } else if (ts != AV_NOPTS_VALUE) {
838  av_log(f->avctx, AV_LOG_ERROR, "at %"PRId64"\n", ts);
839  } else {
840  av_log(f->avctx, AV_LOG_ERROR, "\n");
841  }
842  fs->slice_damaged = 1;
843  }
844  }
845 
846  if (i) {
847  ff_init_range_decoder(&fs->c, buf_p, v);
848  } else
849  fs->c.bytestream_end = (uint8_t *)(buf_p + v);
850 
851  fs->avctx = avctx;
852  fs->cur = p;
853  }
854 
855  avctx->execute(avctx,
856  decode_slice,
857  &f->slice_context[0],
858  NULL,
859  f->slice_count,
860  sizeof(void*));
861 
862  for (i = f->slice_count - 1; i >= 0; i--) {
863  FFV1Context *fs = f->slice_context[i];
864  int j;
865  if (fs->slice_damaged && f->last_picture.f->data[0]) {
866  const uint8_t *src[4];
867  uint8_t *dst[4];
868  ff_thread_await_progress(&f->last_picture, INT_MAX, 0);
869  for (j = 0; j < 4; j++) {
870  int sh = (j==1 || j==2) ? f->chroma_h_shift : 0;
871  int sv = (j==1 || j==2) ? f->chroma_v_shift : 0;
872  dst[j] = p->data[j] + p->linesize[j]*
873  (fs->slice_y>>sv) + (fs->slice_x>>sh);
874  src[j] = f->last_picture.f->data[j] + f->last_picture.f->linesize[j]*
875  (fs->slice_y>>sv) + (fs->slice_x>>sh);
876  }
877  av_image_copy(dst, p->linesize, (const uint8_t **)src,
878  f->last_picture.f->linesize,
879  avctx->pix_fmt,
880  fs->slice_width,
881  fs->slice_height);
882  }
883  }
884  ff_thread_report_progress(&f->picture, INT_MAX, 0);
885 
886  f->picture_number++;
887 
888  if (f->last_picture.f)
890  f->cur = NULL;
891  if ((ret = av_frame_ref(data, f->picture.f)) < 0)
892  return ret;
893 
894  *got_frame = 1;
895 
896  return buf_size;
897 }
898 
900 {
901  FFV1Context *f = avctx->priv_data;
902 
903  f->picture.f = NULL;
904  f->last_picture.f = NULL;
905  f->sample_buffer = NULL;
906  f->quant_table_count = 0;
907  f->slice_count = 0;
908 
909  return 0;
910 }
911 
913 {
914  FFV1Context *fsrc = src->priv_data;
915  FFV1Context *fdst = dst->priv_data;
916  int i, ret;
917 
918  if (dst == src)
919  return 0;
920 
921  if (!fdst->picture.f) {
922  memcpy(fdst, fsrc, sizeof(*fdst));
923 
924  for (i = 0; i < fdst->quant_table_count; i++) {
925  fdst->initial_states[i] = av_malloc(fdst->context_count[i] * sizeof(*fdst->initial_states[i]));
926  memcpy(fdst->initial_states[i], fsrc->initial_states[i], fdst->context_count[i] * sizeof(*fdst->initial_states[i]));
927  }
928 
929  fdst->picture.f = av_frame_alloc();
930  fdst->last_picture.f = av_frame_alloc();
931 
932  if ((ret = ffv1_init_slice_contexts(fdst)) < 0)
933  return ret;
934  }
935 
936  av_assert1(fdst->slice_count == fsrc->slice_count);
937 
938  fdst->key_frame_ok = fsrc->key_frame_ok;
939 
940  ff_thread_release_buffer(dst, &fdst->picture);
941  if (fsrc->picture.f->data[0]) {
942  if ((ret = ff_thread_ref_frame(&fdst->picture, &fsrc->picture)) < 0)
943  return ret;
944  }
945  for (i = 0; i < fdst->slice_count; i++) {
946  FFV1Context *fsdst = fdst->slice_context[i];
947  FFV1Context *fssrc = fsrc->slice_context[i];
948 
949  fsdst->slice_damaged = fssrc->slice_damaged;
950  }
951 
952  fdst->fsrc = fsrc;
953 
954  return 0;
955 }
956 
958  .name = "ffv1",
959  .type = AVMEDIA_TYPE_VIDEO,
960  .id = AV_CODEC_ID_FFV1,
961  .priv_data_size = sizeof(FFV1Context),
962  .init = decode_init,
963  .close = ffv1_close,
964  .decode = decode_frame,
966  .update_thread_context = ONLY_IF_THREADS_ENABLED(update_thread_context),
967  .capabilities = CODEC_CAP_DR1 /*| CODEC_CAP_DRAW_HORIZ_BAND*/ |
969  .long_name = NULL_IF_CONFIG_SMALL("FFmpeg video codec #1"),
970 };