29#include "config_components.h"
38#define CACHED_BITSTREAM_READER 1
48#define ALPHA_SHIFT_16_TO_10(alpha_val) (alpha_val >> 6)
49#define ALPHA_SHIFT_8_TO_10(alpha_val) ((alpha_val << 2) | (alpha_val >> 6))
50#define ALPHA_SHIFT_16_TO_12(alpha_val) (alpha_val >> 4)
51#define ALPHA_SHIFT_8_TO_12(alpha_val) ((alpha_val << 4) | (alpha_val >> 4))
54 const int num_bits,
const int decode_precision) {
55 const int mask = (1 << num_bits) - 1;
56 int i, idx,
val, alpha_val;
72 alpha_val = (alpha_val +
val) &
mask;
74 if (decode_precision == 10) {
80 if (decode_precision == 10) {
86 if (idx >= num_coeffs)
92 if (idx +
val > num_coeffs)
93 val = num_coeffs - idx;
95 for (
i = 0;
i <
val;
i++) {
96 if (decode_precision == 10) {
103 for (
i = 0;
i <
val;
i++) {
104 if (decode_precision == 10) {
111 }
while (idx < num_coeffs);
117 if (num_bits == 16) {
127 if (num_bits == 16) {
141 case MKTAG(
'a',
'p',
'c',
'o'):
144 case MKTAG(
'a',
'p',
'c',
's'):
147 case MKTAG(
'a',
'p',
'c',
'n'):
150 case MKTAG(
'a',
'p',
'c',
'h'):
153 case MKTAG(
'a',
'p',
'4',
'h'):
157 case MKTAG(
'a',
'p',
'4',
'x'):
170 "Auto bitdepth precision. Use %db decoding based on codec tag.\n",
177 ctx->prodsp.idct_permutation);
179 ctx->prodsp.idct_permutation);
193 int old_frame_type =
ctx->frame_type;
196 ff_dlog(avctx,
"header size %d\n", hdr_size);
197 if (hdr_size > data_size) {
219 dimensions_changed = 1;
222 ctx->frame_type = (buf[12] >> 2) & 3;
223 ctx->alpha_info = buf[17] & 0xf;
225 if (
ctx->alpha_info > 2) {
231 ff_dlog(avctx,
"frame type %d\n",
ctx->frame_type);
233 if (
ctx->frame_type == 0) {
234 ctx->scan =
ctx->progressive_scan;
236 ctx->scan =
ctx->interlaced_scan;
238 if (
ctx->frame_type == 1)
242 if (
ctx->alpha_info) {
256 if (
pix_fmt !=
ctx->pix_fmt || dimensions_changed ||
257 ctx->frame_type != old_frame_type) {
258#define HWACCEL_MAX (CONFIG_PRORES_VIDEOTOOLBOX_HWACCEL + CONFIG_PRORES_VULKAN_HWACCEL)
265#if CONFIG_PRORES_VIDEOTOOLBOX_HWACCEL
268#if CONFIG_PRORES_VULKAN_HWACCEL
271 *fmtp++ =
ctx->pix_fmt;
293 if(buf + data_size - ptr < 64) {
300 memset(
ctx->qmat_luma, 4, 64);
304 if(buf + data_size - ptr < 64) {
310 memcpy(
ctx->qmat_chroma,
ctx->qmat_luma, 64);
319 int i, hdr_size, slice_count;
320 unsigned pic_data_size;
321 int log2_slice_mb_width, log2_slice_mb_height;
322 int slice_mb_count, mb_x, mb_y;
323 const uint8_t *data_ptr, *index_ptr;
325 hdr_size = buf[0] >> 3;
326 if (hdr_size < 8 || hdr_size > buf_size) {
331 pic_data_size =
AV_RB32(buf + 1);
332 if (pic_data_size > buf_size) {
337 log2_slice_mb_width = buf[7] >> 4;
338 log2_slice_mb_height = buf[7] & 0xF;
339 if (log2_slice_mb_width > 3 || log2_slice_mb_height) {
341 1 << log2_slice_mb_width, 1 << log2_slice_mb_height);
345 ctx->slice_mb_width = 1 << log2_slice_mb_width;
346 ctx->slice_mb_height = 1 << log2_slice_mb_height;
348 ctx->mb_width = (avctx->
width + 15) >> 4;
350 ctx->mb_height = (avctx->
height + 31) >> 5;
352 ctx->mb_height = (avctx->
height + 15) >> 4;
356 slice_count =
ctx->mb_height * ((
ctx->mb_width >> log2_slice_mb_width) +
359 if (
ctx->slice_count != slice_count || !
ctx->slices) {
361 ctx->slice_count = 0;
365 ctx->slice_count = slice_count;
371 if (hdr_size + slice_count*2 > buf_size) {
377 index_ptr = buf + hdr_size;
378 data_ptr = index_ptr + slice_count*2;
380 slice_mb_count =
ctx->slice_mb_width;
384 for (
i = 0;
i < slice_count;
i++) {
387 slice->
data = data_ptr;
388 data_ptr +=
AV_RB16(index_ptr +
i*2);
390 while (
ctx->mb_width - mb_x < slice_mb_count)
391 slice_mb_count >>= 1;
403 mb_x += slice_mb_count;
404 if (mb_x ==
ctx->mb_width) {
405 slice_mb_count =
ctx->slice_mb_width;
409 if (data_ptr > buf + buf_size) {
415 if (mb_x || mb_y !=
ctx->mb_height) {
417 mb_y,
ctx->mb_height);
421 return pic_data_size;
424#define DECODE_CODEWORD(val, codebook, gb) \
426 unsigned int rice_order, exp_order, switch_bits; \
427 unsigned int q, buf, bits; \
429 buf = show_bits(gb, 32); \
432 switch_bits = codebook & 3; \
433 rice_order = codebook >> 5; \
434 exp_order = (codebook >> 2) & 7; \
436 q = 31 - av_log2(buf); \
438 if (q > switch_bits) { \
439 bits = exp_order - switch_bits + (q<<1); \
441 return AVERROR_INVALIDDATA; \
442 val = (buf >> (32 - bits)) - (1 << exp_order) + \
443 ((switch_bits + 1) << rice_order); \
444 skip_bits(gb, bits); \
445 } else if (rice_order) { \
446 bits = q + 1 + rice_order; \
447 val = (q << rice_order) + \
448 ((buf >> (32 - bits)) & ((1u << rice_order) - 1)); \
449 skip_bits(gb, bits); \
452 skip_bits(gb, q + 1); \
456#define TOSIGNED(x) (((x) >> 1) ^ (-((x) & 1)))
458#define FIRST_DC_CB 0xB8
460static const uint8_t
dc_codebook[7] = { 0x04, 0x28, 0x28, 0x4D, 0x4D, 0x70, 0x70};
463 int blocks_per_slice)
476 for (
i = 1;
i < blocks_per_slice;
i++,
out += 64) {
480 prev_dc += (((
code + 1) >> 1) ^ sign) - sign;
487static const uint8_t
run_to_cb[16] = { 0x06, 0x06, 0x05, 0x05, 0x04, 0x29, 0x29, 0x29, 0x29, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x4C };
488static const uint8_t
lev_to_cb[10] = { 0x04, 0x0A, 0x05, 0x06, 0x04, 0x28, 0x28, 0x28, 0x28, 0x4C };
491 int16_t *
out,
int blocks_per_slice)
494 int block_mask, sign;
496 int max_coeffs,
i, left_bits;
497 int log2_block_count =
av_log2(blocks_per_slice);
502 max_coeffs = 64 << log2_block_count;
503 block_mask = blocks_per_slice - 1;
505 for (
pos = block_mask;;) {
507 if (left_bits <= 0 || (left_bits < 32 && !
show_bits(gb, left_bits)))
512 if (
pos >= max_coeffs) {
520 i =
pos >> log2_block_count;
523 out[((
pos & block_mask) << 6) +
ctx->scan[
i]] = ((
level ^ sign) - sign);
530 uint16_t *
dst,
int dst_stride,
531 const uint8_t *buf,
unsigned buf_size,
538 int i, blocks_per_slice = slice->
mb_count<<2;
541 for (
i = 0;
i < blocks_per_slice;
i++)
542 ctx->bdsp.clear_block(blocks+(
i<<6));
553 ctx->prodsp.idct_put(
dst, dst_stride,
block+(0<<6), qmat);
554 ctx->prodsp.idct_put(
dst +8, dst_stride,
block+(1<<6), qmat);
555 ctx->prodsp.idct_put(
dst+4*dst_stride , dst_stride,
block+(2<<6), qmat);
556 ctx->prodsp.idct_put(
dst+4*dst_stride+8, dst_stride,
block+(3<<6), qmat);
564 uint16_t *
dst,
int dst_stride,
565 const uint8_t *buf,
unsigned buf_size,
566 const int16_t *qmat,
int log2_blocks_per_mb)
572 int i, j, blocks_per_slice = slice->
mb_count << log2_blocks_per_mb;
575 for (
i = 0;
i < blocks_per_slice;
i++)
576 ctx->bdsp.clear_block(blocks+(
i<<6));
590 for (j = 0; j < log2_blocks_per_mb; j++) {
591 ctx->prodsp.idct_put(
dst, dst_stride,
block+(0<<6), qmat);
592 ctx->prodsp.idct_put(
dst+4*dst_stride, dst_stride,
block+(1<<6), qmat);
604 uint16_t *
dst,
int dst_stride,
605 const uint8_t *buf,
int buf_size,
606 int blocks_per_slice)
613 for (
i = 0;
i < blocks_per_slice<<2;
i++)
614 ctx->bdsp.clear_block(blocks+(
i<<6));
618 if (
ctx->alpha_info == 2) {
619 ctx->unpack_alpha(&gb, blocks, blocks_per_slice * 4 * 64, 16);
621 ctx->unpack_alpha(&gb, blocks, blocks_per_slice * 4 * 64, 8);
626 for (
i = 0;
i < 16;
i++) {
627 memcpy(
dst,
block, 16 * blocks_per_slice *
sizeof(*
dst));
628 dst += dst_stride >> 1;
629 block += 16 * blocks_per_slice;
637 const uint8_t *buf = slice->
data;
639 int i, hdr_size, qscale, log2_chroma_blocks_per_mb;
640 int luma_stride, chroma_stride;
641 int y_data_size, u_data_size, v_data_size, a_data_size,
offset;
642 uint8_t *dest_y, *dest_u, *dest_v;
653 hdr_size = buf[0] >> 3;
654 qscale =
av_clip(buf[1], 1, 224);
655 qscale = qscale > 128 ? qscale - 96 << 2: qscale;
656 y_data_size =
AV_RB16(buf + 2);
657 u_data_size =
AV_RB16(buf + 4);
658 v_data_size = slice->
data_size - y_data_size - u_data_size - hdr_size;
659 if (hdr_size > 7) v_data_size =
AV_RB16(buf + 6);
660 a_data_size = slice->
data_size - y_data_size - u_data_size -
661 v_data_size - hdr_size;
663 if (y_data_size < 0 || u_data_size < 0 || v_data_size < 0
664 || hdr_size+y_data_size+u_data_size+v_data_size > slice->
data_size){
671 for (
i = 0;
i < 64;
i++) {
672 qmat_luma_scaled [
i] =
ctx->qmat_luma [
i] * qscale;
673 qmat_chroma_scaled[
i] =
ctx->qmat_chroma[
i] * qscale;
676 if (
ctx->frame_type == 0) {
680 luma_stride = pic->
linesize[0] << 1;
681 chroma_stride = pic->
linesize[1] << 1;
687 log2_chroma_blocks_per_mb = 2;
690 log2_chroma_blocks_per_mb = 1;
695 dest_u = pic->
data[1] + (slice->
mb_y << 4) * chroma_stride + (slice->
mb_x << mb_x_shift);
696 dest_v = pic->
data[2] + (slice->
mb_y << 4) * chroma_stride + (slice->
mb_x << mb_x_shift);
706 buf, y_data_size, qmat_luma_scaled);
712 buf + y_data_size, u_data_size,
713 qmat_chroma_scaled, log2_chroma_blocks_per_mb);
718 buf + y_data_size + u_data_size, v_data_size,
719 qmat_chroma_scaled, log2_chroma_blocks_per_mb);
725 if (
ctx->alpha_info && pic->
data[3] && a_data_size) {
728 buf + y_data_size + u_data_size + v_data_size,
744 for (
i = 0;
i <
ctx->slice_count;
i++)
752 return ctx->slices[0].ret;
759 const uint8_t *buf = avpkt->
data;
760 int buf_size = avpkt->
size;
761 int frame_hdr_size, pic_size, ret;
770 ctx->first_field = 1;
776 if (frame_hdr_size < 0)
777 return frame_hdr_size;
782 buf += frame_hdr_size;
783 buf_size -= frame_hdr_size;
809 for (
i = 0;
i <
ctx->slice_count; ++
i) {
810 ret =
hwaccel->decode_slice(avctx,
ctx->slices[
i].data,
ctx->slices[
i].data_size);
815 ret =
hwaccel->end_frame(avctx);
824 buf_size -= pic_size;
826 if (
ctx->frame_type && buf_size > 0 &&
ctx->first_field) {
827 ctx->first_field = 0;
876#if CONFIG_PRORES_VIDEOTOOLBOX_HWACCEL
879#if CONFIG_PRORES_VULKAN_HWACCEL
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static double val(void *priv, double ch)
const FFCodec ff_prores_decoder
static AVFormatContext * ctx
static av_cold void close(AVCodecParserContext *s)
Libavcodec external API header.
#define flags(name, subs,...)
#define i(width, name, range_min, range_max)
#define UPDATE_THREAD_CONTEXT(func)
#define FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM
The decoder extracts and fills its parameters even if the frame is skipped due to the skip_frame sett...
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Select the (possibly hardware accelerated) pixel format.
int ff_hwaccel_frame_priv_alloc(AVCodecContext *avctx, void **hwaccel_picture_private)
Allocate a hwaccel frame private data if the provided avctx uses a hwaccel method that needs it.
int ff_set_dimensions(AVCodecContext *s, int width, int height)
#define AV_PROFILE_PRORES_STANDARD
#define AV_PROFILE_PRORES_4444
#define AV_PROFILE_PRORES_LT
#define AV_PROFILE_UNKNOWN
#define AV_PROFILE_PRORES_PROXY
#define AV_PROFILE_PRORES_XQ
#define AV_PROFILE_PRORES_HQ
static enum AVPixelFormat pix_fmt
int(* init)(AVBSFContext *ctx)
static const char * hwaccel
#define FF_DECODE_ERROR_INVALID_BITSTREAM
bitstream reader API header.
static int get_bits_left(GetBitContext *gb)
static unsigned int get_bits1(GetBitContext *s)
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define AV_CODEC_FLAG_GRAY
Only decode/encode grayscale.
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
@ AVDISCARD_ALL
discard all
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define AV_FRAME_FLAG_INTERLACED
A flag to mark frames whose content is interlaced.
#define AV_FRAME_FLAG_TOP_FIELD_FIRST
A flag to mark frames where the top field is displayed first if the content is interlaced.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static int decode_slice_thread(AVCodecContext *avctx, void *arg, int slice_no, int threadnr)
static const FFHWAccel * ffhwaccel(const AVHWAccel *codec)
#define HWACCEL_VULKAN(codec)
#define HWACCEL_VIDEOTOOLBOX(codec)
static av_cold int decode_init(AVCodecContext *avctx)
static int decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_frame, AVPacket *avpkt)
static av_cold int decode_close(AVCodecContext *avctx)
av_cold void ff_blockdsp_init(BlockDSPContext *c)
av_cold void ff_permute_scantable(uint8_t dst[64], const uint8_t src[64], const uint8_t permutation[64])
Multithreading API for decoders.
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static enum AVPixelFormat pix_fmts[]
static const uint16_t mask[17]
#define MKTAG(a, b, c, d)
void * av_calloc(size_t nmemb, size_t size)
Memory handling functions.
#define LOCAL_ALIGNED_32(t, v,...)
#define LOCAL_ALIGNED_16(t, v,...)
#define AV_PIX_FMT_YUV444P12
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
#define AV_PIX_FMT_YUVA444P10
#define AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUVA422P10
AVPixelFormat
Pixel format.
@ AV_PIX_FMT_VULKAN
Vulkan hardware images.
@ AV_PIX_FMT_VIDEOTOOLBOX
hardware decoding through Videotoolbox
#define AV_PIX_FMT_YUVA422P12
#define AV_PIX_FMT_YUVA444P12
#define AV_PIX_FMT_YUV444P10
const AVProfile ff_prores_profiles[]
const uint8_t ff_prores_progressive_scan[64]
const uint8_t ff_prores_interlaced_scan[64]
#define ALPHA_SHIFT_16_TO_12(alpha_val)
#define DECODE_CODEWORD(val, codebook, gb)
static av_always_inline int decode_dc_coeffs(GetBitContext *gb, int16_t *out, int blocks_per_slice)
static av_always_inline int decode_ac_coeffs(AVCodecContext *avctx, GetBitContext *gb, int16_t *out, int blocks_per_slice)
static void unpack_alpha_10(GetBitContext *gb, uint16_t *dst, int num_coeffs, const int num_bits)
static int decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
static av_cold int decode_close(AVCodecContext *avctx)
static const uint8_t run_to_cb[16]
static void unpack_alpha_12(GetBitContext *gb, uint16_t *dst, int num_coeffs, const int num_bits)
static av_cold int decode_init(AVCodecContext *avctx)
static int decode_picture(AVCodecContext *avctx)
#define ALPHA_SHIFT_16_TO_10(alpha_val)
static const uint8_t dc_codebook[7]
static void unpack_alpha(GetBitContext *gb, uint16_t *dst, int num_coeffs, const int num_bits, const int decode_precision)
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)
static void decode_slice_alpha(const ProresContext *ctx, uint16_t *dst, int dst_stride, const uint8_t *buf, int buf_size, int blocks_per_slice)
Decode alpha slice plane.
static int decode_frame_header(ProresContext *ctx, const uint8_t *buf, const int data_size, AVCodecContext *avctx)
static const uint8_t lev_to_cb[10]
static int decode_slice_thread(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
#define ALPHA_SHIFT_8_TO_10(alpha_val)
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)
static int decode_picture_header(AVCodecContext *avctx, const uint8_t *buf, const int buf_size)
#define ALPHA_SHIFT_8_TO_12(alpha_val)
av_cold void ff_proresdsp_init(ProresDSPContext *dsp, int bits_per_raw_sample)
int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
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 av_refstruct_unref(void *objp)
Decrement the reference count of the underlying object and automatically free the object if there are...
main external API structure.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
int width
picture width / height.
enum AVColorRange color_range
MPEG vs JPEG YUV range.
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
const struct AVHWAccel * hwaccel
Hardware accelerator in use.
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
enum AVColorSpace colorspace
YUV colorspace type.
int skip_alpha
Skip processing alpha if supported by codec.
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
int flags
AV_CODEC_FLAG_*.
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.
enum AVDiscard skip_frame
Skip decoding for selected frames.
This structure describes decoded (raw) audio or video data.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
This structure stores compressed data.
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
enum AVPixelFormat pix_fmt
int frame_type
0 = progressive, 1 = tff, 2 = bff
static void error(const char *err)