HomeSort by relevance Sort by last modified time
    Searched refs:img (Results 176 - 200 of 633) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libvpx/libvpx/
vpxdec.c 237 static void update_image_md5(const vpx_image_t *img, const int planes[3],
243 const unsigned char *buf = img->planes[plane];
244 const int stride = img->stride[plane];
245 const int w = vpx_img_plane_width(img, plane);
246 const int h = vpx_img_plane_height(img, plane);
255 static void write_image_file(const vpx_image_t *img, const int planes[3],
261 const unsigned char *buf = img->planes[plane];
262 const int stride = img->stride[plane];
263 const int w = vpx_img_plane_width(img, plane);
264 const int h = vpx_img_plane_height(img, plane)
793 vpx_image_t *img; local
    [all...]
y4minput.h 67 int y4m_input_fetch_frame(y4m_input *_y4m, FILE *_fin, vpx_image_t *img);
  /bootable/recovery/applypatch/
imgdiff.c 18 * This program constructs binary patches for images -- such as boot.img
19 * and recovery.img -- that consist primarily of large chunks of gzipped
194 unsigned char* img = malloc(st.st_size); local
196 if (fread(img, 1, st.st_size, f) != st.st_size) {
207 if (img[i] == 0x50 && img[i+1] == 0x4b &&
208 img[i+2] == 0x05 && img[i+3] == 0x06) {
213 if (!(img[i+4] == 0 && img[i+5] == 0 && img[i+6] == 0 && img[i+7] == 0))
384 unsigned char* img = malloc(st.st_size + 4); local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
lookahead.c 54 vp8_yv12_de_alloc_frame_buffer(&ctx->buf[i].img);
92 if (vp8_yv12_alloc_frame_buffer(&ctx->buf[i].img,
155 vp8_copy_and_extend_frame_with_rect(src, &buf->img,
169 vp8_copy_and_extend_frame(src, &buf->img);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_lookahead.h 29 YV12_BUFFER_CONFIG img; member in struct:lookahead_entry
  /external/chromium_org/third_party/libvpx/source/libvpx/
vpxenc.c 102 int read_frame(struct VpxInputContext *input_ctx, vpx_image_t *img) {
108 if (y4m_input_fetch_frame(y4m, f, img) < 1)
111 shortread = read_yuv_frame(input_ctx, img);
763 struct vpx_image *img; member in struct:stream_state
    [all...]
y4minput.h 68 int y4m_input_fetch_frame(y4m_input *_y4m, FILE *_fin, vpx_image_t *img);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
shader.h 55 void shader_set_image(struct shader *shader, struct vg_image *img);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
debug.h 92 _mesa_print_texture(struct gl_context *ctx, struct gl_texture_image *img);
texcompress.h 49 _mesa_compressed_image_address(GLint col, GLint row, GLint img,
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 664 vpx_image_t* img; local
730 img = vpx_codec_get_frame(decoder_, &iter);
731 ret = ReturnFrame(img, input_image._timeStamp, input_image.ntp_time_ms_);
811 int VP8DecoderImpl::ReturnFrame(const vpx_image_t* img,
814 if (img == NULL) {
818 int half_height = (img->d_h + 1) / 2;
819 int size_y = img->stride[VPX_PLANE_Y] * img->d_h;
820 int size_u = img->stride[VPX_PLANE_U] * half_height;
821 int size_v = img->stride[VPX_PLANE_V] * half_height
    [all...]
  /external/deqp/modules/glshared/
glsFboUtil.cpp 148 GLsizei imageNumSamples (const Image& img)
150 if (const Renderbuffer* rbo = dynamic_cast<const Renderbuffer*>(&img))
155 static GLenum glTarget (const Image& img)
157 if (dynamic_cast<const Renderbuffer*>(&img) != DE_NULL)
159 if (dynamic_cast<const Texture2D*>(&img) != DE_NULL)
161 if (dynamic_cast<const TextureCubeMap*>(&img) != DE_NULL)
163 if (dynamic_cast<const Texture3D*>(&img) != DE_NULL)
165 if (dynamic_cast<const Texture2DArray*>(&img) != DE_NULL)
261 static void glDelete (const Image& cfg, GLuint img, const glw::Functions& gl)
264 gl.deleteRenderbuffers(1, &img);
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
lookahead.c 54 vp8_yv12_de_alloc_frame_buffer(&ctx->buf[i].img);
92 if (vp8_yv12_alloc_frame_buffer(&ctx->buf[i].img,
155 vp8_copy_and_extend_frame_with_rect(src, &buf->img,
169 vp8_copy_and_extend_frame(src, &buf->img);
  /external/markdown/markdown/
inlinepatterns.py 276 """ Return a img element from the given match. """
278 el = markdown.etree.Element("img")
327 """ Match to a stored reference and return img element. """
329 el = markdown.etree.Element("img")
  /external/mesa3d/src/gallium/state_trackers/vega/
shader.h 55 void shader_set_image(struct shader *shader, struct vg_image *img);
  /external/mesa3d/src/mesa/main/
debug.h 92 _mesa_print_texture(struct gl_context *ctx, struct gl_texture_image *img);
texcompress.h 49 _mesa_compressed_image_address(GLint col, GLint row, GLint img,
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
vpx_encoder.c 201 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 = ctx->iface->enc.get_preview(get_alg_priv(ctx))
    [all...]
  /external/libvpx/libvpx/vpx/src/
vpx_encoder.c 205 const vpx_image_t *img,
212 if (!ctx || (img && !duration))
227 res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts,
238 if (img) img += num_enc - 1;
241 if ((res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts,
246 if (img) img--;
328 vpx_image_t *img = NULL; local
338 img = ctx->iface->enc.get_preview(ctx->priv->alg_priv)
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_raw_sensitivity.py 65 img = its.image.convert_capture_to_rgb_image(cap, props=props)
66 its.image.write_image(img, "%s_s=%05d_var=%f.jpg" % (NAME,s,var))
  /external/chromium_org/ash/system/user/
rounded_image_view.cc 24 void RoundedImageView::SetImage(const gfx::ImageSkia& img,
26 image_ = img;
  /external/chromium_org/chrome/browser/resources/chromeos/login/
enterprise_info.css 27 #enterprise-info img {
  /external/chromium_org/chrome/browser/resources/instant/
instant.css 15 img {
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
tile_independence_test.cc 66 const vpx_image_t *img = dec->GetDxData().Next(); local
67 md5->Add(img);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
memory.cpp 240 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());

Completed in 687 milliseconds

1 2 3 4 5 6 78 91011>>