FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions | Variables
proresdec2.c File Reference

Known FOURCCs: 'apch' (HQ), 'apcn' (SD), 'apcs' (LT), 'acpo' (Proxy), 'ap4h' (4444) More...

#include "libavutil/internal.h"
#include "avcodec.h"
#include "get_bits.h"
#include "idctdsp.h"
#include "internal.h"
#include "simple_idct.h"
#include "proresdec.h"
#include "proresdata.h"

Go to the source code of this file.

Macros

#define LONG_BITSTREAM_READER
 
#define DECODE_CODEWORD(val, codebook)
 
#define TOSIGNED(x)   (((x) >> 1) ^ (-((x) & 1)))
 
#define FIRST_DC_CB   0xB8
 

Functions

static void permute (uint8_t *dst, const uint8_t *src, const uint8_t permutation[64])
 
static av_cold int decode_init (AVCodecContext *avctx)
 
static int decode_frame_header (ProresContext *ctx, const uint8_t *buf, const int data_size, AVCodecContext *avctx)
 
static int decode_picture_header (AVCodecContext *avctx, const uint8_t *buf, const int buf_size)
 
static av_always_inline void 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 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 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 void unpack_alpha (GetBitContext *gb, uint16_t *dst, int num_coeffs, const int num_bits)
 
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. More...
 
static int decode_slice_thread (AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
 
static int decode_picture (AVCodecContext *avctx)
 
static int decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int decode_close (AVCodecContext *avctx)
 

Variables

static const uint8_t dc_codebook [7] = { 0x04, 0x28, 0x28, 0x4D, 0x4D, 0x70, 0x70}
 
static const uint8_t run_to_cb [16] = { 0x06, 0x06, 0x05, 0x05, 0x04, 0x29, 0x29, 0x29, 0x29, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x4C }
 
static const uint8_t lev_to_cb [10] = { 0x04, 0x0A, 0x05, 0x06, 0x04, 0x28, 0x28, 0x28, 0x28, 0x4C }
 
AVCodec ff_prores_decoder
 

Detailed Description

Known FOURCCs: 'apch' (HQ), 'apcn' (SD), 'apcs' (LT), 'acpo' (Proxy), 'ap4h' (4444)

Definition in file proresdec2.c.

Macro Definition Documentation

#define LONG_BITSTREAM_READER

Definition at line 29 of file proresdec2.c.

#define DECODE_CODEWORD (   val,
  codebook 
)
Value:
do { \
unsigned int rice_order, exp_order, switch_bits; \
unsigned int q, buf, bits; \
buf = GET_CACHE(re, gb); \
\
/* number of bits to switch between rice and exp golomb */ \
switch_bits = codebook & 3; \
rice_order = codebook >> 5; \
exp_order = (codebook >> 2) & 7; \
\
q = 31 - av_log2(buf); \
if (q > switch_bits) { /* exp golomb */ \
bits = exp_order - switch_bits + (q<<1); \
val = SHOW_UBITS(re, gb, bits) - (1 << exp_order) + \
((switch_bits + 1) << rice_order); \
SKIP_BITS(re, gb, bits); \
} else if (rice_order) { \
SKIP_BITS(re, gb, q+1); \
val = (q << rice_order) + SHOW_UBITS(re, gb, rice_order); \
SKIP_BITS(re, gb, rice_order); \
} else { \
val = q; \
SKIP_BITS(re, gb, q+1); \
} \
} while (0)
const char const char void * val
Definition: avisynth_c.h:634
uint8_t bits
Definition: crc.c:295
#define UPDATE_CACHE(name, gb)
Definition: get_bits.h:173
#define SKIP_BITS(name, gb, num)
Definition: get_bits.h:188
#define SHOW_UBITS(name, gb, num)
Definition: get_bits.h:206
#define av_log2
Definition: intmath.h:100
void * buf
Definition: avisynth_c.h:553
#define GET_CACHE(name, gb)
Definition: get_bits.h:210
if(ret< 0)
Definition: vf_mcdeint.c:280
float re
Definition: fft-test.c:73

Definition at line 250 of file proresdec2.c.

Referenced by decode_ac_coeffs(), and decode_dc_coeffs().

#define TOSIGNED (   x)    (((x) >> 1) ^ (-((x) & 1)))

Definition at line 280 of file proresdec2.c.

Referenced by decode_dc_coeffs().

#define FIRST_DC_CB   0xB8

Definition at line 282 of file proresdec2.c.

Referenced by decode_dc_coeffs().

Function Documentation

static void permute ( uint8_t dst,
const uint8_t src,
const uint8_t  permutation[64] 
)
static

Definition at line 40 of file proresdec2.c.

Referenced by decode_frame_header(), and decode_init().

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 47 of file proresdec2.c.

static int decode_frame_header ( ProresContext ctx,
const uint8_t buf,
const int  data_size,
AVCodecContext avctx 
)
static

Definition at line 66 of file proresdec2.c.

Referenced by decode_frame().

static int decode_picture_header ( AVCodecContext avctx,
const uint8_t buf,
const int  buf_size 
)
static

Definition at line 148 of file proresdec2.c.

Referenced by decode_frame().

static av_always_inline void decode_dc_coeffs ( GetBitContext gb,
int16_t *  out,
int  blocks_per_slice 
)
static

Definition at line 286 of file proresdec2.c.

Referenced by decode_slice_chroma(), and decode_slice_luma().

static av_always_inline int decode_ac_coeffs ( AVCodecContext avctx,
GetBitContext gb,
int16_t *  out,
int  blocks_per_slice 
)
static

Definition at line 316 of file proresdec2.c.

Referenced by decode_slice_chroma(), and decode_slice_luma().

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

Definition at line 359 of file proresdec2.c.

Referenced by decode_slice_thread().

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

Definition at line 392 of file proresdec2.c.

Referenced by decode_slice_thread().

static void unpack_alpha ( GetBitContext gb,
uint16_t *  dst,
int  num_coeffs,
const int  num_bits 
)
static

Definition at line 425 of file proresdec2.c.

Referenced by decode_slice_alpha().

static void decode_slice_alpha ( ProresContext ctx,
uint16_t *  dst,
int  dst_stride,
const uint8_t buf,
int  buf_size,
int  blocks_per_slice 
)
static

Decode alpha slice plane.

Definition at line 473 of file proresdec2.c.

Referenced by decode_slice_thread().

static int decode_slice_thread ( AVCodecContext avctx,
void arg,
int  jobnr,
int  threadnr 
)
static

Definition at line 502 of file proresdec2.c.

Referenced by decode_picture().

static int decode_picture ( AVCodecContext avctx)
static

Definition at line 601 of file proresdec2.c.

Referenced by decode_frame().

static int decode_frame ( AVCodecContext avctx,
void data,
int *  got_frame,
AVPacket avpkt 
)
static

Definition at line 615 of file proresdec2.c.

static av_cold int decode_close ( AVCodecContext avctx)
static

Definition at line 672 of file proresdec2.c.

Variable Documentation

const uint8_t dc_codebook[7] = { 0x04, 0x28, 0x28, 0x4D, 0x4D, 0x70, 0x70}
static

Definition at line 284 of file proresdec2.c.

Referenced by decode_dc_coeffs().

const uint8_t run_to_cb[16] = { 0x06, 0x06, 0x05, 0x05, 0x04, 0x29, 0x29, 0x29, 0x29, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x4C }
static

Definition at line 313 of file proresdec2.c.

Referenced by decode_ac_coeffs().

const uint8_t lev_to_cb[10] = { 0x04, 0x0A, 0x05, 0x06, 0x04, 0x28, 0x28, 0x28, 0x28, 0x4C }
static

Definition at line 314 of file proresdec2.c.

Referenced by decode_ac_coeffs().

AVCodec ff_prores_decoder
Initial value:
= {
.name = "prores",
.long_name = NULL_IF_CONFIG_SMALL("ProRes"),
.priv_data_size = sizeof(ProresContext),
.close = decode_close,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int decode_init(AVCodecContext *avctx)
Definition: proresdec2.c:47
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: avcodec.h:924
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: proresdec2.c:615
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:523
static av_cold int decode_close(AVCodecContext *avctx)
Definition: proresdec2.c:672
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:857

Definition at line 681 of file proresdec2.c.