Searched defs:img (Results 76 - 100 of 299) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/examples/
H A Dtwopass_encoder.c70 const vpx_image_t *img,
78 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
95 const vpx_image_t *img,
103 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
69 get_frame_stats(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned int duration, vpx_enc_frame_flags_t flags, unsigned int deadline, vpx_fixed_buf_t *stats) argument
94 encode_frame(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned int duration, vpx_enc_frame_flags_t flags, unsigned int deadline, VpxVideoWriter *writer) argument
/external/libvpx/libvpx/test/
H A Ddecode_test_driver.h118 virtual void DecompressedFrameHook(const vpx_image_t& img, argument
H A Dencode_test_driver.cc21 if (video->img())
40 const vpx_image_t *img = video.img(); local
44 cfg_.g_w = img->d_w;
45 cfg_.g_h = img->d_h;
54 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
55 cfg_.g_w = img->d_w;
56 cfg_.g_h = img->d_h;
64 video.img(), vide
[all...]
H A Di420_video_source.h38 // This initializes raw_sz_, width_, height_ and allocates an img.
67 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } function in class:libvpx_test::I420VideoSource
/external/libvpx/libvpx/vpx/src/
H A Dvpx_decoder.c136 vpx_image_t *img; local
139 img = NULL;
141 img = ctx->iface->dec.get_frame(ctx->priv->alg_priv, iter);
143 return img;
H A Dvpx_image.c43 static vpx_image_t *img_alloc_helper(vpx_image_t *img, argument
136 if (!img) {
137 img = (vpx_image_t *)calloc(1, sizeof(vpx_image_t));
139 if (!img)
142 img->self_allocd = 1;
144 memset(img, 0, sizeof(vpx_image_t));
147 img->img_data = img_data;
150 img->img_data = img_buf_memalign(buf_align, ((fmt & VPX_IMG_FMT_PLANAR) ?
152 img->img_data_owner = 1;
155 if (!img
178 vpx_img_alloc(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int align) argument
186 vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int stride_align, unsigned char *img_data) argument
197 vpx_img_set_rect(vpx_image_t *img, unsigned int x, unsigned int y, unsigned int w, unsigned int h) argument
249 vpx_img_flip(vpx_image_t *img) argument
271 vpx_img_free(vpx_image_t *img) argument
[all...]
/external/libvpx/libvpx/vpx/
H A Dvp8.h107 vpx_image_t img; /**< reference frame data in image format */ member in struct:vpx_ref_frame
116 vpx_image_t img; /**< img structure to populate (output) */ member in struct:vp9_ref_frame
/external/mesa3d/src/gallium/state_trackers/clover/api/
H A Dmemory.cpp240 image *img = dynamic_cast<image *>(obj); local
241 if (!img)
247 img->format());
253 return scalar_property<size_t>(buf, size, size_ret, img->row_pitch());
256 return scalar_property<size_t>(buf, size, size_ret, img->slice_pitch());
259 return scalar_property<size_t>(buf, size, size_ret, img->width());
262 return scalar_property<size_t>(buf, size, size_ret, img->height());
265 return scalar_property<size_t>(buf, size, size_ret, img->depth());
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d_image.c67 egl_g3d_create_drm_buffer(_EGLDisplay *dpy, _EGLImage *img, argument
134 _EGLImage *img, const EGLint *attribs)
188 _EGLImage *img, const EGLint *attribs)
298 egl_g3d_destroy_image(_EGLDriver *drv, _EGLDisplay *dpy, _EGLImage *img) argument
300 struct egl_g3d_image *gimg = egl_g3d_image(img);
345 egl_g3d_export_drm_image(_EGLDriver *drv, _EGLDisplay *dpy, _EGLImage *img, argument
349 struct egl_g3d_image *gimg = egl_g3d_image(img);
133 egl_g3d_reference_drm_buffer(_EGLDisplay *dpy, EGLint name, _EGLImage *img, const EGLint *attribs) argument
187 egl_g3d_reference_wl_buffer(_EGLDisplay *dpy, struct wl_buffer *buffer, _EGLImage *img, const EGLint *attribs) argument
H A Degl_g3d_st.c59 _EGLImage *img; local
65 img = _eglLookupImage(handle, gsmapi->display);
66 if (!img) {
71 gimg = egl_g3d_image(img);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_params.c1492 struct vg_image *img = handle_to_image(object); local
1493 return img->format;
1497 struct vg_image *img = handle_to_image(object); local
1498 return img->width;
1502 struct vg_image *img = handle_to_image(object); local
1503 return img->height;
/external/opencv/cvaux/src/
H A Dcamshift.cpp210 IplImage** img; member in union:__anon28102
220 u.img = m_color_planes;
H A Dcvlines.cpp312 // img - image data
320 icvDeleteMoire8u( uchar * img, int img_step, CvSize img_size, int cn ) argument
323 uchar *src = img, *dst = img + img_step;
325 if( !img || img_size.width <= 0 || img_size.height <= 0 || img_step < img_size.width * 3 )
366 // Parameters: img - image on which will delete moire
371 cvDeleteMoire( IplImage * img )
381 cvGetImageRawData( img, &img_data, &img_step, &img_size );
383 if( img->nChannels != 1 && img
405 cvPreWarpImage( int numLines, IplImage * img, uchar * dst, int *dst_nums, int *scanlines ) argument
449 cvPostWarpImage( int numLines, uchar * src, int *src_nums, IplImage * img, int *scanlines ) argument
[all...]
/external/opencv/cxcore/src/
H A Dcximage.cpp77 IplImage* img = 0; local
84 img = (IplImage*)obj;
88 CV_CALL( img = cvCreateImageHeader( cvSize(m->cols,m->rows),
90 cvSetData( img, m->data.ptr, m->step );
91 img->imageDataOrigin = (char*)m->refcount;
103 return img;
109 IplImage* img = 0; local
117 img = icvRetrieveImage(cvLoad(filename,0,imgname));
118 if( (img->nChannels > 1) != (color == 0) )
123 CV_CALL( temp_img = cvCreateImage( cvGetSize(img), im
150 IplImage* img = 0; local
170 IplImage* img = 0; local
240 IplImage* img = (IplImage*)obj; local
[all...]
/external/opencv/otherlibs/highgui/
H A Dimage.cpp99 IplImage* img = image.GetImage(); local
100 if( img )
102 CopyOf( img, desired_color );
107 #define HG_IS_IMAGE(img) \
108 ((img) != 0 && ((const IplImage*)(img))->nSize == sizeof(IplImage) && \
109 ((IplImage*)img)->imageData != 0)
112 void CvvImage::CopyOf( IplImage* img, int desired_color ) argument
114 if( HG_IS_IMAGE(img) )
117 CvSize size = cvGetSize( img );
134 IplImage* img = cvLoadImage( filename, desired_color ); local
[all...]
/external/skia/experimental/webtry/res/js/
H A Dwebtry.js28 var img = document.getElementById('img'); variable
65 selectedSource.innerHTML = '<img with=64 height=64 src="/i/image-'+sourceId+'.png" />';
107 clone.querySelector('img').src = imgsrc;
201 img.src = '/i/'+body.hash+'.png';
214 clone.querySelector('img').src = imgUrl;
229 // "img": "<base64 encoded image but only on success>"
232 // The img is optional and only appears if there is a valid
241 if (body.hasOwnProperty('img')) {
242 img
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-swing.jar ... javax.swing.ImageIcon) javax.swing.ImageIcon img protected void init (javax.swing.ImageIcon) javax. ...
/external/chromium_org/google_apis/gaia/
H A Dgoogle_service_auth_error.cc20 const std::string& token, const GURL& audio, const GURL& img,
22 : token(token), audio_url(audio), image_url(img), unlock_url(unlock),
19 Captcha( const std::string& token, const GURL& audio, const GURL& img, const GURL& unlock, int width, int height) argument
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DInlineFlowBoxPainter.cpp98 StyleImage* img = fillLayer.image(); local
99 bool hasFillImage = img && img->canRender(m_inlineFlowBox.renderer(), m_inlineFlowBox.renderer().style()->effectiveZoom());
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dtwopass_encoder.c68 const vpx_image_t *img,
77 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
98 const vpx_image_t *img,
107 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
67 get_frame_stats(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned int duration, vpx_enc_frame_flags_t flags, unsigned int deadline, vpx_fixed_buf_t *stats) argument
97 encode_frame(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned int duration, vpx_enc_frame_flags_t flags, unsigned int deadline, VpxVideoWriter *writer) argument
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dresize_test.cc137 virtual void DecompressedFrameHook(const vpx_image_t &img, argument
139 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h));
H A Dvideo_source.h116 virtual vpx_image_t *img() const = 0;
153 virtual vpx_image_t *img() const { function in class:libvpx_test::DummyVideoSource
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dtools_common.c207 int vpx_img_plane_width(const vpx_image_t *img, int plane) { argument
208 if (plane > 0 && img->x_chroma_shift > 0)
209 return (img->d_w + 1) >> img->x_chroma_shift;
211 return img->d_w;
214 int vpx_img_plane_height(const vpx_image_t *img, int plane) { argument
215 if (plane > 0 && img->y_chroma_shift > 0)
216 return (img->d_h + 1) >> img->y_chroma_shift;
218 return img
221 vpx_img_write(const vpx_image_t *img, FILE *file) argument
238 vpx_img_read(vpx_image_t *img, FILE *file) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
H A Dvpx_encoder.c201 const vpx_image_t *img,
208 if (!ctx || (img && !duration))
223 res = ctx->iface->enc.encode(get_alg_priv(ctx), img, pts,
234 if (img) img += num_enc - 1;
237 if ((res = ctx->iface->enc.encode(get_alg_priv(ctx), img, pts,
242 if (img) img--;
324 vpx_image_t *img = NULL; local
334 img
200 vpx_codec_encode(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned long duration, vpx_enc_frame_flags_t flags, unsigned long deadline) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_miptree.c75 struct nv30_rect img; member in struct:nv30_transfer
187 tx->nblocksx, tx->nblocksy, &tx->img);
200 tx->tmp.cpp = tx->img.cpp;
211 nv30_transfer_rect(nv30, NEAREST, &tx->img, &tx->tmp);
223 nv30_transfer_rect(nv30, NEAREST, &tx->tmp, &tx->img);

Completed in 334 milliseconds

1234567891011>>