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

  /external/libvpx/libvpx/vpx/
vpx_image.h 35 #define VPX_IMG_FMT_HIGHBITDEPTH 0x800 /**< Image uses 16bit framebuffer. */
63 VPX_IMG_FMT_I42016 = VPX_IMG_FMT_I420 | VPX_IMG_FMT_HIGHBITDEPTH,
64 VPX_IMG_FMT_I42216 = VPX_IMG_FMT_I422 | VPX_IMG_FMT_HIGHBITDEPTH,
65 VPX_IMG_FMT_I44416 = VPX_IMG_FMT_I444 | VPX_IMG_FMT_HIGHBITDEPTH,
66 VPX_IMG_FMT_I44016 = VPX_IMG_FMT_I440 | VPX_IMG_FMT_HIGHBITDEPTH
  /external/libvpx/libvpx/
tools_common.c 82 const int bytespp = (yuv_frame->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1;
226 ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1);
244 ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1);
315 dst->fmt != src->fmt + VPX_IMG_FMT_HIGHBITDEPTH || input_shift < 0) {
345 if (src->fmt & VPX_IMG_FMT_HIGHBITDEPTH) {
354 if (dst->fmt + VPX_IMG_FMT_HIGHBITDEPTH != src->fmt || dst->d_w != src->d_w ||
425 src->fmt != dst->fmt + VPX_IMG_FMT_HIGHBITDEPTH || down_shift < 0) {
455 if (dst->fmt & VPX_IMG_FMT_HIGHBITDEPTH) {
vpxenc.c 806 if (img1->fmt & VPX_IMG_FMT_HIGHBITDEPTH) {
    [all...]
vpxdec.c 272 ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1);
286 const int bytes_per_sample = ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1);
918 ? img->fmt ^ (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH)
919 : img->fmt | VPX_IMG_FMT_HIGHBITDEPTH;
    [all...]
  /external/libvpx/libvpx/test/
md5_helper.h 30 (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1;
y4m_test.cc 62 const int bytes_per_sample = (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1;
  /external/libvpx/libvpx/vpx/src/
vpx_image.c 97 stride_in_bytes = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s;
122 stride_in_bytes = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s;
135 img->bit_depth = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 16 : 8;
182 (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1;
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 62 img->fmt = (vpx_img_fmt_t)(img->fmt | VPX_IMG_FMT_HIGHBITDEPTH);
107 if (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) {

Completed in 123 milliseconds