Searched refs:img (Results 1 - 19 of 19) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.cpp264 vpx_image_t *img = vpx_codec_get_frame((vpx_codec_ctx_t *)mCtx, &iter); local
266 if (img != NULL) {
267 CHECK_EQ(img->fmt, IMG_FMT_I420);
269 int32_t width = img->d_w;
270 int32_t height = img->d_h;
288 const uint8_t *srcLine = (const uint8_t *)img->planes[PLANE_Y];
290 for (size_t i = 0; i < img->d_h; ++i) {
291 memcpy(dst, srcLine, img->d_w);
293 srcLine += img->stride[PLANE_Y];
294 dst += img
[all...]
/frameworks/native/services/surfaceflinger/tests/
H A DTransaction_test.cpp38 uint8_t* img = reinterpret_cast<uint8_t*>(outBuffer.bits); local
41 uint8_t* pixel = img + (4 * (y*outBuffer.stride + x));
69 const uint8_t* img = reinterpret_cast<const uint8_t*>(mHeap->base()); local
70 const uint8_t* pixel = img + (4 * (y*mWidth + x));
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaParser.java125 Element img = (Element)nl.item(i);
126 convertImage(img);
474 private void convertImage(Element img) { argument
475 String name = img.getAttribute("name");
476 String id = img.getAttribute("id");
477 String file = getString(img, "init_from");
/frameworks/native/libs/gui/tests/
H A DSurfaceTexture_test.cpp776 uint8_t* img = NULL;
778 (void**)(&img)));
779 fillRGBA8Buffer(img, buf->getWidth(), buf->getHeight(), buf->getStride());
802 uint8_t* img = NULL;
803 buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
804 fillYV12Buffer(img, texWidth, texHeight, buf->getStride());
848 uint8_t* img = NULL;
849 buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
850 fillYV12Buffer(img, texWidth, texHeight, buf->getStride());
908 uint8_t* img local
995 uint8_t* img = NULL; local
2389 uint8_t* img = NULL; local
[all...]
H A DCpuConsumer_test.cpp497 uint8_t* img = NULL; local
500 err = buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
505 fillYV12Buffer(img, params.width, params.height, *stride);
508 fillBayerRawBuffer(img, params.width, params.height, buf->getStride());
511 fillGreyscaleBuffer<uint8_t>(img, params.width, params.height,
515 fillGreyscaleBuffer<uint16_t>((uint16_t*)img, params.width,
520 fillRgba8888Buffer(img, params.width, params.height, buf->getStride());
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp131 EGLImageKHR img = eglCreateImageKHR(dpy, EGL_NO_CONTEXT, EGL_NATIVE_BUFFER_ANDROID, local
134 if (img == EGL_NO_IMAGE_KHR) {
142 glEGLImageTargetTexture2DOES(GL_TEXTURE_EXTERNAL_OES, (GLeglImageOES)img);
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css218 img.formulaDsp {
222 img.formulaInl {
233 div.center img {
242 img.footer {
568 .directory img {
599 .directory-alt img {
842 #projectlogo img
/frameworks/native/libs/gui/
H A DGLConsumer.cpp388 EGLImageKHR img = mEglSlots[i].mEglImage; local
389 if (img != EGL_NO_IMAGE_KHR) {
390 eglDestroyImageKHR(mEglDisplay, img);
846 EGLImageKHR img = mEglSlots[slotIndex].mEglImage; local
847 if (img != EGL_NO_IMAGE_KHR) {
848 ST_LOGV("destroying EGLImage dpy=%p img=%p", mEglDisplay, img);
849 eglDestroyImageKHR(mEglDisplay, img);
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.cpp406 uint8_t* img = NULL; local
408 buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
409 copyI420Buffer(buffer, img, width, height, buf->getStride());
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp236 EGLImageKHR img = eglCreateImageKHR(dpy, EGL_NO_CONTEXT, EGL_NATIVE_BUFFER_ANDROID, local
239 if (img == EGL_NO_IMAGE_KHR) {
247 glEGLImageTargetTexture2DOES(GL_TEXTURE_EXTERNAL_OES, (GLeglImageOES)img);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp781 uint8_t *img; local
784 rect, (void**)&img);
792 return img;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmp4dec_lib.h288 void DeringAdaptiveSmoothMMX(uint8 *img, int incr, int thres, int mxdf);
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp974 uint8_t *img; local
977 rect, (void**)&img);
985 return img;
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp517 uint8_t* img = NULL; local
519 buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
520 SurfaceMediaSourceTest::fillYV12Buffer(img, width, height, buf->getStride());
/frameworks/base/core/java/android/text/
H A DHtml.java63 * Retrieves images for HTML &lt;img&gt; tags.
68 * &lt;img&gt; tag. The <code>source</code> argument is the
95 * Any &lt;img&gt; tags in the HTML will display as a generic
116 * Any &lt;img&gt; tags in the HTML will use the specified ImageGetter
301 out.append("<img src=\"");
513 } else if (tag.equalsIgnoreCase("img")) {
623 Attributes attributes, Html.ImageGetter img) {
627 if (img != null) {
628 d = img.getDrawable(src);
622 startImg(SpannableStringBuilder text, Attributes attributes, Html.ImageGetter img) argument
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp1293 EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img) argument
1303 result = cnx->egl.eglDestroyImageKHR(dp->disp.dpy, img);
/frameworks/native/opengl/libagl/
H A Degl.cpp2065 EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img) argument
2071 ANativeWindowBuffer* native_buffer = (ANativeWindowBuffer*)img;
/frameworks/av/media/libstagefright/
H A DACodec.cpp2506 uint32_t* img = NULL; local
2507 err = buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
2514 *img = 0;
H A DOMXCodec.cpp1998 uint32_t* img = NULL; local
1999 err = buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
2006 *img = 0;

Completed in 466 milliseconds