FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
proresdec2.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2011 Maxim Poliakovski
3  * Copyright (c) 2010-2011 Elvis Presley
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * Known FOURCCs: 'apch' (HQ), 'apcn' (SD), 'apcs' (LT), 'acpo' (Proxy), 'ap4h' (4444)
25  */
26 
27 //#define DEBUG
28 
29 #define LONG_BITSTREAM_READER
30 
31 #include "avcodec.h"
32 #include "get_bits.h"
33 #include "idctdsp.h"
34 #include "internal.h"
35 #include "simple_idct.h"
36 #include "proresdec.h"
37 #include "proresdata.h"
38 
39 static void permute(uint8_t *dst, const uint8_t *src, const uint8_t permutation[64])
40 {
41  int i;
42  for (i = 0; i < 64; i++)
43  dst[i] = permutation[src[i]];
44 }
45 
47 {
48  ProresContext *ctx = avctx->priv_data;
49  uint8_t idct_permutation[64];
50 
51  avctx->bits_per_raw_sample = 10;
52 
53  ff_blockdsp_init(&ctx->bdsp, avctx);
54  ff_proresdsp_init(&ctx->prodsp, avctx);
55 
56  ff_init_scantable_permutation(idct_permutation,
58 
59  permute(ctx->progressive_scan, ff_prores_progressive_scan, idct_permutation);
60  permute(ctx->interlaced_scan, ff_prores_interlaced_scan, idct_permutation);
61 
62  return 0;
63 }
64 
65 static int decode_frame_header(ProresContext *ctx, const uint8_t *buf,
66  const int data_size, AVCodecContext *avctx)
67 {
68  int hdr_size, width, height, flags;
69  int version;
70  const uint8_t *ptr;
71 
72  hdr_size = AV_RB16(buf);
73  av_dlog(avctx, "header size %d\n", hdr_size);
74  if (hdr_size > data_size) {
75  av_log(avctx, AV_LOG_ERROR, "error, wrong header size\n");
76  return AVERROR_INVALIDDATA;
77  }
78 
79  version = AV_RB16(buf + 2);
80  av_dlog(avctx, "%.4s version %d\n", buf+4, version);
81  if (version > 1) {
82  av_log(avctx, AV_LOG_ERROR, "unsupported version: %d\n", version);
83  return AVERROR_PATCHWELCOME;
84  }
85 
86  width = AV_RB16(buf + 8);
87  height = AV_RB16(buf + 10);
88  if (width != avctx->width || height != avctx->height) {
89  av_log(avctx, AV_LOG_ERROR, "picture resolution change: %dx%d -> %dx%d\n",
90  avctx->width, avctx->height, width, height);
91  return AVERROR_PATCHWELCOME;
92  }
93 
94  ctx->frame_type = (buf[12] >> 2) & 3;
95  ctx->alpha_info = buf[17] & 0xf;
96 
97  if (ctx->alpha_info > 2) {
98  av_log(avctx, AV_LOG_ERROR, "Invalid alpha mode %d\n", ctx->alpha_info);
99  return AVERROR_INVALIDDATA;
100  }
101  if (avctx->skip_alpha) ctx->alpha_info = 0;
102 
103  av_dlog(avctx, "frame type %d\n", ctx->frame_type);
104 
105  if (ctx->frame_type == 0) {
106  ctx->scan = ctx->progressive_scan; // permuted
107  } else {
108  ctx->scan = ctx->interlaced_scan; // permuted
109  ctx->frame->interlaced_frame = 1;
110  ctx->frame->top_field_first = ctx->frame_type == 1;
111  }
112 
113  if (ctx->alpha_info) {
114  avctx->pix_fmt = (buf[12] & 0xC0) == 0xC0 ? AV_PIX_FMT_YUVA444P10 : AV_PIX_FMT_YUVA422P10;
115  } else {
116  avctx->pix_fmt = (buf[12] & 0xC0) == 0xC0 ? AV_PIX_FMT_YUV444P10 : AV_PIX_FMT_YUV422P10;
117  }
118 
119  ptr = buf + 20;
120  flags = buf[19];
121  av_dlog(avctx, "flags %x\n", flags);
122 
123  if (flags & 2) {
124  if(buf + data_size - ptr < 64) {
125  av_log(avctx, AV_LOG_ERROR, "Header truncated\n");
126  return AVERROR_INVALIDDATA;
127  }
128  permute(ctx->qmat_luma, ctx->prodsp.idct_permutation, ptr);
129  ptr += 64;
130  } else {
131  memset(ctx->qmat_luma, 4, 64);
132  }
133 
134  if (flags & 1) {
135  if(buf + data_size - ptr < 64) {
136  av_log(avctx, AV_LOG_ERROR, "Header truncated\n");
137  return AVERROR_INVALIDDATA;
138  }
139  permute(ctx->qmat_chroma, ctx->prodsp.idct_permutation, ptr);
140  } else {
141  memset(ctx->qmat_chroma, 4, 64);
142  }
143 
144  return hdr_size;
145 }
146 
147 static int decode_picture_header(AVCodecContext *avctx, const uint8_t *buf, const int buf_size)
148 {
149  ProresContext *ctx = avctx->priv_data;
150  int i, hdr_size, slice_count;
151  unsigned pic_data_size;
152  int log2_slice_mb_width, log2_slice_mb_height;
153  int slice_mb_count, mb_x, mb_y;
154  const uint8_t *data_ptr, *index_ptr;
155 
156  hdr_size = buf[0] >> 3;
157  if (hdr_size < 8 || hdr_size > buf_size) {
158  av_log(avctx, AV_LOG_ERROR, "error, wrong picture header size\n");
159  return AVERROR_INVALIDDATA;
160  }
161 
162  pic_data_size = AV_RB32(buf + 1);
163  if (pic_data_size > buf_size) {
164  av_log(avctx, AV_LOG_ERROR, "error, wrong picture data size\n");
165  return AVERROR_INVALIDDATA;
166  }
167 
168  log2_slice_mb_width = buf[7] >> 4;
169  log2_slice_mb_height = buf[7] & 0xF;
170  if (log2_slice_mb_width > 3 || log2_slice_mb_height) {
171  av_log(avctx, AV_LOG_ERROR, "unsupported slice resolution: %dx%d\n",
172  1 << log2_slice_mb_width, 1 << log2_slice_mb_height);
173  return AVERROR_INVALIDDATA;
174  }
175 
176  ctx->mb_width = (avctx->width + 15) >> 4;
177  if (ctx->frame_type)
178  ctx->mb_height = (avctx->height + 31) >> 5;
179  else
180  ctx->mb_height = (avctx->height + 15) >> 4;
181 
182  slice_count = AV_RB16(buf + 5);
183 
184  if (ctx->slice_count != slice_count || !ctx->slices) {
185  av_freep(&ctx->slices);
186  ctx->slice_count = 0;
187  ctx->slices = av_mallocz_array(slice_count, sizeof(*ctx->slices));
188  if (!ctx->slices)
189  return AVERROR(ENOMEM);
190  ctx->slice_count = slice_count;
191  }
192 
193  if (!slice_count)
194  return AVERROR(EINVAL);
195 
196  if (hdr_size + slice_count*2 > buf_size) {
197  av_log(avctx, AV_LOG_ERROR, "error, wrong slice count\n");
198  return AVERROR_INVALIDDATA;
199  }
200 
201  // parse slice information
202  index_ptr = buf + hdr_size;
203  data_ptr = index_ptr + slice_count*2;
204 
205  slice_mb_count = 1 << log2_slice_mb_width;
206  mb_x = 0;
207  mb_y = 0;
208 
209  for (i = 0; i < slice_count; i++) {
210  SliceContext *slice = &ctx->slices[i];
211 
212  slice->data = data_ptr;
213  data_ptr += AV_RB16(index_ptr + i*2);
214 
215  while (ctx->mb_width - mb_x < slice_mb_count)
216  slice_mb_count >>= 1;
217 
218  slice->mb_x = mb_x;
219  slice->mb_y = mb_y;
220  slice->mb_count = slice_mb_count;
221  slice->data_size = data_ptr - slice->data;
222 
223  if (slice->data_size < 6) {
224  av_log(avctx, AV_LOG_ERROR, "error, wrong slice data size\n");
225  return AVERROR_INVALIDDATA;
226  }
227 
228  mb_x += slice_mb_count;
229  if (mb_x == ctx->mb_width) {
230  slice_mb_count = 1 << log2_slice_mb_width;
231  mb_x = 0;
232  mb_y++;
233  }
234  if (data_ptr > buf + buf_size) {
235  av_log(avctx, AV_LOG_ERROR, "error, slice out of bounds\n");
236  return AVERROR_INVALIDDATA;
237  }
238  }
239 
240  if (mb_x || mb_y != ctx->mb_height) {
241  av_log(avctx, AV_LOG_ERROR, "error wrong mb count y %d h %d\n",
242  mb_y, ctx->mb_height);
243  return AVERROR_INVALIDDATA;
244  }
245 
246  return pic_data_size;
247 }
248 
249 #define DECODE_CODEWORD(val, codebook) \
250  do { \
251  unsigned int rice_order, exp_order, switch_bits; \
252  unsigned int q, buf, bits; \
253  \
254  UPDATE_CACHE(re, gb); \
255  buf = GET_CACHE(re, gb); \
256  \
257  /* number of bits to switch between rice and exp golomb */ \
258  switch_bits = codebook & 3; \
259  rice_order = codebook >> 5; \
260  exp_order = (codebook >> 2) & 7; \
261  \
262  q = 31 - av_log2(buf); \
263  \
264  if (q > switch_bits) { /* exp golomb */ \
265  bits = exp_order - switch_bits + (q<<1); \
266  val = SHOW_UBITS(re, gb, bits) - (1 << exp_order) + \
267  ((switch_bits + 1) << rice_order); \
268  SKIP_BITS(re, gb, bits); \
269  } else if (rice_order) { \
270  SKIP_BITS(re, gb, q+1); \
271  val = (q << rice_order) + SHOW_UBITS(re, gb, rice_order); \
272  SKIP_BITS(re, gb, rice_order); \
273  } else { \
274  val = q; \
275  SKIP_BITS(re, gb, q+1); \
276  } \
277  } while (0)
278 
279 #define TOSIGNED(x) (((x) >> 1) ^ (-((x) & 1)))
280 
281 #define FIRST_DC_CB 0xB8
282 
283 static const uint8_t dc_codebook[7] = { 0x04, 0x28, 0x28, 0x4D, 0x4D, 0x70, 0x70};
284 
286  int blocks_per_slice)
287 {
288  int16_t prev_dc;
289  int code, i, sign;
290 
291  OPEN_READER(re, gb);
292 
294  prev_dc = TOSIGNED(code);
295  out[0] = prev_dc;
296 
297  out += 64; // dc coeff for the next block
298 
299  code = 5;
300  sign = 0;
301  for (i = 1; i < blocks_per_slice; i++, out += 64) {
302  DECODE_CODEWORD(code, dc_codebook[FFMIN(code, 6U)]);
303  if(code) sign ^= -(code & 1);
304  else sign = 0;
305  prev_dc += (((code + 1) >> 1) ^ sign) - sign;
306  out[0] = prev_dc;
307  }
308  CLOSE_READER(re, gb);
309 }
310 
311 // adaptive codebook switching lut according to previous run/level values
312 static const uint8_t run_to_cb[16] = { 0x06, 0x06, 0x05, 0x05, 0x04, 0x29, 0x29, 0x29, 0x29, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x4C };
313 static const uint8_t lev_to_cb[10] = { 0x04, 0x0A, 0x05, 0x06, 0x04, 0x28, 0x28, 0x28, 0x28, 0x4C };
314 
316  int16_t *out, int blocks_per_slice)
317 {
318  ProresContext *ctx = avctx->priv_data;
319  int block_mask, sign;
320  unsigned pos, run, level;
321  int max_coeffs, i, bits_left;
322  int log2_block_count = av_log2(blocks_per_slice);
323 
324  OPEN_READER(re, gb);
325  UPDATE_CACHE(re, gb); \
326  run = 4;
327  level = 2;
328 
329  max_coeffs = 64 << log2_block_count;
330  block_mask = blocks_per_slice - 1;
331 
332  for (pos = block_mask;;) {
333  bits_left = gb->size_in_bits - re_index;
334  if (!bits_left || (bits_left < 32 && !SHOW_UBITS(re, gb, bits_left)))
335  break;
336 
337  DECODE_CODEWORD(run, run_to_cb[FFMIN(run, 15)]);
338  pos += run + 1;
339  if (pos >= max_coeffs) {
340  av_log(avctx, AV_LOG_ERROR, "ac tex damaged %d, %d\n", pos, max_coeffs);
341  return AVERROR_INVALIDDATA;
342  }
343 
344  DECODE_CODEWORD(level, lev_to_cb[FFMIN(level, 9)]);
345  level += 1;
346 
347  i = pos >> log2_block_count;
348 
349  sign = SHOW_SBITS(re, gb, 1);
350  SKIP_BITS(re, gb, 1);
351  out[((pos & block_mask) << 6) + ctx->scan[i]] = ((level ^ sign) - sign);
352  }
353 
354  CLOSE_READER(re, gb);
355  return 0;
356 }
357 
359  uint16_t *dst, int dst_stride,
360  const uint8_t *buf, unsigned buf_size,
361  const int16_t *qmat)
362 {
363  ProresContext *ctx = avctx->priv_data;
364  LOCAL_ALIGNED_16(int16_t, blocks, [8*4*64]);
365  int16_t *block;
366  GetBitContext gb;
367  int i, blocks_per_slice = slice->mb_count<<2;
368  int ret;
369 
370  for (i = 0; i < blocks_per_slice; i++)
371  ctx->bdsp.clear_block(blocks+(i<<6));
372 
373  init_get_bits(&gb, buf, buf_size << 3);
374 
375  decode_dc_coeffs(&gb, blocks, blocks_per_slice);
376  if ((ret = decode_ac_coeffs(avctx, &gb, blocks, blocks_per_slice)) < 0)
377  return ret;
378 
379  block = blocks;
380  for (i = 0; i < slice->mb_count; i++) {
381  ctx->prodsp.idct_put(dst, dst_stride, block+(0<<6), qmat);
382  ctx->prodsp.idct_put(dst +8, dst_stride, block+(1<<6), qmat);
383  ctx->prodsp.idct_put(dst+4*dst_stride , dst_stride, block+(2<<6), qmat);
384  ctx->prodsp.idct_put(dst+4*dst_stride+8, dst_stride, block+(3<<6), qmat);
385  block += 4*64;
386  dst += 16;
387  }
388  return 0;
389 }
390 
392  uint16_t *dst, int dst_stride,
393  const uint8_t *buf, unsigned buf_size,
394  const int16_t *qmat, int log2_blocks_per_mb)
395 {
396  ProresContext *ctx = avctx->priv_data;
397  LOCAL_ALIGNED_16(int16_t, blocks, [8*4*64]);
398  int16_t *block;
399  GetBitContext gb;
400  int i, j, blocks_per_slice = slice->mb_count << log2_blocks_per_mb;
401  int ret;
402 
403  for (i = 0; i < blocks_per_slice; i++)
404  ctx->bdsp.clear_block(blocks+(i<<6));
405 
406  init_get_bits(&gb, buf, buf_size << 3);
407 
408  decode_dc_coeffs(&gb, blocks, blocks_per_slice);
409  if ((ret = decode_ac_coeffs(avctx, &gb, blocks, blocks_per_slice)) < 0)
410  return ret;
411 
412  block = blocks;
413  for (i = 0; i < slice->mb_count; i++) {
414  for (j = 0; j < log2_blocks_per_mb; j++) {
415  ctx->prodsp.idct_put(dst, dst_stride, block+(0<<6), qmat);
416  ctx->prodsp.idct_put(dst+4*dst_stride, dst_stride, block+(1<<6), qmat);
417  block += 2*64;
418  dst += 8;
419  }
420  }
421  return 0;
422 }
423 
424 static void unpack_alpha(GetBitContext *gb, uint16_t *dst, int num_coeffs,
425  const int num_bits)
426 {
427  const int mask = (1 << num_bits) - 1;
428  int i, idx, val, alpha_val;
429 
430  idx = 0;
431  alpha_val = mask;
432  do {
433  do {
434  if (get_bits1(gb)) {
435  val = get_bits(gb, num_bits);
436  } else {
437  int sign;
438  val = get_bits(gb, num_bits == 16 ? 7 : 4);
439  sign = val & 1;
440  val = (val + 2) >> 1;
441  if (sign)
442  val = -val;
443  }
444  alpha_val = (alpha_val + val) & mask;
445  if (num_bits == 16) {
446  dst[idx++] = alpha_val >> 6;
447  } else {
448  dst[idx++] = (alpha_val << 2) | (alpha_val >> 6);
449  }
450  if (idx >= num_coeffs)
451  break;
452  } while (get_bits_left(gb)>0 && get_bits1(gb));
453  val = get_bits(gb, 4);
454  if (!val)
455  val = get_bits(gb, 11);
456  if (idx + val > num_coeffs)
457  val = num_coeffs - idx;
458  if (num_bits == 16) {
459  for (i = 0; i < val; i++)
460  dst[idx++] = alpha_val >> 6;
461  } else {
462  for (i = 0; i < val; i++)
463  dst[idx++] = (alpha_val << 2) | (alpha_val >> 6);
464 
465  }
466  } while (idx < num_coeffs);
467 }
468 
469 /**
470  * Decode alpha slice plane.
471  */
473  uint16_t *dst, int dst_stride,
474  const uint8_t *buf, int buf_size,
475  int blocks_per_slice)
476 {
477  GetBitContext gb;
478  int i;
479  LOCAL_ALIGNED_16(int16_t, blocks, [8*4*64]);
480  int16_t *block;
481 
482  for (i = 0; i < blocks_per_slice<<2; i++)
483  ctx->bdsp.clear_block(blocks+(i<<6));
484 
485  init_get_bits(&gb, buf, buf_size << 3);
486 
487  if (ctx->alpha_info == 2) {
488  unpack_alpha(&gb, blocks, blocks_per_slice * 4 * 64, 16);
489  } else {
490  unpack_alpha(&gb, blocks, blocks_per_slice * 4 * 64, 8);
491  }
492 
493  block = blocks;
494  for (i = 0; i < 16; i++) {
495  memcpy(dst, block, 16 * blocks_per_slice * sizeof(*dst));
496  dst += dst_stride >> 1;
497  block += 16 * blocks_per_slice;
498  }
499 }
500 
501 static int decode_slice_thread(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
502 {
503  ProresContext *ctx = avctx->priv_data;
504  SliceContext *slice = &ctx->slices[jobnr];
505  const uint8_t *buf = slice->data;
506  AVFrame *pic = ctx->frame;
507  int i, hdr_size, qscale, log2_chroma_blocks_per_mb;
508  int luma_stride, chroma_stride;
509  int y_data_size, u_data_size, v_data_size, a_data_size;
510  uint8_t *dest_y, *dest_u, *dest_v, *dest_a;
511  int16_t qmat_luma_scaled[64];
512  int16_t qmat_chroma_scaled[64];
513  int mb_x_shift;
514  int ret;
515 
516  slice->ret = -1;
517  //av_log(avctx, AV_LOG_INFO, "slice %d mb width %d mb x %d y %d\n",
518  // jobnr, slice->mb_count, slice->mb_x, slice->mb_y);
519 
520  // slice header
521  hdr_size = buf[0] >> 3;
522  qscale = av_clip(buf[1], 1, 224);
523  qscale = qscale > 128 ? qscale - 96 << 2: qscale;
524  y_data_size = AV_RB16(buf + 2);
525  u_data_size = AV_RB16(buf + 4);
526  v_data_size = slice->data_size - y_data_size - u_data_size - hdr_size;
527  if (hdr_size > 7) v_data_size = AV_RB16(buf + 6);
528  a_data_size = slice->data_size - y_data_size - u_data_size -
529  v_data_size - hdr_size;
530 
531  if (y_data_size < 0 || u_data_size < 0 || v_data_size < 0
532  || hdr_size+y_data_size+u_data_size+v_data_size > slice->data_size){
533  av_log(avctx, AV_LOG_ERROR, "invalid plane data size\n");
534  return AVERROR_INVALIDDATA;
535  }
536 
537  buf += hdr_size;
538 
539  for (i = 0; i < 64; i++) {
540  qmat_luma_scaled [i] = ctx->qmat_luma [i] * qscale;
541  qmat_chroma_scaled[i] = ctx->qmat_chroma[i] * qscale;
542  }
543 
544  if (ctx->frame_type == 0) {
545  luma_stride = pic->linesize[0];
546  chroma_stride = pic->linesize[1];
547  } else {
548  luma_stride = pic->linesize[0] << 1;
549  chroma_stride = pic->linesize[1] << 1;
550  }
551 
552  if (avctx->pix_fmt == AV_PIX_FMT_YUV444P10 || avctx->pix_fmt == AV_PIX_FMT_YUVA444P10) {
553  mb_x_shift = 5;
554  log2_chroma_blocks_per_mb = 2;
555  } else {
556  mb_x_shift = 4;
557  log2_chroma_blocks_per_mb = 1;
558  }
559 
560  dest_y = pic->data[0] + (slice->mb_y << 4) * luma_stride + (slice->mb_x << 5);
561  dest_u = pic->data[1] + (slice->mb_y << 4) * chroma_stride + (slice->mb_x << mb_x_shift);
562  dest_v = pic->data[2] + (slice->mb_y << 4) * chroma_stride + (slice->mb_x << mb_x_shift);
563  dest_a = pic->data[3] + (slice->mb_y << 4) * luma_stride + (slice->mb_x << 5);
564 
565  if (ctx->frame_type && ctx->first_field ^ ctx->frame->top_field_first) {
566  dest_y += pic->linesize[0];
567  dest_u += pic->linesize[1];
568  dest_v += pic->linesize[2];
569  dest_a += pic->linesize[3];
570  }
571 
572  ret = decode_slice_luma(avctx, slice, (uint16_t*)dest_y, luma_stride,
573  buf, y_data_size, qmat_luma_scaled);
574  if (ret < 0)
575  return ret;
576 
577  if (!(avctx->flags & CODEC_FLAG_GRAY)) {
578  ret = decode_slice_chroma(avctx, slice, (uint16_t*)dest_u, chroma_stride,
579  buf + y_data_size, u_data_size,
580  qmat_chroma_scaled, log2_chroma_blocks_per_mb);
581  if (ret < 0)
582  return ret;
583 
584  ret = decode_slice_chroma(avctx, slice, (uint16_t*)dest_v, chroma_stride,
585  buf + y_data_size + u_data_size, v_data_size,
586  qmat_chroma_scaled, log2_chroma_blocks_per_mb);
587  if (ret < 0)
588  return ret;
589  }
590  /* decode alpha plane if available */
591  if (ctx->alpha_info && pic->data[3] && a_data_size)
592  decode_slice_alpha(ctx, (uint16_t*)dest_a, luma_stride,
593  buf + y_data_size + u_data_size + v_data_size,
594  a_data_size, slice->mb_count);
595 
596  slice->ret = 0;
597  return 0;
598 }
599 
600 static int decode_picture(AVCodecContext *avctx)
601 {
602  ProresContext *ctx = avctx->priv_data;
603  int i;
604 
605  avctx->execute2(avctx, decode_slice_thread, NULL, NULL, ctx->slice_count);
606 
607  for (i = 0; i < ctx->slice_count; i++)
608  if (ctx->slices[i].ret < 0)
609  return ctx->slices[i].ret;
610 
611  return 0;
612 }
613 
614 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
615  AVPacket *avpkt)
616 {
617  ProresContext *ctx = avctx->priv_data;
618  AVFrame *frame = data;
619  const uint8_t *buf = avpkt->data;
620  int buf_size = avpkt->size;
621  int frame_hdr_size, pic_size, ret;
622 
623  if (buf_size < 28 || AV_RL32(buf + 4) != AV_RL32("icpf")) {
624  av_log(avctx, AV_LOG_ERROR, "invalid frame header\n");
625  return AVERROR_INVALIDDATA;
626  }
627 
628  ctx->frame = frame;
630  ctx->frame->key_frame = 1;
631  ctx->first_field = 1;
632 
633  buf += 8;
634  buf_size -= 8;
635 
636  frame_hdr_size = decode_frame_header(ctx, buf, buf_size, avctx);
637  if (frame_hdr_size < 0)
638  return frame_hdr_size;
639 
640  buf += frame_hdr_size;
641  buf_size -= frame_hdr_size;
642 
643  if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
644  return ret;
645 
647  pic_size = decode_picture_header(avctx, buf, buf_size);
648  if (pic_size < 0) {
649  av_log(avctx, AV_LOG_ERROR, "error decoding picture header\n");
650  return pic_size;
651  }
652 
653  if ((ret = decode_picture(avctx)) < 0) {
654  av_log(avctx, AV_LOG_ERROR, "error decoding picture\n");
655  return ret;
656  }
657 
658  buf += pic_size;
659  buf_size -= pic_size;
660 
661  if (ctx->frame_type && buf_size > 0 && ctx->first_field) {
662  ctx->first_field = 0;
663  goto decode_picture;
664  }
665 
666  *got_frame = 1;
667 
668  return avpkt->size;
669 }
670 
672 {
673  ProresContext *ctx = avctx->priv_data;
674 
675  av_freep(&ctx->slices);
676 
677  return 0;
678 }
679 
681  .name = "prores",
682  .long_name = NULL_IF_CONFIG_SMALL("ProRes"),
683  .type = AVMEDIA_TYPE_VIDEO,
684  .id = AV_CODEC_ID_PRORES,
685  .priv_data_size = sizeof(ProresContext),
686  .init = decode_init,
687  .close = decode_close,
688  .decode = decode_frame,
689  .capabilities = CODEC_CAP_DR1 | CODEC_CAP_SLICE_THREADS,
690 };
#define NULL
Definition: coverity.c:32
const char const char void * val
Definition: avisynth_c.h:634
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
#define DECODE_CODEWORD(val, codebook)
Definition: proresdec2.c:249
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
int first_field
Definition: proresdec.h:51
void(* clear_block)(int16_t *block)
Definition: blockdsp.h:35
#define AV_PIX_FMT_YUVA422P10
Definition: pixfmt.h:396
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:260
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static int decode_slice_thread(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
Definition: proresdec2.c:501
static int decode_slice_luma(AVCodecContext *avctx, SliceContext *slice, uint16_t *dst, int dst_stride, const uint8_t *buf, unsigned buf_size, const int16_t *qmat)
Definition: proresdec2.c:358
int size
Definition: avcodec.h:1163
uint8_t qmat_chroma[64]
dequantization matrix for chroma
Definition: proresdec.h:43
av_cold void ff_proresdsp_init(ProresDSPContext *dsp, AVCodecContext *avctx)
Definition: proresdsp.c:58
const uint8_t * scan
Definition: proresdec.h:50
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1444
BlockDSPContext bdsp
Definition: proresdec.h:38
unsigned mb_height
height of the current picture in mb
Definition: proresdec.h:47
int version
Definition: avisynth_c.h:629
int idct_permutation_type
Definition: proresdsp.h:32
uint8_t run
Definition: svq3.c:149
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:2727
unsigned mb_y
Definition: proresdec.h:31
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
Definition: bytestream.h:85
AVCodec.
Definition: avcodec.h:3181
AVFrame * frame
Definition: proresdec.h:40
unsigned data_size
Definition: proresdec.h:33
uint8_t
#define av_cold
Definition: attributes.h:74
static int decode_picture_header(AVCodecContext *avctx, const uint8_t *buf, const int buf_size)
Definition: proresdec2.c:147
static av_cold int decode_init(AVCodecContext *avctx)
Definition: proresdec2.c:46
unsigned mb_count
Definition: proresdec.h:32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
Definition: bytestream.h:85
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:789
static AVFrame * frame
AVCodec ff_prores_decoder
Definition: proresdec2.c:680
uint8_t * data
Definition: avcodec.h:1162
bitstream reader API header.
int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:367
#define av_log(a,...)
int slice_count
number of slices in the current picture
Definition: proresdec.h:45
SliceContext * slices
Definition: proresdec.h:44
#define U(x)
Definition: vp56_arith.h:37
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:588
unsigned mb_width
width of the current picture in mb
Definition: proresdec.h:46
#define UPDATE_CACHE(name, gb)
Definition: get_bits.h:173
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
ProresDSPContext prodsp
Definition: proresdec.h:39
static const uint16_t mask[17]
Definition: lzw.c:38
const uint8_t * data
Definition: proresdec.h:29
#define AVERROR(e)
Definition: error.h:43
int skip_alpha
Skip processing alpha if supported by codec.
Definition: avcodec.h:3102
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
const char * arg
Definition: jacosubdec.c:66
int flags
CODEC_FLAG_*.
Definition: avcodec.h:1335
const char * name
Name of the codec implementation.
Definition: avcodec.h:3188
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:367
#define CLOSE_READER(name, gb)
Definition: get_bits.h:144
Libavcodec external API header.
unsigned mb_x
Definition: proresdec.h:30
#define SKIP_BITS(name, gb, num)
Definition: get_bits.h:188
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:242
#define FFMIN(a, b)
Definition: common.h:66
av_cold void ff_init_scantable_permutation(uint8_t *idct_permutation, enum idct_permutation_type perm_type)
Definition: idctdsp.c:50
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1414
uint8_t idct_permutation[64]
Definition: proresdsp.h:33
int size_in_bits
Definition: get_bits.h:57
static const uint8_t lev_to_cb[10]
Definition: proresdec2.c:313
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:397
uint8_t interlaced_scan[64]
Definition: proresdec.h:49
#define SHOW_UBITS(name, gb, num)
Definition: get_bits.h:206
int alpha_info
Definition: proresdec.h:52
#define av_dlog(pctx,...)
av_dlog macros
Definition: log.h:330
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
const uint8_t ff_prores_interlaced_scan[64]
Definition: proresdata.c:36
AVS_Value src
Definition: avisynth_c.h:482
av_cold void ff_blockdsp_init(BlockDSPContext *c, AVCodecContext *avctx)
Definition: blockdsp.c:58
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
main external API structure.
Definition: avcodec.h:1241
void(* idct_put)(uint16_t *out, int linesize, int16_t *block, const int16_t *qmat)
Definition: proresdsp.h:34
const uint8_t ff_prores_progressive_scan[64]
Definition: proresdata.c:25
static void permute(uint8_t *dst, const uint8_t *src, const uint8_t permutation[64])
Definition: proresdec2.c:39
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: utils.c:1035
#define OPEN_READER(name, gb)
Definition: get_bits.h:133
void * buf
Definition: avisynth_c.h:553
static av_always_inline int decode_ac_coeffs(AVCodecContext *avctx, GetBitContext *gb, int16_t *out, int blocks_per_slice)
Definition: proresdec2.c:315
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:304
BYTE int const BYTE int int int height
Definition: avisynth_c.h:676
static int decode_slice_chroma(AVCodecContext *avctx, SliceContext *slice, uint16_t *dst, int dst_stride, const uint8_t *buf, unsigned buf_size, const int16_t *qmat, int log2_blocks_per_mb)
Definition: proresdec2.c:391
static const uint8_t run_to_cb[16]
Definition: proresdec2.c:312
uint8_t progressive_scan[64]
Definition: proresdec.h:48
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:410
#define TOSIGNED(x)
Definition: proresdec2.c:279
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: proresdec2.c:614
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:365
static int flags
Definition: cpu.c:47
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
uint8_t level
Definition: svq3.c:150
static void unpack_alpha(GetBitContext *gb, uint16_t *dst, int num_coeffs, const int num_bits)
Definition: proresdec2.c:424
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:522
#define SHOW_SBITS(name, gb, num)
Definition: get_bits.h:207
#define FIRST_DC_CB
Definition: proresdec2.c:281
#define CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: avcodec.h:870
common internal api header.
#define CODEC_FLAG_GRAY
Only decode/encode grayscale.
Definition: avcodec.h:738
static av_always_inline void decode_dc_coeffs(GetBitContext *gb, int16_t *out, int blocks_per_slice)
Definition: proresdec2.c:285
static const uint8_t dc_codebook[7]
Definition: proresdec2.c:283
void * priv_data
Definition: avcodec.h:1283
float re
Definition: fft-test.c:73
int top_field_first
If the content is interlaced, is top field displayed first.
Definition: frame.h:372
simple idct header.
int(* execute2)(struct AVCodecContext *c, int(*func)(struct AVCodecContext *c2, void *arg, int jobnr, int threadnr), void *arg2, int *ret, int count)
The codec may call this to execute several independent things.
Definition: avcodec.h:2813
#define av_log2
Definition: intmath.h:105
static void decode_slice_alpha(ProresContext *ctx, uint16_t *dst, int dst_stride, const uint8_t *buf, int buf_size, int blocks_per_slice)
Decode alpha slice plane.
Definition: proresdec2.c:472
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:237
static int decode_frame_header(ProresContext *ctx, const uint8_t *buf, const int data_size, AVCodecContext *avctx)
Definition: proresdec2.c:65
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
static void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.h:228
static av_cold int decode_close(AVCodecContext *avctx)
Definition: proresdec2.c:671
#define LOCAL_ALIGNED_16(t, v,...)
Definition: internal.h:120
#define av_freep(p)
#define av_always_inline
Definition: attributes.h:37
uint8_t qmat_luma[64]
dequantization matrix for luma
Definition: proresdec.h:42
int frame_type
0 = progressive, 1 = tff, 2 = bff
Definition: proresdec.h:41
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:85
This structure stores compressed data.
Definition: avcodec.h:1139
static int decode_picture(AVCodecContext *avctx)
Definition: proresdec2.c:600
static int width
static int16_t block[64]
Definition: dct-test.c:110