Home
last modified time | relevance | path

Searched refs:VPX_IMG_FMT_I420 (Results 1 – 25 of 31) sorted by relevance

12

/external/libvpx/libvpx/vpx/
Dvpx_image.h55 VPX_IMG_FMT_I420 = VPX_IMG_FMT_PLANAR | 2, enumerator
63 VPX_IMG_FMT_I42016 = VPX_IMG_FMT_I420 | VPX_IMG_FMT_HIGHBITDEPTH,
/external/libvpx/libvpx/vpx/src/
Dvpx_image.c54 case VPX_IMG_FMT_I420: in img_alloc_helper()
70 case VPX_IMG_FMT_I420: in img_alloc_helper()
81 case VPX_IMG_FMT_I420: in img_alloc_helper()
/external/libvpx/libvpx/test/
Di420_video_source.h27 : YUVVideoSource(file_name, VPX_IMG_FMT_I420, width, height, in I420VideoSource()
Dvp9_arf_freq_test.cc47 { "hantro_collage_w352h288.yuv", 352, 288, 5000, 1, 8, VPX_IMG_FMT_I420,
49 { "hantro_collage_w352h288.yuv", 352, 288, 30, 1, 8, VPX_IMG_FMT_I420,
Dy4m_test.cc37 { "park_joy_90p_8_420.y4m", 8, VPX_IMG_FMT_I420,
100 if (fmt == VPX_IMG_FMT_I420 || fmt == VPX_IMG_FMT_I42016) { in HeaderChecks()
Dresize_test.cc611 if (frame < 10) return VPX_IMG_FMT_I420; in CspForFrameNumber()
613 return VPX_IMG_FMT_I420; in CspForFrameNumber()
646 if (CspForFrameNumber(video->frame()) != VPX_IMG_FMT_I420 && in PreEncodeFrameHook()
651 if (CspForFrameNumber(video->frame()) == VPX_IMG_FMT_I420 && in PreEncodeFrameHook()
Dvp9_motion_vector_test.cc86 "niklas_640_480_30.yuv", VPX_IMG_FMT_I420, 3840, 2160, // 2048, 1080, in TEST_P()
Dencode_api_test.cc35 EXPECT_EQ(&img, vpx_img_wrap(&img, VPX_IMG_FMT_I420, 1, 1, 1, buf)); in TEST()
Dyuv_video_source.h87 case VPX_IMG_FMT_I420: raw_size_ = width * height * 3 / 2; break; in SetSize()
Dvp9_end_to_end_test.cc43 { "park_joy_90p_8_420.y4m", 8, VPX_IMG_FMT_I420, VPX_BITS_8, 0 },
Dvideo_source.h137 format_(VPX_IMG_FMT_I420) { in DummyVideoSource()
Ddecode_api_test.cc106 vpx_img_alloc(&ref_copy.img, VPX_IMG_FMT_I420, width, height, 1) != NULL); in TestVp9Controls()
/external/libvpx/libvpx/
Dtools_common.c319 case VPX_IMG_FMT_I420: in lowbd_img_upshift()
360 case VPX_IMG_FMT_I420: in vpx_img_truncate_16_to_8()
429 case VPX_IMG_FMT_I420: in lowbd_img_downshift()
Dvpxdec.c144 assert(src->fmt == VPX_IMG_FMT_I420); in libyuv_scale()
145 assert(dst->fmt == VPX_IMG_FMT_I420); in libyuv_scale()
960 if (img->fmt != VPX_IMG_FMT_I420 && in main_loop()
967 if ((img->fmt != VPX_IMG_FMT_I420 && in main_loop()
Dvpxenc.c1367 case VPX_IMG_FMT_I420: return "I420"; in image_format_to_string()
1610 if (img->fmt != VPX_IMG_FMT_I420 && img->fmt != VPX_IMG_FMT_YV12) { in encode_frame()
1617 vpx_img_alloc(NULL, VPX_IMG_FMT_I420, cfg->g_w, cfg->g_h, 16); in encode_frame()
1788 vpx_img_alloc(&ref_enc.img, VPX_IMG_FMT_I420, width, height, 1); in test_decode()
1790 vpx_img_alloc(&ref_dec.img, VPX_IMG_FMT_I420, width, height, 1); in test_decode()
1908 case I420: input.fmt = VPX_IMG_FMT_I420; break; in main()
/external/libvpx/libvpx/examples/
Dvp9_lossless_encoder.c91 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width, in main()
Dvp8cx_set_ref.c135 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width, in main()
Dsimple_encoder.c194 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width, in main()
Dset_maps.c187 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width, in main()
Dtwopass_encoder.c223 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, w, h, 1)) in main()
Dvpx_temporal_svc_encoder.c585 &raw, bit_depth == VPX_BITS_8 ? VPX_IMG_FMT_I420 : VPX_IMG_FMT_I42016, in main()
590 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, width, height, 32)) { in main()
Dvp9_spatial_svc_encoder.c643 if (!vpx_img_alloc(&raw, enc_cfg.g_input_bit_depth == 8 ? VPX_IMG_FMT_I420 in main()
649 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, enc_cfg.g_w, enc_cfg.g_h, 32)) { in main()
Dvp9cx_set_ref.c352 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width, in main()
/external/libvpx/libvpx/vp9/
Dvp9_iface_common.h35 img->fmt = VPX_IMG_FMT_I420; in yuvconfig2image()
/external/libvpx/libvpx/vp8/
Dvp8_cx_iface.c261 case VPX_IMG_FMT_I420: in validate_img()
1056 ctx->preview_img.fmt = VPX_IMG_FMT_I420; in vp8e_get_preview()

12