HomeSort by relevance Sort by last modified time
    Searched refs:d_w (Results 1 - 21 of 21) sorted by null

  /external/libvpx/libvpx/test/
md5_helper.h 35 const int w = plane ? (img->d_w + img->x_chroma_shift) >>
36 img->x_chroma_shift : img->d_w;
util.h 26 (img1->d_w == img2->d_w) &&
29 const unsigned int width_y = img1->d_w;
encode_test_driver.cc 44 cfg_.g_w = img->d_w;
54 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
55 cfg_.g_w = img->d_w;
110 (img1->d_w == img2->d_w) &&
113 const unsigned int width_y = img1->d_w;
120 const unsigned int width_uv = (img1->d_w + 1) >> 1;
resize_test.cc 139 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h));
  /external/libvpx/libvpx/vpx/
vpx_image.h 107 unsigned int d_w; /**< Displayed image width */ member in struct:vpx_image
161 * \param[in] d_w Width of the image
172 unsigned int d_w,
186 * \param[in] d_w Width of the image
197 unsigned int d_w,
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 33 img->d_w = yv12->y_crop_width;
59 yv12->y_crop_width = img->d_w;
61 yv12->y_width = img->d_w;
69 yv12->alpha_width = yv12->alpha_buffer ? img->d_w : 0;
vp9_cx_iface.c 236 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h))
    [all...]
  /external/libvpx/libvpx/vpx/src/
vpx_image.c 45 unsigned int d_w,
129 w = (d_w + align) & ~align;
170 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h))
180 unsigned int d_w,
183 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL);
188 unsigned int d_w,
194 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data);
205 img->d_w = w;
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 139 uint32_t width = img->d_w;
161 memcpy(dst, srcLine, img->d_w);
164 dst += img->d_w;
169 memcpy(dst, srcLine, img->d_w / 2);
172 dst += img->d_w / 2;
177 memcpy(dst, srcLine, img->d_w / 2);
180 dst += img->d_w / 2;
  /external/chromium_org/media/cdm/ppapi/
libvpx_cdm_video_decoder.cc 146 DCHECK_EQ(vpx_image_->d_w % 2, 0U);
176 video_frame_size.width = vpx_image_->d_w;
  /external/libvpx/libvpx/
vp8_multi_resolution_encoder.c 105 int w = (plane ? (1 + img->d_w) / 2 : img->d_w);
332 if (raw[0].stride[VPX_PLANE_Y] == raw[0].d_w)
394 raw[i-1].d_w, raw[i-1].d_h,
398 raw[i].d_w, raw[i].d_h, 1);
vpxdec.c 586 unsigned int d_w, unsigned int d_h,
601 snprintf(q, q_len - 1, "%d", d_w);
1042 stream_w = img->d_w;
1047 if (img && (img->d_w != stream_w || img->d_h != stream_h)) {
1052 img->d_w, img->d_h,
1070 img->x_chroma_shift ? (1 + img->d_w) >> img->x_chroma_shift
1071 : img->d_w
    [all...]
vp9_spatial_scalable_encoder.c 130 const int w = (plane ? (1 + img->d_w) / 2 : img->d_w);
vpxenc.c 173 int w = (plane ? (1 + img->d_w) / 2 : img->d_w);
917 const int c_w = (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
923 for (j = 0; match && j < img1->d_w; j += bsize) {
926 int sj = mmin(j + bsize, img1->d_w) - j;
    [all...]
y4minput.c     [all...]
  /external/chromium_org/media/cast/video_receiver/codecs/vp8/
vp8_decoder.cc 74 gfx::Size visible_size(img->d_w, img->d_h);
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 294 img->d_w = yv12->y_width;
712 yv12->y_crop_width = img->d_w;
714 yv12->y_width = img->d_w;
722 yv12->border = (img->stride[VPX_PLANE_Y] - img->d_w) / 2;
vp8_cx_iface.c 278 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h))
684 yv12->y_crop_width = img->d_w;
686 yv12->y_width = img->d_w;
    [all...]
  /external/chromium_org/media/filters/
vpx_video_decoder.cc 343 gfx::Size size(vpx_image->d_w, vpx_image->d_h);
  /external/chromium_org/remoting/codec/
video_decoder_vpx.cc 177 webrtc::DesktopRect::MakeWH(last_image_->d_w, last_image_->d_h);
video_encoder_vpx.cc 195 image_->d_w = size.width();

Completed in 808 milliseconds