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

1 2

  /hardware/intel/img/psb_video/src/
psb_surface_attrib.h 50 unsigned int luma_stride, /* luma stride, could be width aligned with a special value */
65 unsigned int luma_stride, /* luma stride, could be width aligned with a special value */
psb_surface.c 164 unsigned int luma_stride, /* luma stride, could be width aligned with a special value */
179 psb_surface->stride = luma_stride;
198 unsigned int luma_stride, /* luma stride, could be width aligned with a special value */
212 psb_surface->stride = luma_stride;
216 } else if (512 == luma_stride) {
218 } else if (1024 == luma_stride) {
220 } else if (1280 == luma_stride) {
222 } else if (2048 == luma_stride) {
224 } else if (4096 == luma_stride) {
384 value.luma_stride = psb_surface->stride
    [all...]
psb_surface_attrib.c 68 psb_surface->stride = graphic_buffers->luma_stride;
71 } else if (512 == graphic_buffers->luma_stride) {
73 } else if (1024 == graphic_buffers->luma_stride) {
75 } else if (1280 == graphic_buffers->luma_stride) {
83 } else if (2048 == graphic_buffers->luma_stride) {
85 } else if (4096 == graphic_buffers->luma_stride) {
90 if (psb_surface->stride != graphic_buffers->luma_stride) {
267 unsigned int luma_stride, /* luma stride, could be width aligned with a special value */
291 luma_stride, chroma_u_stride, chroma_v_stride,
315 (luma_stride < width) |
    [all...]
psb_drv_video.h 482 unsigned int luma_stride; member in struct:psb_surface_share_info_s
618 unsigned int luma_stride; /* luma stride, could be width aligned with a special value */ member in struct:_PsbSurfaceAttributeTPI
  /external/chromium_org/third_party/libva/va/
va_tpi.h 56 unsigned int luma_stride; /* luma stride, could be width aligned with a special value */ member in struct:_VASurfaceAttributeTPI
va_backend.h 376 unsigned int *luma_stride,
  /hardware/intel/common/libva/va/
va_tpi.h 58 unsigned int luma_stride; /* luma stride, could be width aligned with a special value */ member in struct:_VASurfaceAttributeTPI
va_backend.h 375 unsigned int *luma_stride,
va.c     [all...]
va_trace.c 128 unsigned int *luma_stride,
288 unsigned int luma_stride; local
312 &luma_stride, &chroma_u_stride, &chroma_v_stride,
324 va_TraceMsg(trace_ctx, "\tluma_stride = %d\n", luma_stride);
344 tmp = Y_data + luma_stride * trace_ctx->trace_surface_yoff;
350 tmp += luma_stride;
    [all...]
  /hardware/intel/img/hwcomposer/ips/common/
VideoPayloadBuffer.h 38 uint32_t luma_stride; member in struct:android::intel::VideoPayloadBuffer
RotationBufferProvider.cpp 179 stride = payload->luma_stride; /* NV12 srouce buffer */
203 vaSurfaceAttrib->luma_stride = vaSurfaceAttrib->chroma_u_stride
523 payload->luma_stride = stride;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
va_surface.c 125 unsigned int *luma_stride, unsigned int *chroma_u_stride, unsigned int *chroma_v_stride,
va_private.h 152 unsigned int *luma_stride,
  /external/mesa3d/src/gallium/state_trackers/va/
va_surface.c 125 unsigned int *luma_stride, unsigned int *chroma_u_stride, unsigned int *chroma_v_stride,
va_private.h 152 unsigned int *luma_stride,
  /external/chromium_org/third_party/libwebp/webp/
decode.h 124 uint8_t* luma, size_t luma_size, int luma_stride,
293 // 'luma_size' and its stride 'luma_stride'. Similarly, the chroma-u plane
302 uint8_t* luma, size_t luma_size, int luma_stride,
310 uint8_t* luma, size_t luma_size, int luma_stride,
  /external/webp/include/webp/
decode.h 124 uint8_t* luma, size_t luma_size, int luma_stride,
293 // 'luma_size' and its stride 'luma_stride'. Similarly, the chroma-u plane
302 uint8_t* luma, size_t luma_size, int luma_stride,
310 uint8_t* luma, size_t luma_size, int luma_stride,
  /hardware/intel/common/libva/test/basic/
test_vaSurfaceAttrib.c 41 unsigned int fourcc, luma_stride, chroma_u_stride, chroma_v_stride, luma_offset, chroma_u_offset; local
126 //vaSurfaceExternBuf.pitches[0] = attribute_tpi->luma_stride;
  /external/chromium_org/third_party/libwebp/dec/
idec.c 660 WebPIDecoder* WebPINewYUVA(uint8_t* luma, size_t luma_size, int luma_stride,
670 luma_stride = u_stride = v_stride = a_stride = 0;
676 if (luma_stride == 0 || u_stride == 0 || v_stride == 0) return NULL;
689 idec->output_.u.YUVA.y_stride = luma_stride;
703 WebPIDecoder* WebPINewYUV(uint8_t* luma, size_t luma_size, int luma_stride,
706 return WebPINewYUVA(luma, luma_size, luma_stride,
webp.c 571 uint8_t* luma, size_t luma_size, int luma_stride,
582 output.u.YUVA.y_stride = luma_stride;
  /external/webp/src/dec/
idec.c 660 WebPIDecoder* WebPINewYUVA(uint8_t* luma, size_t luma_size, int luma_stride,
670 luma_stride = u_stride = v_stride = a_stride = 0;
676 if (luma_stride == 0 || u_stride == 0 || v_stride == 0) return NULL;
689 idec->output_.u.YUVA.y_stride = luma_stride;
703 WebPIDecoder* WebPINewYUV(uint8_t* luma, size_t luma_size, int luma_stride,
706 return WebPINewYUVA(luma, luma_size, luma_stride,
webp.c 583 uint8_t* luma, size_t luma_size, int luma_stride,
594 output.u.YUVA.y_stride = luma_stride;
  /hardware/intel/img/psb_video/src/android/
psb_surface_gralloc.c 386 obj_surface->share_info->luma_stride = psb_surface->stride;
  /device/asus/fugu/kernel-headers/linux/
psb_drm.h 251 uint32_t luma_stride; member in struct:drm_video_displaying_frameinfo
    [all...]

Completed in 391 milliseconds

1 2