HomeSort by relevance Sort by last modified time
    Searched refs:AOM_PLANE_Y (Results 1 - 25 of 25) sorted by null

  /external/libaom/libaom/test/
util.h 36 int64_t d = img1->planes[AOM_PLANE_Y][i * img1->stride[AOM_PLANE_Y] + j] -
37 img2->planes[AOM_PLANE_Y][i * img2->stride[AOM_PLANE_Y] + j];
y4m_test.cc 62 static const int PLANES_YUV[] = { AOM_PLANE_Y, AOM_PLANE_U, AOM_PLANE_V };
  /external/libaom/libaom/aom/src/
aom_image.c 138 img->stride[AOM_PLANE_Y] = stride_in_bytes;
192 img->planes[AOM_PLANE_Y] =
193 data + x * bytes_per_sample + y * img->stride[AOM_PLANE_Y];
194 data += (img->h + 2 * border) * img->stride[AOM_PLANE_Y];
227 img->planes[AOM_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[AOM_PLANE_Y];
228 img->stride[AOM_PLANE_Y] = -img->stride[AOM_PLANE_Y];
  /external/libaom/libaom/av1/
av1_iface_common.h 52 img->planes[AOM_PLANE_Y] = yv12->y_buffer;
55 img->stride[AOM_PLANE_Y] = yv12->y_stride;
63 img->planes[AOM_PLANE_Y] = (uint8_t *)CONVERT_TO_SHORTPTR(yv12->y_buffer);
66 img->stride[AOM_PLANE_Y] = 2 * yv12->y_stride;
80 yv12->y_buffer = img->planes[AOM_PLANE_Y];
98 yv12->y_stride = img->stride[AOM_PLANE_Y];
  /external/libaom/libaom/common/
rawenc.c 75 if (img->monochrome && plane != AOM_PLANE_Y) {
y4minput.c     [all...]
  /external/libaom/libaom/apps/
aomdec.c 126 (uint16_t *)src->planes[AOM_PLANE_Y], src->stride[AOM_PLANE_Y] / 2,
129 src->d_w, src->d_h, (uint16_t *)dst->planes[AOM_PLANE_Y],
130 dst->stride[AOM_PLANE_Y] / 2, (uint16_t *)dst->planes[AOM_PLANE_U],
136 return I420Scale(src->planes[AOM_PLANE_Y], src->stride[AOM_PLANE_Y],
139 src->d_h, dst->planes[AOM_PLANE_Y], dst->stride[AOM_PLANE_Y],
805 const int PLANES_YUV[] = { AOM_PLANE_Y, AOM_PLANE_U, AOM_PLANE_V };
806 const int PLANES_YVU[] = { AOM_PLANE_Y, AOM_PLANE_V, AOM_PLANE_U }
    [all...]
aomenc.c     [all...]
  /external/libaom/libaom/aom/
aom_image.h 169 #define AOM_PLANE_Y 0 /**< Y (Luminance) plane */
  /external/libaom/libaom/examples/
encoder_util.c 31 const int is_y_plane = (plane == AOM_PLANE_Y);
84 find_mismatch_plane(img1, img2, AOM_PLANE_Y, use_highbitdepth, yloc);
  /external/libaom/libaom/av1/common/
cfl.c 381 struct macroblockd_plane *const pd = &xd->plane[AOM_PLANE_Y];
396 struct macroblockd_plane *const pd = &xd->plane[AOM_PLANE_Y];
403 const int width = max_intra_block_width(xd, bsize, AOM_PLANE_Y, tx_size);
404 const int height = max_intra_block_height(xd, bsize, AOM_PLANE_Y, tx_size);
cdef_block.c 189 sec_damping += coeff_shift - (pli != AOM_PLANE_Y);
190 pri_damping += coeff_shift - (pli != AOM_PLANE_Y);
reconintra.c     [all...]
av1_loopfilter.c 538 assert(plane_start >= AOM_PLANE_Y);
    [all...]
  /external/libaom/libaom/aom_dsp/
grain_synthesis.c     [all...]
  /external/libaom/libaom/av1/encoder/
mbgraph.c 75 BLOCK_16X16, AOM_PLANE_Y, AOM_PLANE_Y);
firstpass.c 660 AOM_PLANE_Y, AOM_PLANE_Y);
var_based_part.c 531 cm->seq_params.sb_size, AOM_PLANE_Y,
532 AOM_PLANE_Y);
pickrst.c 144 const int is_uv = plane != AOM_PLANE_Y;
    [all...]
mcomp.c     [all...]
rdopt.c     [all...]
encodemb.c 629 if (plane == AOM_PLANE_Y && xd->cfl.store_y) {
  /frameworks/av/media/codec2/components/aom/
C2SoftAomDec.cpp 696 size_t srcYStride = img->stride[AOM_PLANE_Y];
704 const uint16_t *srcY = (const uint16_t *)img->planes[AOM_PLANE_Y];
720 const uint8_t *srcY = (const uint8_t *)img->planes[AOM_PLANE_Y];
  /external/libaom/libaom/av1/decoder/
decodetxb.c 158 if (plane == AOM_PLANE_Y) {
decodeframe.c 241 if (plane == AOM_PLANE_Y && store_cfl_required(cm, xd)) {
    [all...]

Completed in 708 milliseconds