HomeSort by relevance Sort by last modified time
    Searched refs:d_h (Results 1 - 25 of 27) sorted by null

1 2

  /external/libvpx/libvpx/test/
util.h 24 (img1->d_h == img2->d_h));
27 const unsigned int height_y = img1->d_h;
md5_helper.h 32 plane ? (img->d_h + img->y_chroma_shift) >> img->y_chroma_shift
33 : img->d_h;
encode_test_driver.cc 29 cfg_.g_h = img->d_h;
77 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
79 cfg_.g_h = img->d_h;
129 (img1->d_w == img2->d_w) && (img1->d_h == img2->d_h);
132 const unsigned int height_y = img1->d_h;
141 const unsigned int height_uv = (img1->d_h + 1) >> 1;
active_map_refresh_test.cc 25 int r_top = std::min(r + 16, static_cast<int>(current.d_h));
86 const int height = static_cast<int>(current->d_h);
y4m_test.cc 64 (plane ? (img->d_h + img->y_chroma_shift) >> img->y_chroma_shift
65 : img->d_h);
97 ASSERT_EQ(img()->d_h, kHeight);
decode_svc_test.cc 39 ASSERT_EQ(img.d_h, height_);
resize_test.cc 282 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h));
458 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h));
  /external/libvpx/libvpx/vpx/src/
vpx_image.c 19 unsigned int d_w, unsigned int d_h,
94 h = d_h;
118 h = (d_h + align) & ~align;
147 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h)) return img;
155 unsigned int d_w, unsigned int d_h,
157 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL);
161 unsigned int d_h, unsigned int stride_align,
165 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data);
174 img->d_h = h;
225 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y]
    [all...]
  /external/libvpx/libvpx/
tools_common.c 214 return (img->d_h + 1) >> img->y_chroma_shift;
216 return img->d_h;
276 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
291 int h = src->d_h;
312 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
327 int h = src->d_h;
355 dst->d_h != src->d_h || dst->x_chroma_shift != src->x_chroma_shift |
    [all...]
vpxdec.c 140 src->d_w, src->d_h, (uint16_t *)dst->planes[VPX_PLANE_Y],
143 dst->stride[VPX_PLANE_V] / 2, dst->d_w, dst->d_h, mode);
151 src->d_h, dst->planes[VPX_PLANE_Y], dst->stride[VPX_PLANE_Y],
154 dst->d_h, mode);
402 unsigned int d_w, unsigned int d_h,
417 case 'h': snprintf(q, q_len - 1, "%d", d_h); break;
490 return img->d_w != shifted->d_w || img->d_h != shifted->d_h ||
884 render_height = img->d_h;
895 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h)
    [all...]
vpxenc.c 620 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
628 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) {
631 const int si = mmin(i + bsize, img1->d_h) - i;
712 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
716 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) {
719 const int si = mmin(i + bsize, img1->d_h) - i;
798 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
804 match &= (img1->d_h == img2->d_h);
    [all...]
  /external/libvpx/libvpx/vpx/
vpx_image.h 100 unsigned int d_h; /**< Displayed image height */ member in struct:vpx_image
152 * \param[in] d_h Height of the image
161 unsigned int d_w, unsigned int d_h,
175 * \param[in] d_h Height of the image
184 unsigned int d_h, unsigned int align,
  /external/libvpx/libvpx/examples/
decode_to_md5.c 54 const int h = plane ? (img->d_h + 1) >> 1 : img->d_h;
120 fprintf(outfile, " img-%dx%d-%04d.i420\n", img->d_w, img->d_h,
vp9cx_set_ref.c 76 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
82 match &= (img1->d_h == img2->d_h);
84 for (i = 0; i < img1->d_h; ++i)
112 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
116 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) {
119 const int si = mmin(i + bsize, img1->d_h) - i;
vp8_multi_resolution_encoder.c 86 int h = (plane ? (1 + img->d_h) / 2 : img->d_h);
555 raw[i - 1].d_w, raw[i - 1].d_h, raw[i].planes[VPX_PLANE_Y],
558 raw[i].stride[VPX_PLANE_V], raw[i].d_w, raw[i].d_h, 1);
  /external/tensorflow/tensorflow/contrib/rnn/kernels/
gru_ops.h 133 typename TTypes<T>::ConstMatrix c, typename TTypes<T>::ConstMatrix d_h,
141 // d_c_bar = d_h*(1-u)*(1-(c*c))
143 ((d_h * (u.constant(T(1)) - u)) * (c.constant(T(1)) - c * c));
145 // d_u_bar = d_h*(h-c)*(u*(1-u))
146 d_u_bar.device(d) = d_h * (h_prev - c) * u * (u.constant(T(1)) - u);
174 // d_h_prev = d_h_comp1 + d_hr*r + d_h*u
177 (d_hr * r) + (d_h * u);
gru_ops.cc 205 OP_REQUIRES_OK(ctx, ctx->input("d_h", &d_h_tensor));
295 // Shape of 'd_h' must be [batch_size, cell_size]
298 "d_h.dims(0) != batch_size: ", d_h_tensor->dim_size(0),
302 "d_h.dims(1) != cell_size: ", d_h_tensor->dim_size(1),
427 typename TTypes<T>::ConstMatrix d_h, typename TTypes<T>::Matrix d_x, \
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 45 img->d_h = yv12->y_crop_height;
88 yv12->y_crop_height = img->d_h;
92 yv12->y_height = img->d_h;
  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
gru_ops.py 49 d_h: Gradients wrt to h
57 d_c_bar = d_h \circ (1-u) \circ (1-c \circ c)
58 d_u_bar = d_h \circ (h-c) \circ u \circ (1-u)
84 _, _, _, d_h = grad
87 x, h_prev, w_ru, w_c, b_ru, b_c, r, u, c, d_h)
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 739 RTC_DCHECK_EQ(input_image.height(), static_cast<int>(raw_images_[0].d_h));
763 raw_images_[i - 1].d_h, raw_images_[i].planes[VPX_PLANE_Y],
767 raw_images_[i].d_h, libyuv::kFilterBilinear);
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 210 img->d_h = img->r_h = yv12->y_height;
480 const int y_h = img->d_h;
482 const int uv_h = (img->d_h + 1) / 2;
vp8_cx_iface.c 268 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h))
688 const int y_h = img->d_h;
690 const int uv_h = (img->d_h + 1) / 2;
    [all...]
  /hardware/google/av/media/codecs/vpx/
C2SoftVpxDec.cpp 427 if (img->d_w != mWidth || img->d_h != mHeight) {
429 mHeight = img->d_h;
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 152 uint32_t height = mImg->d_h;
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.cc 493 RTC_DCHECK_EQ(input_image.height(), static_cast<int>(raw_->d_h));
693 encoded_image_._encodedHeight = raw_->d_h;
    [all...]

Completed in 345 milliseconds

1 2