Home
last modified time | relevance | path

Searched refs:VPX_IMG_FMT_HIGHBITDEPTH (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/vpx/
Dvpx_image.h35 #define VPX_IMG_FMT_HIGHBITDEPTH 0x800 /**< Image uses 16bit framebuffer. */ macro
46 VPX_IMG_FMT_I42016 = VPX_IMG_FMT_I420 | VPX_IMG_FMT_HIGHBITDEPTH,
47 VPX_IMG_FMT_I42216 = VPX_IMG_FMT_I422 | VPX_IMG_FMT_HIGHBITDEPTH,
48 VPX_IMG_FMT_I44416 = VPX_IMG_FMT_I444 | VPX_IMG_FMT_HIGHBITDEPTH,
49 VPX_IMG_FMT_I44016 = VPX_IMG_FMT_I440 | VPX_IMG_FMT_HIGHBITDEPTH
/external/libvpx/libvpx/
Dtools_common.c82 const int bytespp = (yuv_frame->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1; in read_yuv_frame()
226 ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1); in vpx_img_write()
244 ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1); in vpx_img_read()
315 dst->fmt != src->fmt + VPX_IMG_FMT_HIGHBITDEPTH || input_shift < 0) { in lowbd_img_upshift()
345 if (src->fmt & VPX_IMG_FMT_HIGHBITDEPTH) { in vpx_img_upshift()
354 if (dst->fmt + VPX_IMG_FMT_HIGHBITDEPTH != src->fmt || dst->d_w != src->d_w || in vpx_img_truncate_16_to_8()
425 src->fmt != dst->fmt + VPX_IMG_FMT_HIGHBITDEPTH || down_shift < 0) { in lowbd_img_downshift()
455 if (dst->fmt & VPX_IMG_FMT_HIGHBITDEPTH) { in vpx_img_downshift()
Dvpxenc.c814 if (img1->fmt & VPX_IMG_FMT_HIGHBITDEPTH) { in compare_img()
1613 if ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) && in encode_frame()
1845 if ((enc_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) != in test_decode()
1846 (dec_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH)) { in test_decode()
1847 if (enc_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) { in test_decode()
1848 vpx_img_alloc(&enc_img, enc_img.fmt - VPX_IMG_FMT_HIGHBITDEPTH, in test_decode()
1852 if (dec_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) { in test_decode()
1853 vpx_img_alloc(&dec_img, dec_img.fmt - VPX_IMG_FMT_HIGHBITDEPTH, in test_decode()
1866 if (enc_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) { in test_decode()
2026 if (input.bit_depth > 8) input.fmt |= VPX_IMG_FMT_HIGHBITDEPTH; in main()
[all …]
Dvpxdec.c294 ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1); in update_image_md5()
308 const int bytes_per_sample = ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1); in write_image_file()
958 ? img->fmt ^ (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) in main_loop()
959 : img->fmt | VPX_IMG_FMT_HIGHBITDEPTH; in main_loop()
/external/libvpx/libvpx/vpx/src/
Dvpx_image.c78 stride_in_bytes = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s; in img_alloc_helper()
103 stride_in_bytes = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s; in img_alloc_helper()
116 img->bit_depth = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 16 : 8; in img_alloc_helper()
163 (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1; in vpx_img_set_rect()
/external/libvpx/libvpx/vp9/
Dvp9_iface_common.h62 img->fmt = (vpx_img_fmt_t)(img->fmt | VPX_IMG_FMT_HIGHBITDEPTH); in yuvconfig2image()
107 if (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) { in image2yuvconfig()
/external/libvpx/libvpx/test/
Dmd5_helper.h30 (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1; in Add()
Dy4m_test.cc62 const int bytes_per_sample = (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1; in write_image_file()