Home
last modified time | relevance | path

Searched refs:image (Results 1 – 25 of 49) sorted by relevance

12

/hardware/intel/img/psb_video/src/
Dpsb_output.c221 VAImage *image, in psb__VAImageCheckRegion() argument
232 if (*src_x > image->width) *src_x = image->width - 1; in psb__VAImageCheckRegion()
234 if (*src_y > image->height) *src_y = image->height - 1; in psb__VAImageCheckRegion()
236 if (((*width) + (*src_x)) > image->width) *width = image->width - *src_x; in psb__VAImageCheckRegion()
237 if (((*height) + (*src_y)) > image->height) *height = image->height - *src_x; in psb__VAImageCheckRegion()
281 VAImage *image /* out */ in psb_CreateImage() argument
298 CHECK_INVALID_PARAM(image == NULL); in psb_CreateImage()
306 obj_image->image.image_id = imageID; in psb_CreateImage()
307 obj_image->image.format = *img_fmt; in psb_CreateImage()
314 obj_image->image.width = width; in psb_CreateImage()
[all …]
Dpsb_output.h241 VAImage *image /* out */
247 VAImage *image /* out */
252 VAImageID image
257 VAImageID image,
273 VAImageID image
279 VAImageID image,
299 VAImageID image,
311 VAImageID image
/hardware/intel/common/libva/test/basic/
Dtestplan.txt80 - Query image formats
88 - Get image data
89 - Render single MPEG2 I-frame, copy surface data to image, check resulting
90 image
94 - Put image data
96 surface back to VAImage, check resulting image
/hardware/interfaces/camera/device/1.0/
DICameraDeviceCallback.hal57 * Send a buffer of image data to the camera service
59 * @param msgType The kind of image buffer data this call represents.
69 * Send a buffer of image data to the camera service, with a timestamp
71 * @param msgType The kind of image buffer data this call represents.
83 * Send a buffer of image data to the camera service, with a timestamp
85 * @param msgType The kind of image buffer data this call represents.
86 * @param handle The handle of image buffer data this call represents.
98 * Send a batch of image data buffer to the camera service, with timestamps
105 * @param msgType The kind of image buffer data this call represents.
106 * @param batch a vector messages. Each message contains a image buffer and a timestamp. The
Dtypes.hal42 * The orientation of the camera image. The value is the angle that the
43 * camera image needs to be rotated clockwise so it shows correctly on the
263 // The handle of image buffer data.
281 // The handle of image buffer data.
/hardware/intel/common/libva/va/
Dva_backend.h229 VAImage *image /* out */
235 VAImage *image /* out */
240 VAImageID image
245 VAImageID image,
261 VAImageID image
267 VAImageID image,
287 VAImageID image,
299 VAImageID image
Dva.c1193 VAImage *image /* out */ in vaCreateImage() argument
1200 return ctx->vtable->vaCreateImage ( ctx, format, width, height, image); in vaCreateImage()
1208 VAImageID image in vaDestroyImage() argument
1215 return ctx->vtable->vaDestroyImage ( ctx, image); in vaDestroyImage()
1220 VAImageID image, in vaSetImagePalette() argument
1228 return ctx->vtable->vaSetImagePalette ( ctx, image, palette); in vaSetImagePalette()
1242 VAImageID image in vaGetImage() argument
1249 return ctx->vtable->vaGetImage ( ctx, surface, x, y, width, height, image); in vaGetImage()
1259 VAImageID image, in vaPutImage() argument
1274 …return ctx->vtable->vaPutImage ( ctx, surface, image, src_x, src_y, src_width, src_height, dest_x,… in vaPutImage()
[all …]
Dva.h2875 VAImage *image /* out */
2883 VAImageID image
2888 VAImageID image,
2908 VAImageID image
2920 VAImageID image,
2965 VAImage *image /* out */
3010 VAImageID image,
3029 VAImageID image
/hardware/intel/common/libmix/mix_video/src/
Dmixvideoformatenc_preview.c995 VAImage *image = &src_image; in mix_videofmtenc_preview_process_encode() local
1000 va_status = vaMapBuffer (va_display, image->buf, (void **)&pvbuf); in mix_videofmtenc_preview_process_encode()
1010 "image->pitches[0] = %d\n", image->pitches[0]); in mix_videofmtenc_preview_process_encode()
1012 "image->pitches[1] = %d\n", image->pitches[1]); in mix_videofmtenc_preview_process_encode()
1014 "image->offsets[0] = %d\n", image->offsets[0]); in mix_videofmtenc_preview_process_encode()
1016 "image->offsets[1] = %d\n", image->offsets[1]); in mix_videofmtenc_preview_process_encode()
1018 "image->num_planes = %d\n", image->num_planes); in mix_videofmtenc_preview_process_encode()
1020 "image->width = %d\n", image->width); in mix_videofmtenc_preview_process_encode()
1022 "image->height = %d\n", image->height); in mix_videofmtenc_preview_process_encode()
1030 dst_y = pvbuf +image->offsets[0]; in mix_videofmtenc_preview_process_encode()
[all …]
Dmixvideoformatenc_mpeg4.c1330 VAImage *image = &src_image; in mix_videofmtenc_mpeg4_process_encode() local
1335 va_status = vaMapBuffer (va_display, image->buf, (void **)&pvbuf); in mix_videofmtenc_mpeg4_process_encode()
1345 "image->pitches[0] = %d\n", image->pitches[0]); in mix_videofmtenc_mpeg4_process_encode()
1347 "image->pitches[1] = %d\n", image->pitches[1]); in mix_videofmtenc_mpeg4_process_encode()
1349 "image->offsets[0] = %d\n", image->offsets[0]); in mix_videofmtenc_mpeg4_process_encode()
1351 "image->offsets[1] = %d\n", image->offsets[1]); in mix_videofmtenc_mpeg4_process_encode()
1353 "image->num_planes = %d\n", image->num_planes); in mix_videofmtenc_mpeg4_process_encode()
1355 "image->width = %d\n", image->width); in mix_videofmtenc_mpeg4_process_encode()
1357 "image->height = %d\n", image->height); in mix_videofmtenc_mpeg4_process_encode()
1365 dst_y = pvbuf +image->offsets[0]; in mix_videofmtenc_mpeg4_process_encode()
[all …]
Dmixvideoformatenc_h264.c1394 VAImage *image = &src_image; in mix_videofmtenc_h264_process_encode() local
1399 va_status = vaMapBuffer (va_display, image->buf, (void **)&pvbuf); in mix_videofmtenc_h264_process_encode()
1409 "image->pitches[0] = %d\n", image->pitches[0]); in mix_videofmtenc_h264_process_encode()
1411 "image->pitches[1] = %d\n", image->pitches[1]); in mix_videofmtenc_h264_process_encode()
1413 "image->offsets[0] = %d\n", image->offsets[0]); in mix_videofmtenc_h264_process_encode()
1415 "image->offsets[1] = %d\n", image->offsets[1]); in mix_videofmtenc_h264_process_encode()
1417 "image->num_planes = %d\n", image->num_planes); in mix_videofmtenc_h264_process_encode()
1419 "image->width = %d\n", image->width); in mix_videofmtenc_h264_process_encode()
1421 "image->height = %d\n", image->height); in mix_videofmtenc_h264_process_encode()
1429 dst_y = pvbuf +image->offsets[0]; in mix_videofmtenc_h264_process_encode()
[all …]
/hardware/intel/common/libva/va/wayland/
Dva_backend_wayland.h59 VAImageID image,
Dva_wayland.h120 VAImageID image,
Dva_wayland.c181 VAImageID image, in vaGetImageBufferWl() argument
192 return ctx->vtable_wayland->vaGetImageBufferWl(ctx, image, flags, in vaGetImageBufferWl()
/hardware/intel/common/libmix/videodecoder/
DVideoDecoderBase.cpp1153 VAImage image; in mapSurface() local
1161 vaStatus = vaDeriveImage(mVADisplay, mSurfaces[i], &image); in mapSurface()
1163 vaStatus = vaMapBuffer(mVADisplay, image.buf, (void**)&userPtr); in mapSurface()
1172 mSurfaceBuffers[i].mappedData->fourcc = image.format.fourcc; in mapSurface()
1175 mSurfaceBuffers[i].mappedData->size = image.data_size; in mapSurface()
1177 mSurfaceBuffers[i].mappedData->pitch[pi] = image.pitches[pi]; in mapSurface()
1178 mSurfaceBuffers[i].mappedData->offset[pi] = image.offsets[pi]; in mapSurface()
1181 if (image.pitches[0] != image.pitches[1] || in mapSurface()
1182 image.width != mVideoFormatInfo.width || in mapSurface()
1183 image.height != mVideoFormatInfo.height || in mapSurface()
[all …]
/hardware/intel/common/libmix/videoencoder/
DVideoEncoderBase.cpp1500 VAImage image; in getNewUsrptrFromSurface() local
1525 vaStatus = vaDeriveImage(mVADisplay, surface, &image); in getNewUsrptrFromSurface()
1528 vaStatus = vaMapBuffer(mVADisplay, image.buf, (void **) usrptr); in getNewUsrptrFromSurface()
1532 for (index = 0; index < image.data_size; index = index + 4096) { in getNewUsrptrFromSurface()
1538 *outsize = image.data_size; in getNewUsrptrFromSurface()
1539 *stride = image.pitches[0]; in getNewUsrptrFromSurface()
1542 LOG_V("image->pitches[0] = %d\n", image.pitches[0]); in getNewUsrptrFromSurface()
1543 LOG_V("image->pitches[1] = %d\n", image.pitches[1]); in getNewUsrptrFromSurface()
1544 LOG_V("image->offsets[0] = %d\n", image.offsets[0]); in getNewUsrptrFromSurface()
1545 LOG_V("image->offsets[1] = %d\n", image.offsets[1]); in getNewUsrptrFromSurface()
[all …]
/hardware/interfaces/biometrics/fingerprint/2.1/
DIBiometricsFingerprintClientCallback.hal33 * Sent when a fingerprint image is acquired by the sensor
35 * @param acquiredInfo a message about the quality of the acquired image
36 * @param vendorCode a vendor-specific message about the quality of the image. Only
Dtypes.hal86 * image doesn't contain enough detail for recognition*/
127 /** information about the image */
/hardware/interfaces/graphics/common/1.0/
Dtypes.hal92 * representing raw Bayer-pattern images from an image sensor, with minimal
124 * Dataspace::ARBITRARY | Raw image sensor data, layout is as
135 * image structure. The details of the format are left to the two
149 * Dataspace::JFIF | An encoded JPEG image
190 * RAW_OPAQUE is a format for unprocessed raw image buffers coming from an
191 * image sensor. The actual structure of buffers of this format is
206 * Dataspace::ARBITRARY | Raw image sensor data.
214 * an image sensor.
216 * In an image buffer with this format, starting from the first pixel of each
245 * the end of each row, the entire image data is densely packed. When stride is
[all …]
/hardware/interfaces/graphics/mapper/2.0/
Dtypes.hal49 * the image to the first value of the next row. It includes the width of the
50 * image plus padding.
/hardware/intel/common/utils/ISV/base/
Disv_worker.cpp920 VAImage image; in dumpYUVFrameData() local
925 &image); in dumpYUVFrameData()
928 vaStatus = vaMapBuffer(mVADisplay, image.buf, (void **)&data_ptr); in dumpYUVFrameData()
931 …iteNV12(mFilterParam.srcWidth, mFilterParam.srcHeight, data_ptr, image.pitches[0], image.pitches[1… in dumpYUVFrameData()
937 vaStatus = vaUnmapBuffer(mVADisplay, image.buf); in dumpYUVFrameData()
940 vaStatus = vaDestroyImage(mVADisplay,image.image_id); in dumpYUVFrameData()
/hardware/intel/bootstub/
Dbootstub.spec11 this package provides bootstub to create NAND boot image
/hardware/interfaces/camera/device/3.2/
Dtypes.hal35 * from this stream with newly captured or reprocessed image data.
42 * as if the buffer was a newly captured image from the imager.
263 * For most formats, dataSpace defines the color space of the image data.
264 * In addition, for some formats, dataSpace indicates whether image- or
282 * 720x1280, and HAL must capture a 1280x720 image and rotate the image by
522 * size, the HAL needs to include the final size of the compressed image using
643 * be input image's start of capture. This must match the capture result
707 * still image is requested by user. Settings must provide highest-quality
733 * A single request for image capture/buffer reprocessing, sent to the Camera
737 * output buffers to write the resulting image data in. It may optionally
[all …]
DICameraDeviceCallback.hal25 * These methods are used to return metadata and image buffers for a completed
123 * application layer until a start of exposure timestamp (or input image's
/hardware/interfaces/automotive/evs/1.0/
Dtypes.hal47 * Structure representing an image buffer through our APIs

12