Home
last modified time | relevance | path

Searched refs:VPX_IMG_FMT_HIGH (Results 1 – 5 of 5) sorted by relevance

/external/libvpx/libvpx/vpx/
Dvpx_image.h37 #define VPX_IMG_FMT_HIGH 0x800 /**< Image uses 16bit framebuffer */ macro
62 VPX_IMG_FMT_I42016 = VPX_IMG_FMT_I420 | VPX_IMG_FMT_HIGH,
63 VPX_IMG_FMT_I42216 = VPX_IMG_FMT_I422 | VPX_IMG_FMT_HIGH,
64 VPX_IMG_FMT_I44416 = VPX_IMG_FMT_I444 | VPX_IMG_FMT_HIGH
/external/libvpx/libvpx/test/
Dmd5_helper.h31 const int bytes_per_sample = (img->fmt & VPX_IMG_FMT_HIGH) ? 2 : 1; in Add()
Dy4m_test.cc60 const int bytes_per_sample = (img->fmt & VPX_IMG_FMT_HIGH) ? 2 : 1; in write_image_file()
/external/libvpx/libvpx/
Dtools_common.c86 const int bytespp = (yuv_frame->fmt & VPX_IMG_FMT_HIGH) ? 2 : 1; in read_yuv_frame()
/external/libvpx/libvpx/vpx/src/
Dvpx_image.c183 img->bit_depth = (fmt & VPX_IMG_FMT_HIGH) ? 16 : 8; in img_alloc_helper()