Searched refs:raw_frame (Results 1 – 3 of 3) sorted by relevance
/frameworks/av/media/codec2/components/aom/ |
D | C2SoftAomEnc.cpp | 824 aom_image_t raw_frame; in process() local 917 aom_img_wrap(&raw_frame, AOM_IMG_FMT_I420, width, height, mStrideAlign, in process() 931 aom_img_wrap(&raw_frame, AOM_IMG_FMT_I420, width, height, mStrideAlign, in process() 933 raw_frame.planes[1] = (uint8_t*)rView->data()[1]; in process() 934 raw_frame.planes[2] = (uint8_t*)rView->data()[2]; in process() 935 raw_frame.stride[0] = layout.planes[layout.PLANE_Y].rowInc; in process() 936 raw_frame.stride[1] = layout.planes[layout.PLANE_U].rowInc; in process() 937 raw_frame.stride[2] = layout.planes[layout.PLANE_V].rowInc; in process() 949 aom_img_wrap(&raw_frame, AOM_IMG_FMT_I420, stride, vstride, mStrideAlign, in process() 951 aom_img_set_rect(&raw_frame, 0, 0, width, height, 0); in process() [all …]
|
/frameworks/av/media/codec2/components/vpx/ |
D | C2SoftVpxEnc.cpp | 912 vpx_image_t raw_frame; in process() local 934 vpx_img_wrap(&raw_frame, VPX_IMG_FMT_I420, width, height, in process() 949 vpx_img_wrap(&raw_frame, VPX_IMG_FMT_I420, width, height, in process() 951 raw_frame.planes[1] = (uint8_t*)rView->data()[1]; in process() 952 raw_frame.planes[2] = (uint8_t*)rView->data()[2]; in process() 953 raw_frame.stride[0] = layout.planes[layout.PLANE_Y].rowInc; in process() 954 raw_frame.stride[1] = layout.planes[layout.PLANE_U].rowInc; in process() 955 raw_frame.stride[2] = layout.planes[layout.PLANE_V].rowInc; in process() 966 vpx_img_wrap(&raw_frame, VPX_IMG_FMT_I420, stride, vstride, in process() 968 vpx_img_set_rect(&raw_frame, 0, 0, width, height); in process() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/enc/ |
D | SoftVPXEncoder.cpp | 695 vpx_image_t raw_frame; in onQueueFilled() local 696 vpx_img_wrap(&raw_frame, VPX_IMG_FMT_I420, mWidth, mHeight, in onQueueFilled() 731 &raw_frame, in onQueueFilled()
|