Home
last modified time | relevance | path

Searched refs:AOM_PLANE_U (Results 1 – 22 of 22) sorted by relevance

/external/libaom/libaom/av1/
Dav1_iface_common.h55 img->planes[AOM_PLANE_U] = yv12->u_buffer; in yuvconfig2image()
58 img->stride[AOM_PLANE_U] = yv12->uv_stride; in yuvconfig2image()
67 img->planes[AOM_PLANE_U] = (uint8_t *)CONVERT_TO_SHORTPTR(yv12->u_buffer); in yuvconfig2image()
70 img->stride[AOM_PLANE_U] = 2 * yv12->uv_stride; in yuvconfig2image()
86 yv12->u_buffer = img->planes[AOM_PLANE_U]; in image2yuvconfig()
104 yv12->uv_stride = img->stride[AOM_PLANE_U]; in image2yuvconfig()
/external/libaom/libaom/aom/src/
Daom_image.c155 img->stride[AOM_PLANE_U] = img->stride[AOM_PLANE_V] = stride_in_bytes >> xcs; in img_alloc_helper()
229 img->planes[AOM_PLANE_U] = in aom_img_set_rect()
230 data + uv_x * bytes_per_sample + uv_y * img->stride[AOM_PLANE_U]; in aom_img_set_rect()
232 img->stride[AOM_PLANE_U]; in aom_img_set_rect()
240 img->planes[AOM_PLANE_U] = in aom_img_set_rect()
241 data + uv_x * bytes_per_sample + uv_y * img->stride[AOM_PLANE_U]; in aom_img_set_rect()
259 img->planes[AOM_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1) * in aom_img_flip()
260 img->stride[AOM_PLANE_U]; in aom_img_flip()
261 img->stride[AOM_PLANE_U] = -img->stride[AOM_PLANE_U]; in aom_img_flip()
/external/libaom/libaom/apps/
Daomdec.c123 (uint16_t *)src->planes[AOM_PLANE_U], src->stride[AOM_PLANE_U] / 2, in libyuv_scale()
126 dst->stride[AOM_PLANE_Y] / 2, (uint16_t *)dst->planes[AOM_PLANE_U], in libyuv_scale()
127 dst->stride[AOM_PLANE_U] / 2, (uint16_t *)dst->planes[AOM_PLANE_V], in libyuv_scale()
133 src->planes[AOM_PLANE_U], src->stride[AOM_PLANE_U], in libyuv_scale()
136 dst->planes[AOM_PLANE_U], dst->stride[AOM_PLANE_U], in libyuv_scale()
804 const int PLANES_YUV[] = { AOM_PLANE_Y, AOM_PLANE_U, AOM_PLANE_V }; in main_loop()
805 const int PLANES_YVU[] = { AOM_PLANE_Y, AOM_PLANE_V, AOM_PLANE_U }; in main_loop()
Daomenc.c1976 (uint16_t *)img->planes[AOM_PLANE_U], img->stride[AOM_PLANE_U] / 2, in encode_frame()
1980 (uint16_t *)stream->img->planes[AOM_PLANE_U], in encode_frame()
1981 stream->img->stride[AOM_PLANE_U] / 2, in encode_frame()
2009 img->planes[AOM_PLANE_U], img->stride[AOM_PLANE_U], in encode_frame()
2012 stream->img->planes[AOM_PLANE_U], stream->img->stride[AOM_PLANE_U], in encode_frame()
/external/libaom/libaom/test/
Dmonochrome_test.cc41 int chroma_value = img.planes[AOM_PLANE_U][0]; in DecompressedFrameHook()
44 ComparePlaneToValue(img, AOM_PLANE_U, chroma_value) && in DecompressedFrameHook()
Dy4m_test.cc62 static const int PLANES_YUV[] = { AOM_PLANE_Y, AOM_PLANE_U, AOM_PLANE_V };
/external/webrtc/modules/video_coding/codecs/av1/
Dlibaom_av1_decoder.cc152 decoded_image->planes[AOM_PLANE_U], decoded_image->stride[AOM_PLANE_U], in Decode()
Dlibaom_av1_encoder.cc432 frame_for_encode_->planes[AOM_PLANE_U] = in Encode()
437 frame_for_encode_->stride[AOM_PLANE_U] = i420_buffer->StrideU(); in Encode()
/external/libaom/libaom/aom_dsp/
Dgrain_synthesis.c999 copy_rect(src->planes[AOM_PLANE_U], src->stride[AOM_PLANE_U], in av1_add_film_grain()
1000 dst->planes[AOM_PLANE_U], dst->stride[AOM_PLANE_U], in av1_add_film_grain()
1011 cb = dst->planes[AOM_PLANE_U]; in av1_add_film_grain()
1016 chroma_stride = dst->stride[AOM_PLANE_U] >> use_high_bit_depth; in av1_add_film_grain()
/external/libaom/libaom/av1/common/
Dcfl.h26 const int ssx = xd->plane[AOM_PLANE_U].subsampling_x; in is_cfl_allowed()
27 const int ssy = xd->plane[AOM_PLANE_U].subsampling_y; in is_cfl_allowed()
Dav1_common_int.h956 if (i == AOM_PLANE_U) { in av1_init_macroblockd()
/external/libaom/libaom/aom/
Daom_image.h200 #define AOM_PLANE_U 1 /**< U (Chroma) plane */ macro
/external/libaom/libaom/examples/
Dencoder_util.c85 find_mismatch_plane(img1, img2, AOM_PLANE_U, use_highbitdepth, uloc); in find_mismatch_helper()
/external/libaom/libaom/common/
Dtools_common.c99 : AOM_PLANE_U]; in read_yuv_frame()
103 yuv_frame->planes[yuv_frame->fmt == AOM_IMG_FMT_YV12 ? AOM_PLANE_U in read_yuv_frame()
Dy4minput.c1148 _img->stride[AOM_PLANE_U] = _img->stride[AOM_PLANE_V] = c_w; in y4m_input_fetch_frame()
1150 _img->planes[AOM_PLANE_U] = _y4m->dst_buf + pic_sz; in y4m_input_fetch_frame()
/external/libaom/libaom/av1/encoder/
Dintra_mode_search.c1322 const MACROBLOCKD_PLANE *pd = &xd->plane[AOM_PLANE_U]; in cfl_rd_pick_alpha()
1469 const TX_SIZE uv_tx_size = av1_get_tx_size(AOM_PLANE_U, xd); in av1_rd_pick_intra_sbuv_mode()
1580 uv_tx = av1_get_tx_size(AOM_PLANE_U, xd); in av1_search_palette_mode()
1855 const TX_SIZE uv_tx = av1_get_tx_size(AOM_PLANE_U, xd); in av1_handle_intra_mode()
Dinterp_search.c659 interp_model_rd_eval(x, cpi, bsize, orig_dst, AOM_PLANE_U, AOM_PLANE_V, in av1_interpolation_filter_search()
Dnonrd_pickmode.c1901 AOM_PLANE_U, AOM_PLANE_U);
Dcompound_type.c774 AOM_PLANE_U, num_planes - 1); in av1_handle_inter_intra_mode()
Dtx_search.c3390 struct macroblockd_plane *const pd = &xd->plane[AOM_PLANE_U]; in av1_txfm_uvrd()
3402 const TX_SIZE uv_tx_size = av1_get_tx_size(AOM_PLANE_U, xd); in av1_txfm_uvrd()
Drdopt.c2518 bsize, AOM_PLANE_U, num_planes - 1); in handle_inter_mode()
2862 const TX_SIZE max_uv_tx_size = av1_get_tx_size(AOM_PLANE_U, xd); in av1_rd_pick_intra_mode_sb()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c1892 av1_iqmatrix(quant_params, qmlevel_u, AOM_PLANE_U, j); in setup_segmentation_dequant()