/third_party/ffmpeg/libavcodec/ |
H A D | ivi.h | 205 uint16_t chroma_width; member 277 str1->chroma_width != str2->chroma_width || str1->chroma_height != str2->chroma_height || in ivi_pic_config_cmp()
|
H A D | indeo3.c | 170 int p, chroma_width, chroma_height; in allocate_frame_buffers() local 185 chroma_width = FFALIGN(luma_width >> 2, 4); in allocate_frame_buffers() 189 chroma_pitch = FFALIGN(chroma_width, 16); in allocate_frame_buffers() 202 ctx->planes[p].width = !p ? luma_width : chroma_width; in allocate_frame_buffers()
|
H A D | indeo5.c | 106 pic_conf.chroma_width = (pic_conf.pic_width + 3) >> 2; in decode_gop_header() 658 ctx->pic_conf.chroma_width = (avctx->width + 3) >> 2; in decode_init()
|
H A D | ffv1enc.c | 1058 const int chroma_width = AV_CEIL_RSHIFT(width, f->chroma_h_shift); in encode_slice() local 1066 ret |= encode_plane(fs, p->data[1] + ps*cx+cy*p->linesize[1], chroma_width, chroma_height, p->linesize[1], 1, 1); in encode_slice() 1067 ret |= encode_plane(fs, p->data[2] + ps*cx+cy*p->linesize[2], chroma_width, chroma_height, p->linesize[2], 1, 1); in encode_slice()
|
H A D | ffv1dec.c | 335 const int chroma_width = AV_CEIL_RSHIFT(width, f->chroma_h_shift); in decode_slice() local 342 decode_plane(fs, p->data[1] + ps*cx+cy*p->linesize[1], chroma_width, chroma_height, p->linesize[1], 1, 1); in decode_slice() 343 decode_plane(fs, p->data[2] + ps*cx+cy*p->linesize[2], chroma_width, chroma_height, p->linesize[2], 1, 1); in decode_slice()
|
H A D | indeo4.c | 175 pic_conf.chroma_width = (pic_conf.pic_width + 3) >> 2; in decode_pic_hdr()
|
H A D | mjpegdec.c | 1437 int i, mb_x, mb_y, chroma_h_shift, chroma_v_shift, chroma_width, chroma_height; in mjpeg_decode_scan() local 1456 chroma_width = AV_CEIL_RSHIFT(s->width, chroma_h_shift); in mjpeg_decode_scan() 1495 if ( 8*(h * mb_x + x) < ((c == 1) || (c == 2) ? chroma_width : s->width) in mjpeg_decode_scan()
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_mpeg12_decoder.h | 51 unsigned chroma_width, chroma_height; member
|
H A D | vl_mpeg12_decoder.c | 952 if (!vl_zscan_init(&dec->zscan_c, dec->context, dec->chroma_width, dec->chroma_height, in init_zscan() 1020 if(!vl_idct_init(&dec->idct_c, dec->context, dec->chroma_width, dec->chroma_height, in init_idct() 1142 dec->chroma_width = dec->base.width / 2; in vl_create_mpeg12_decoder() 1146 dec->chroma_width = dec->base.width / 2; in vl_create_mpeg12_decoder() 1150 dec->chroma_width = dec->base.width; in vl_create_mpeg12_decoder()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_deshake.c | 415 const int chroma_width = AV_CEIL_RSHIFT(link->w, desc->log2_chroma_w); in filter_frame() local 508 ff_get_matrix(t.vec.x / (link->w / chroma_width), t.vec.y / (link->h / chroma_height), t.angle, transform_zoom, transform_zoom, matrix_uv); in filter_frame() 510 ret = deshake->transform(link->dst, link->w, link->h, chroma_width, chroma_height, in filter_frame()
|
H A D | vf_deshake_opencl.c | 1401 const int chroma_width = AV_CEIL_RSHIFT(input_frame->width, desc->log2_chroma_w); in filter_frame() local 1404 const float center_w_chroma = (float)chroma_width / 2; in filter_frame() 1407 const float luma_w_over_chroma_w = ((float)input_frame->width / (float)chroma_width); in filter_frame() 1618 update_needed_crop(&deshake_ctx->crop_uv, transform_crop_uv, chroma_width, chroma_height); in filter_frame()
|