39      0,  0,  0,  0,  0,  0,  1,  1,  1,  1,  1,  2,  2,  2,  3,  3,
 
   40      4,  4,  5,  5,  6,  7,  8,  9, 10, 11, 12, 13, 15, 16, 18, 20,
 
   41     22, 24, 26, 28, 30, 33, 33, 35, 35, 36, 37, 37, 39, 39, 42, 44,
 
   42     46, 48, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64
 
   46      0,  0,  0,  0,  0,  0,  1,  1,  1,  1,  1,  1,  1,  2,  2,  2,
 
   47      2,  2,  3,  3,  3,  3,  4,  4,  4,  4,  5,  5,  5,  5,  6,  6,
 
   48      6,  7,  7,  7,  8,  8,  8,  9,  9, 10, 10, 11, 11, 12, 13, 14,
 
   49     15, 16, 17, 18, 19, 20, 21, 22, 23, 23, 24, 24, 25, 25, 26, 27
 
   53     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
 
   54     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2,
 
   55     2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4,
 
   56     5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9
 
   78     if((abs(mvP->
x - mvQ->
x) >= 4) ||
 
   79        (abs(mvP->
y - mvQ->
y) >= 4) ||
 
   85         if((abs(mvP->
x - mvQ->
x) >= 4) ||
 
   86            (abs(mvP->
y - mvQ->
y) >= 4) ||
 
   94     alpha = alpha_tab[av_clip_uintp2(qp_avg + h->alpha_offset, 6)];  \ 
   95     beta  =  beta_tab[av_clip_uintp2(qp_avg + h->beta_offset,  6)];  \ 
   96     tc    =    tc_tab[av_clip_uintp2(qp_avg + h->alpha_offset, 6)]; 
  123     for (i = 0; i < 8; i++) {
 
  131         if (mb_type == 
I_8X8)
 
  204         for (i = 0; i < 8; i++)
 
  212             memset(&top[9], top[8], 9);
 
  228         for (i = 0; i < 8; i++)
 
  231         memcpy(&top[0], h->
cy + 7 + 7 * h->
l_stride, 9);
 
  232         memset(&top[9], top[8], 9);
 
  264     for (y = 0; y < 8; y++)
 
  265         *((uint64_t *)(d + y * stride)) = 
a;
 
  272     for (y = 0; y < 8; y++) {
 
  273         a = left[y + 1] * 0x0101010101010101ULL;
 
  274         *((uint64_t *)(d + y * stride)) = a;
 
  281     uint64_t 
a = 0x8080808080808080ULL;
 
  282     for (y = 0; y < 8; y++)
 
  283         *((uint64_t *)(d + y * stride)) = 
a;
 
  293     for (x = 0; x < 4; x++) {
 
  294         ih += (x + 1) *  (top[5 + x] -  top[3 - x]);
 
  295         iv += (x + 1) * (left[5 + x] - left[3 - x]);
 
  297     ia = (top[8] + left[8]) << 4;
 
  298     ih = (17 * ih + 16) >> 5;
 
  299     iv = (17 * iv + 16) >> 5;
 
  300     for (y = 0; y < 8; y++)
 
  301         for (x = 0; x < 8; x++)
 
  302             d[y * stride + x] = cm[(ia + (x - 3) * ih + (y - 3) * iv + 16) >> 5];
 
  305 #define LOWPASS(ARRAY, INDEX)                                           \ 
  306     ((ARRAY[(INDEX) - 1] + 2 * ARRAY[(INDEX)] + ARRAY[(INDEX) + 1] + 2) >> 2) 
  311     for (y = 0; y < 8; y++)
 
  312         for (x = 0; x < 8; x++)
 
  313             d[y * stride + x] = (
LOWPASS(top, x + 1) + 
LOWPASS(left, y + 1)) >> 1;
 
  319     for (y = 0; y < 8; y++)
 
  320         for (x = 0; x < 8; x++)
 
  321             d[y * stride + x] = (
LOWPASS(top, x + y + 2) + 
LOWPASS(left, x + y + 2)) >> 1;
 
  327     for (y = 0; y < 8; y++)
 
  328         for (x = 0; x < 8; x++)
 
  330                 d[y * stride + x] = (left[1] + 2 * top[0] + top[1] + 2) >> 2;
 
  332                 d[y * stride + x] = 
LOWPASS(top, x - y);
 
  334                 d[y * stride + x] = 
LOWPASS(left, y - x);
 
  340     for (y = 0; y < 8; y++)
 
  341         for (x = 0; x < 8; x++)
 
  342             d[y * stride + x] = 
LOWPASS(left, y + 1);
 
  348     for (y = 0; y < 8; y++)
 
  349         for (x = 0; x < 8; x++)
 
  350             d[y * stride + x] = 
LOWPASS(top, x + 1);
 
  357     *mode = mod_table[*
mode];
 
  394                                int src_x_offset, 
int src_y_offset,
 
  398     const int mx         = mv->
x + src_x_offset * 8;
 
  399     const int my         = mv->
y + src_y_offset * 8;
 
  400     const int luma_xy    = (mx & 3) + ((my & 3) << 2);
 
  405     int extra_height     = extra_width;
 
  406     const int full_mx    = mx >> 2;
 
  407     const int full_my    = my >> 2;
 
  408     const int pic_width  = 16 * h->
mb_width;
 
  409     const int pic_height = 16 * h->
mb_height;
 
  419     if (full_mx < 0 - extra_width ||
 
  420         full_my < 0 - extra_height ||
 
  421         full_mx + 16  > pic_width + extra_width ||
 
  422         full_my + 16  > pic_height + extra_height) {
 
  427                                  full_mx - 2, full_my - 2,
 
  428                                  pic_width, pic_height);
 
  434     qpix_op[luma_xy](dest_y, src_y, h->
l_stride);
 
  441                                  pic_width >> 1, pic_height >> 1);
 
  444     chroma_op(dest_cb, src_cb, h->
c_stride, chroma_height, mx & 7, my & 7);
 
  451                                  pic_width >> 1, pic_height >> 1);
 
  454     chroma_op(dest_cr, src_cr, h->
c_stride, chroma_height, mx & 7, my & 7);
 
  461                                int x_offset, 
int y_offset,
 
  471     dest_y   += x_offset * 2 + y_offset * h->
l_stride * 2;
 
  472     dest_cb  += x_offset     + y_offset * h->
c_stride;
 
  473     dest_cr  += x_offset     + y_offset * h->
c_stride;
 
  474     x_offset += 8 * h->
mbx;
 
  475     y_offset += 8 * h->
mby;
 
  480                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
 
  481                     qpix_op, chroma_op, mv);
 
  484         chroma_op = chroma_avg;
 
  490                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
 
  543     *d_x = (src->
x * distp * den + 256 + 
FF_SIGNBIT(src->
x)) >> 9;
 
  544     *d_y = (src->
y * distp * den + 256 + 
FF_SIGNBIT(src->
y)) >> 9;
 
  553     int ax, ay, bx, by, cx, cy;
 
  554     int len_ab, len_bc, len_ca, len_mid;
 
  561     len_ab  = abs(ax - bx) + abs(ay - by);
 
  562     len_bc  = abs(bx - cx) + abs(by - cy);
 
  563     len_ca  = abs(cx - ax) + abs(cy - ay);
 
  564     len_mid = 
mid_pred(len_ab, len_bc, len_ca);
 
  565     if (len_mid == len_ab) {
 
  568     } 
else if (len_mid == len_bc) {
 
  589         mvC = &h->
mv[nP - 5];  
 
  593          (mvA->
x | mvA->
y | mvA->
ref) == 0 ||
 
  594          (mvB->
x | mvB->
y | mvB->
ref) == 0)) {
 
  597     } 
else if (mvA->
ref >= 0 && mvB->
ref < 0  && mvC->
ref < 0) {
 
  599     } 
else if (mvA->
ref < 0  && mvB->
ref >= 0 && mvC->
ref < 0) {
 
  601     } 
else if (mvA->
ref < 0  && mvB->
ref < 0  && mvC->
ref >= 0) {
 
  637     for (i = 0; i < 3; i++) {
 
  682     for (i = 0; i <= 20; i += 4)
 
  683         h->
mv[i] = h->
mv[i + 2];
 
  697         for (i = 0; i <= 20; i += 4)
 
  723     for (i = 0; i <= 20; i += 4)
 
void(* intra_pred_c[7])(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
void ff_cavs_modify_mb_i(AVSContext *h, int *pred_mode_uv)
 
This structure describes decoded (raw) audio or video data. 
 
uint8_t * edge_emu_buffer
 
static int get_se_golomb(GetBitContext *gb)
read signed exp golomb code. 
 
void(* cavs_filter_cv)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2)
 
static int get_bs(cavs_vector *mvP, cavs_vector *mvQ, int b)
 
static const int8_t left_modifier_c[7]
 
av_cold int ff_cavs_end(AVCodecContext *avctx)
 
int mbidx
macroblock coordinates 
 
const uint8_t ff_cavs_chroma_qp[64]
 
void(* cavs_filter_lv)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2)
 
static void intra_pred_lp_top(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
h264_chroma_mc_func put_h264_chroma_pixels_tab[4]
 
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx. 
 
void ff_cavs_init_mb(AVSContext *h)
initialise predictors for motion vectors and intra prediction 
 
void(* qpel_mc_func)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
 
av_cold void ff_h264chroma_init(H264ChromaContext *c, int bit_depth)
 
void(* cavs_filter_lh)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2)
 
uint8_t intern_border_y[26]
 
void(* emulated_edge_mc)(uint8_t *dst, const uint8_t *src, ptrdiff_t dst_linesize, ptrdiff_t src_linesize, int block_w, int block_h, int src_x, int src_y, int w, int h)
Copy a rectangular area of samples to a temporary buffer and replicate the border samples...
 
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values. 
 
static const int8_t left_modifier_l[8]
 
uint8_t * top_border_y
intra prediction is done with un-deblocked samples they are saved here before deblocking the MB ...
 
av_cold void ff_cavsdsp_init(CAVSDSPContext *c, AVCodecContext *avctx)
 
cavs_vector mv[2 *4 *3]
mv motion vector cache 0: D3 B2 B3 C2 4: A1 X0 X1 - 8: A3 X2 X3 - 
 
static void intra_pred_plane(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
bitstream reader API header. 
 
void ff_cavs_filter(AVSContext *h, enum cavs_mb mb_type)
in-loop deblocking filter for a single macroblock 
 
int dist[2]
temporal distances from current frame to ref frames 
 
static void scale_mv(AVSContext *h, int *d_x, int *d_y, cavs_vector *src, int distp)
 
static void mv_pred_median(AVSContext *h, cavs_vector *mvP, cavs_vector *mvA, cavs_vector *mvB, cavs_vector *mvC)
 
static double alpha(void *priv, double x, double y)
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered. 
 
int scale_den[2]
for scaling neighbouring MVs 
 
AVSFrame cur
currently decoded frame 
 
int ff_cavs_next_mb(AVSContext *h)
save predictors for later macroblocks and increase macroblock address 
 
void ff_cavs_inter(AVSContext *h, enum cavs_mb mb_type)
 
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g. 
 
static void intra_pred_dc_128(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
uint8_t left_border_y[26]
 
static const uint8_t beta_tab[64]
 
void ff_cavs_load_intra_pred_luma(AVSContext *h, uint8_t *top, uint8_t **left, int block)
 
static void intra_pred_lp_left(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
Libavcodec external API header. 
 
AVSFrame DPB[2]
reference frames 
 
static const int8_t top_modifier_c[7]
 
uint8_t * cv
current MB sample pointers 
 
void ff_cavs_load_intra_pred_chroma(AVSContext *h)
 
av_cold void ff_videodsp_init(VideoDSPContext *ctx, int bpc)
 
static void intra_pred_horiz(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
qpel_mc_func put_cavs_qpel_pixels_tab[2][16]
 
av_cold int ff_cavs_init(AVCodecContext *avctx)
 
av_cold void ff_init_scantable_permutation(uint8_t *idct_permutation, enum idct_permutation_type perm_type)
 
uint8_t left_border_u[10]
 
static const uint8_t tc_tab[64]
 
const uint8_t ff_cavs_partition_flags[30]
 
void(* intra_pred_l[8])(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
int ff_cavs_init_top_lines(AVSContext *h)
some predictions require data from the top-neighbouring macroblock. 
 
const cavs_vector ff_cavs_dir_mv
mark block as "no prediction from this direction" e.g. 
 
uint8_t idct_permutation[64]
IDCT input permutation. 
 
uint8_t left_border_v[10]
 
void ff_cavs_mv(AVSContext *h, enum cavs_mv_loc nP, enum cavs_mv_loc nC, enum cavs_mv_pred mode, enum cavs_block size, int ref)
 
static void modify_pred(const int8_t *mod_table, int *mode)
 
static const int8_t mv[256][2]
 
static void intra_pred_lp(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
av_cold void ff_blockdsp_init(BlockDSPContext *c, AVCodecContext *avctx)
 
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line. 
 
main external API structure. 
 
static void mc_dir_part(AVSContext *h, AVFrame *pic, int chroma_height, int delta, int list, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int src_x_offset, int src_y_offset, qpel_mc_func *qpix_op, h264_chroma_mc_func chroma_op, cavs_vector *mv)
 
int pred_mode_Y[3 *3]
luma pred mode cache 0: – B2 B3 3: A1 X0 X1 6: A3 X2 X3 
 
static void intra_pred_down_left(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
const uint8_t ff_zigzag_direct[64]
 
qpel_mc_func avg_cavs_qpel_pixels_tab[2][16]
 
#define LOWPASS(ARRAY, INDEX)
 
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes. 
 
void(* h264_chroma_mc_func)(uint8_t *dst, uint8_t *src, int srcStride, int h, int x, int y)
 
GLint GLenum GLboolean GLsizei stride
 
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples) 
 
common internal api header. 
 
static const int8_t top_modifier_l[8]
 
int flags
availability flags of neighbouring macroblocks 
 
h264_chroma_mc_func avg_h264_chroma_pixels_tab[4]
 
static void intra_pred_vert(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
int ff_cavs_init_pic(AVSContext *h)
 
av_cold void ff_init_scantable(uint8_t *permutation, ScanTable *st, const uint8_t *src_scantable)
 
av_cold void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx)
 
static void intra_pred_down_right(uint8_t *d, uint8_t *top, uint8_t *left, int stride)
 
static void * av_mallocz_array(size_t nmemb, size_t size)
 
static const cavs_vector un_mv
mark block as unavailable, i.e. 
 
static void set_mvs(cavs_vector *mv, enum cavs_block size)
 
void(* cavs_filter_ch)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2)
 
H264ChromaContext h264chroma
 
static const uint8_t alpha_tab[64]
 
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
 
static void mc_part_std(AVSContext *h, int chroma_height, int delta, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int x_offset, int y_offset, qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put, qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg, cavs_vector *mv)