FFmpeg
Data Structures | Macros | Functions | Variables
proresenc_anatoliy.c File Reference
#include "libavutil/opt.h"
#include "avcodec.h"
#include "dct.h"
#include "internal.h"
#include "profiles.h"
#include "proresdata.h"
#include "put_bits.h"
#include "bytestream.h"
#include "fdctdsp.h"

Go to the source code of this file.

Data Structures

struct  ProresContext
 

Macros

#define DEFAULT_SLICE_MB_WIDTH   8
 
#define QSCALE(qmat, ind, val)   ((val) / ((qmat)[ind]))
 
#define TO_GOLOMB(val)   (((val) * 2) ^ ((val) >> 31))
 
#define DIFF_SIGN(val, sign)   (((val) >> 31) ^ (sign))
 
#define IS_NEGATIVE(val)   ((((val) >> 31) ^ -1) + 1)
 
#define TO_GOLOMB2(val, sign)   ((val)==0 ? 0 : ((val) << 1) + (sign))
 
#define FIRST_DC_CB   0xB8
 
#define OFFSET(x)   offsetof(ProresContext, x)
 
#define VE   AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
 

Functions

static void encode_codeword (PutBitContext *pb, int val, int codebook)
 
static av_always_inline int get_level (int val)
 
static void encode_dc_coeffs (PutBitContext *pb, int16_t *in, int blocks_per_slice, int *qmat)
 
static void encode_ac_coeffs (PutBitContext *pb, int16_t *in, int blocks_per_slice, int *qmat, const uint8_t ff_prores_scan[64])
 
static void get (uint8_t *pixels, int stride, int16_t *block)
 
static void fdct_get (FDCTDSPContext *fdsp, uint8_t *pixels, int stride, int16_t *block)
 
static void calc_plane_dct (FDCTDSPContext *fdsp, uint8_t *src, int16_t *blocks, int src_stride, int mb_count, int chroma, int is_422)
 
static int encode_slice_plane (int16_t *blocks, int mb_count, uint8_t *buf, unsigned buf_size, int *qmat, int sub_sample_chroma, const uint8_t ff_prores_scan[64])
 
static av_always_inline unsigned encode_slice_data (AVCodecContext *avctx, int16_t *blocks_y, int16_t *blocks_u, int16_t *blocks_v, unsigned mb_count, uint8_t *buf, unsigned data_size, unsigned *y_data_size, unsigned *u_data_size, unsigned *v_data_size, int qp)
 
static void put_alpha_diff (PutBitContext *pb, int cur, int prev)
 
static void put_alpha_run (PutBitContext *pb, int run)
 
static av_always_inline int encode_alpha_slice_data (AVCodecContext *avctx, int8_t *src_a, unsigned mb_count, uint8_t *buf, unsigned data_size, unsigned *a_data_size)
 
static void subimage_with_fill_template (uint16_t *src, unsigned x, unsigned y, unsigned stride, unsigned width, unsigned height, uint16_t *dst, unsigned dst_width, unsigned dst_height, int is_alpha_plane, int is_interlaced, int is_top_field)
 
static void subimage_with_fill (uint16_t *src, unsigned x, unsigned y, unsigned stride, unsigned width, unsigned height, uint16_t *dst, unsigned dst_width, unsigned dst_height, int is_interlaced, int is_top_field)
 
static void subimage_alpha_with_fill (uint16_t *src, unsigned x, unsigned y, unsigned stride, unsigned width, unsigned height, uint16_t *dst, unsigned dst_width, unsigned dst_height, int is_interlaced, int is_top_field)
 
static int encode_slice (AVCodecContext *avctx, const AVFrame *pic, int mb_x, int mb_y, unsigned mb_count, uint8_t *buf, unsigned data_size, int unsafe, int *qp, int is_interlaced, int is_top_field)
 
static int prores_encode_picture (AVCodecContext *avctx, const AVFrame *pic, uint8_t *buf, const int buf_size, const int picture_index, const int is_top_field)
 
static int prores_encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
 
static void scale_mat (const uint8_t *src, int *dst, int scale)
 
static av_cold int prores_encode_init (AVCodecContext *avctx)
 
static av_cold int prores_encode_close (AVCodecContext *avctx)
 

Variables

static const AVProfile profiles []
 
static const int qp_start_table [6] = { 8, 3, 2, 1, 1, 1}
 
static const int qp_end_table [6] = { 13, 9, 6, 6, 5, 4}
 
static const int bitrate_table [6] = { 1000, 2100, 3500, 5400, 7000, 10000}
 
static const int valid_primaries [9]
 
static const int valid_trc [4] = { AVCOL_TRC_RESERVED0, AVCOL_TRC_BT709, AVCOL_TRC_UNSPECIFIED, INT_MAX }
 
static const int valid_colorspace [5]
 
static const uint8_t QMAT_LUMA [6][64]
 
static const uint8_t QMAT_CHROMA [6][64]
 
static const uint8_t dc_codebook [7] = { 0x04, 0x28, 0x28, 0x4D, 0x4D, 0x70, 0x70}
 
static const uint8_t run_to_cb [16]
 
static const uint8_t lev_to_cb [10]
 
static const AVOption options []
 
static const AVClass proresaw_enc_class
 
static const AVClass prores_enc_class
 
AVCodec ff_prores_aw_encoder
 
AVCodec ff_prores_encoder
 

Detailed Description

Apple ProRes encoder (Anatoliy Wasserman version) Known FOURCCs: 'ap4h' (444), 'apch' (HQ), 'apcn' (422), 'apcs' (LT), 'acpo' (Proxy)

Definition in file proresenc_anatoliy.c.

Macro Definition Documentation

◆ DEFAULT_SLICE_MB_WIDTH

#define DEFAULT_SLICE_MB_WIDTH   8

Definition at line 40 of file proresenc_anatoliy.c.

◆ QSCALE

#define QSCALE (   qmat,
  ind,
  val 
)    ((val) / ((qmat)[ind]))

Definition at line 226 of file proresenc_anatoliy.c.

◆ TO_GOLOMB

#define TO_GOLOMB (   val)    (((val) * 2) ^ ((val) >> 31))

Definition at line 227 of file proresenc_anatoliy.c.

◆ DIFF_SIGN

#define DIFF_SIGN (   val,
  sign 
)    (((val) >> 31) ^ (sign))

Definition at line 228 of file proresenc_anatoliy.c.

◆ IS_NEGATIVE

#define IS_NEGATIVE (   val)    ((((val) >> 31) ^ -1) + 1)

Definition at line 229 of file proresenc_anatoliy.c.

◆ TO_GOLOMB2

#define TO_GOLOMB2 (   val,
  sign 
)    ((val)==0 ? 0 : ((val) << 1) + (sign))

Definition at line 230 of file proresenc_anatoliy.c.

◆ FIRST_DC_CB

#define FIRST_DC_CB   0xB8

Definition at line 238 of file proresenc_anatoliy.c.

◆ OFFSET

#define OFFSET (   x)    offsetof(ProresContext, x)

Definition at line 923 of file proresenc_anatoliy.c.

◆ VE

Definition at line 924 of file proresenc_anatoliy.c.

Function Documentation

◆ encode_codeword()

static void encode_codeword ( PutBitContext pb,
int  val,
int  codebook 
)
static

Definition at line 198 of file proresenc_anatoliy.c.

Referenced by encode_ac_coeffs(), and encode_dc_coeffs().

◆ get_level()

static av_always_inline int get_level ( int  val)
static

Definition at line 232 of file proresenc_anatoliy.c.

Referenced by encode_ac_coeffs(), and encode_dc_coeffs().

◆ encode_dc_coeffs()

static void encode_dc_coeffs ( PutBitContext pb,
int16_t *  in,
int  blocks_per_slice,
int qmat 
)
static

Definition at line 242 of file proresenc_anatoliy.c.

Referenced by encode_slice_plane().

◆ encode_ac_coeffs()

static void encode_ac_coeffs ( PutBitContext pb,
int16_t *  in,
int  blocks_per_slice,
int qmat,
const uint8_t  ff_prores_scan[64] 
)
static

Definition at line 273 of file proresenc_anatoliy.c.

Referenced by encode_slice_plane().

◆ get()

static void get ( uint8_t pixels,
int  stride,
int16_t *  block 
)
static

Definition at line 304 of file proresenc_anatoliy.c.

Referenced by decode_str(), fdct_get(), and ff_framesync_get_frame().

◆ fdct_get()

static void fdct_get ( FDCTDSPContext fdsp,
uint8_t pixels,
int  stride,
int16_t *  block 
)
static

Definition at line 316 of file proresenc_anatoliy.c.

Referenced by calc_plane_dct().

◆ calc_plane_dct()

static void calc_plane_dct ( FDCTDSPContext fdsp,
uint8_t src,
int16_t *  blocks,
int  src_stride,
int  mb_count,
int  chroma,
int  is_422 
)
static

Definition at line 322 of file proresenc_anatoliy.c.

Referenced by encode_slice().

◆ encode_slice_plane()

static int encode_slice_plane ( int16_t *  blocks,
int  mb_count,
uint8_t buf,
unsigned  buf_size,
int qmat,
int  sub_sample_chroma,
const uint8_t  ff_prores_scan[64] 
)
static

Definition at line 359 of file proresenc_anatoliy.c.

Referenced by encode_slice_data().

◆ encode_slice_data()

static av_always_inline unsigned encode_slice_data ( AVCodecContext avctx,
int16_t *  blocks_y,
int16_t *  blocks_u,
int16_t *  blocks_v,
unsigned  mb_count,
uint8_t buf,
unsigned  data_size,
unsigned *  y_data_size,
unsigned *  u_data_size,
unsigned *  v_data_size,
int  qp 
)
static

Definition at line 375 of file proresenc_anatoliy.c.

Referenced by encode_slice().

◆ put_alpha_diff()

static void put_alpha_diff ( PutBitContext pb,
int  cur,
int  prev 
)
static

Definition at line 398 of file proresenc_anatoliy.c.

Referenced by encode_alpha_slice_data().

◆ put_alpha_run()

static void put_alpha_run ( PutBitContext pb,
int  run 
)
inlinestatic

Definition at line 418 of file proresenc_anatoliy.c.

Referenced by encode_alpha_slice_data().

◆ encode_alpha_slice_data()

static av_always_inline int encode_alpha_slice_data ( AVCodecContext avctx,
int8_t *  src_a,
unsigned  mb_count,
uint8_t buf,
unsigned  data_size,
unsigned *  a_data_size 
)
static

Definition at line 431 of file proresenc_anatoliy.c.

Referenced by encode_slice().

◆ subimage_with_fill_template()

static void subimage_with_fill_template ( uint16_t *  src,
unsigned  x,
unsigned  y,
unsigned  stride,
unsigned  width,
unsigned  height,
uint16_t *  dst,
unsigned  dst_width,
unsigned  dst_height,
int  is_alpha_plane,
int  is_interlaced,
int  is_top_field 
)
inlinestatic

Definition at line 472 of file proresenc_anatoliy.c.

Referenced by subimage_alpha_with_fill(), and subimage_with_fill().

◆ subimage_with_fill()

static void subimage_with_fill ( uint16_t *  src,
unsigned  x,
unsigned  y,
unsigned  stride,
unsigned  width,
unsigned  height,
uint16_t *  dst,
unsigned  dst_width,
unsigned  dst_height,
int  is_interlaced,
int  is_top_field 
)
static

Definition at line 520 of file proresenc_anatoliy.c.

Referenced by encode_slice().

◆ subimage_alpha_with_fill()

static void subimage_alpha_with_fill ( uint16_t *  src,
unsigned  x,
unsigned  y,
unsigned  stride,
unsigned  width,
unsigned  height,
uint16_t *  dst,
unsigned  dst_width,
unsigned  dst_height,
int  is_interlaced,
int  is_top_field 
)
static

Definition at line 528 of file proresenc_anatoliy.c.

Referenced by encode_slice().

◆ encode_slice()

static int encode_slice ( AVCodecContext avctx,
const AVFrame pic,
int  mb_x,
int  mb_y,
unsigned  mb_count,
uint8_t buf,
unsigned  data_size,
int  unsafe,
int qp,
int  is_interlaced,
int  is_top_field 
)
static

Definition at line 535 of file proresenc_anatoliy.c.

Referenced by prores_encode_picture().

◆ prores_encode_picture()

static int prores_encode_picture ( AVCodecContext avctx,
const AVFrame pic,
uint8_t buf,
const int  buf_size,
const int  picture_index,
const int  is_top_field 
)
static

Definition at line 653 of file proresenc_anatoliy.c.

Referenced by prores_encode_frame().

◆ prores_encode_frame()

static int prores_encode_frame ( AVCodecContext avctx,
AVPacket pkt,
const AVFrame pict,
int got_packet 
)
static

Definition at line 717 of file proresenc_anatoliy.c.

◆ scale_mat()

static void scale_mat ( const uint8_t src,
int dst,
int  scale 
)
static

Definition at line 802 of file proresenc_anatoliy.c.

Referenced by prores_encode_init().

◆ prores_encode_init()

static av_cold int prores_encode_init ( AVCodecContext avctx)
static

Definition at line 809 of file proresenc_anatoliy.c.

◆ prores_encode_close()

static av_cold int prores_encode_close ( AVCodecContext avctx)
static

Definition at line 914 of file proresenc_anatoliy.c.

Variable Documentation

◆ profiles

const AVProfile profiles[]
static
Initial value:

Definition at line 42 of file proresenc_anatoliy.c.

Referenced by prores_encode_init().

◆ qp_start_table

const int qp_start_table[6] = { 8, 3, 2, 1, 1, 1}
static

Definition at line 52 of file proresenc_anatoliy.c.

Referenced by encode_slice(), and prores_encode_picture().

◆ qp_end_table

const int qp_end_table[6] = { 13, 9, 6, 6, 5, 4}
static

Definition at line 53 of file proresenc_anatoliy.c.

Referenced by encode_slice().

◆ bitrate_table

const int bitrate_table[6] = { 1000, 2100, 3500, 5400, 7000, 10000}
static

Definition at line 54 of file proresenc_anatoliy.c.

Referenced by encode_slice().

◆ valid_primaries

const int valid_primaries[9]
static

◆ valid_trc

const int valid_trc[4] = { AVCOL_TRC_RESERVED0, AVCOL_TRC_BT709, AVCOL_TRC_UNSPECIFIED, INT_MAX }
static

Definition at line 58 of file proresenc_anatoliy.c.

Referenced by prores_encode_frame().

◆ valid_colorspace

const int valid_colorspace[5]
static
Initial value:

Definition at line 59 of file proresenc_anatoliy.c.

Referenced by prores_encode_frame().

◆ QMAT_LUMA

const uint8_t QMAT_LUMA[6][64]
static

Definition at line 62 of file proresenc_anatoliy.c.

Referenced by prores_encode_frame(), and prores_encode_init().

◆ QMAT_CHROMA

const uint8_t QMAT_CHROMA[6][64]
static

Definition at line 120 of file proresenc_anatoliy.c.

Referenced by prores_encode_frame(), and prores_encode_init().

◆ dc_codebook

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

Definition at line 240 of file proresenc_anatoliy.c.

Referenced by encode_dc_coeffs().

◆ run_to_cb

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

Definition at line 268 of file proresenc_anatoliy.c.

Referenced by encode_ac_coeffs().

◆ lev_to_cb

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

Definition at line 270 of file proresenc_anatoliy.c.

Referenced by encode_ac_coeffs().

◆ options

const AVOption options[]
static
Initial value:
= {
{ "vendor", "vendor ID", OFFSET(vendor), AV_OPT_TYPE_STRING, { .str = "fmpg" }, CHAR_MIN, CHAR_MAX, VE },
{ NULL }
}

Definition at line 926 of file proresenc_anatoliy.c.

◆ proresaw_enc_class

const AVClass proresaw_enc_class
static
Initial value:
= {
.class_name = "ProResAw encoder",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 931 of file proresenc_anatoliy.c.

◆ prores_enc_class

const AVClass prores_enc_class
static
Initial value:
= {
.class_name = "ProRes encoder",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 938 of file proresenc_anatoliy.c.

◆ ff_prores_aw_encoder

AVCodec ff_prores_aw_encoder
Initial value:

Definition at line 945 of file proresenc_anatoliy.c.

◆ ff_prores_encoder

AVCodec ff_prores_encoder
Initial value:

Definition at line 960 of file proresenc_anatoliy.c.

AV_CODEC_CAP_INTRA_ONLY
#define AV_CODEC_CAP_INTRA_ONLY
Codec is intra only.
Definition: avcodec.h:1067
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
FF_PROFILE_PRORES_XQ
#define FF_PROFILE_PRORES_XQ
Definition: avcodec.h:3008
init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
ff_prores_profiles
const AVProfile ff_prores_profiles[]
Definition: profiles.c:154
options
static const AVOption options[]
Definition: proresenc_anatoliy.c:926
prores_enc_class
static const AVClass prores_enc_class
Definition: proresenc_anatoliy.c:938
ProresContext
Definition: proresdec.h:38
VE
#define VE
Definition: proresenc_anatoliy.c:924
prores_encode_init
static av_cold int prores_encode_init(AVCodecContext *avctx)
Definition: proresenc_anatoliy.c:809
FF_PROFILE_PRORES_LT
#define FF_PROFILE_PRORES_LT
Definition: avcodec.h:3004
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:390
AVCOL_PRI_RESERVED0
@ AVCOL_PRI_RESERVED0
Definition: pixfmt.h:444
prores_encode_frame
static int prores_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
Definition: proresenc_anatoliy.c:717
prores_encode_close
static av_cold int prores_encode_close(AVCodecContext *avctx)
Definition: proresenc_anatoliy.c:914
AVCOL_SPC_SMPTE170M
@ AVCOL_SPC_SMPTE170M
also ITU-R BT601-6 525 / ITU-R BT1358 525 / ITU-R BT1700 NTSC
Definition: pixfmt.h:503
FF_PROFILE_UNKNOWN
#define FF_PROFILE_UNKNOWN
Definition: avcodec.h:2899
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:275
AVCOL_PRI_UNSPECIFIED
@ AVCOL_PRI_UNSPECIFIED
Definition: pixfmt.h:446
AVCOL_PRI_BT470BG
@ AVCOL_PRI_BT470BG
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM
Definition: pixfmt.h:450
AVCOL_PRI_SMPTE170M
@ AVCOL_PRI_SMPTE170M
also ITU-R BT601-6 525 / ITU-R BT1358 525 / ITU-R BT1700 NTSC
Definition: pixfmt.h:451
AV_CODEC_CAP_FRAME_THREADS
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: avcodec.h:1037
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
NULL
#define NULL
Definition: coverity.c:32
AVCOL_PRI_BT709
@ AVCOL_PRI_BT709
also ITU-R BT1361 / IEC 61966-2-4 / SMPTE RP177 Annex B
Definition: pixfmt.h:445
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:388
AVCOL_PRI_BT2020
@ AVCOL_PRI_BT2020
ITU-R BT2020.
Definition: pixfmt.h:454
AVCOL_PRI_SMPTE431
@ AVCOL_PRI_SMPTE431
SMPTE ST 431-2 (2011) / DCI P3.
Definition: pixfmt.h:457
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
FF_PROFILE_PRORES_HQ
#define FF_PROFILE_PRORES_HQ
Definition: avcodec.h:3006
FF_PROFILE_PRORES_STANDARD
#define FF_PROFILE_PRORES_STANDARD
Definition: avcodec.h:3005
AV_PIX_FMT_YUVA444P10
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:426
proresaw_enc_class
static const AVClass proresaw_enc_class
Definition: proresenc_anatoliy.c:931
AVCOL_SPC_BT2020_NCL
@ AVCOL_SPC_BT2020_NCL
ITU-R BT2020 non-constant luminance system.
Definition: pixfmt.h:507
OFFSET
#define OFFSET(x)
Definition: proresenc_anatoliy.c:923
AVCOL_SPC_UNSPECIFIED
@ AVCOL_SPC_UNSPECIFIED
Definition: pixfmt.h:499
FF_PROFILE_PRORES_4444
#define FF_PROFILE_PRORES_4444
Definition: avcodec.h:3007
FF_PROFILE_PRORES_PROXY
#define FF_PROFILE_PRORES_PROXY
Definition: avcodec.h:3003
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVCOL_PRI_SMPTE432
@ AVCOL_PRI_SMPTE432
SMPTE ST 432-1 (2010) / P3 D65 / Display P3.
Definition: pixfmt.h:458
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:227
AVCOL_SPC_BT709
@ AVCOL_SPC_BT709
also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
Definition: pixfmt.h:498
AV_CODEC_ID_PRORES
@ AV_CODEC_ID_PRORES
Definition: avcodec.h:366