HomeSort by relevance Sort by last modified time
    Searched full:yuv_width (Results 1 - 3 of 3) sorted by null

  /pdk/apps/TestingCamera/src/com/android/testingcamera/
callback.rs 9 uint32_t yuv_width;
48 yuv_width = yw;
53 x_scale = (float)yuv_width / out_width;
59 y_stride = yuv_width;
60 uv_stride = yuv_width;
66 y_stride = (yuv_width + 0xF) & ~0xF;
72 y_stride = yuv_width * 2;
80 y_stride = yuv_width;
81 uv_stride = yuv_width;
  /hardware/intel/img/psb_video/src/
vsp_compose.c 58 int yuv_width = 0, yuv_height = 0, yuv_stride = 0; local
99 yuv_width = ALIGN_TO_16(yuv_surface->width);
127 cell_compose_param->Video_IN_xsize = yuv_width;
179 cell_compose_param->scalefactor_dx = (unsigned int)(1024 / (((float)out_width) / yuv_width) + 0.5);
  /external/chromium_org/third_party/webrtc/tools/barcode_tools/
barcode_encoder.py 243 def calculate_frames_number_from_yuv(yuv_width, yuv_height, file_name):
247 yuv_width(int): Width of a frame of the yuv file.
255 y_plane_size = yuv_width * yuv_height
256 u_plane_size = (yuv_width/2) * (yuv_height/2) # Equals to V plane size too

Completed in 198 milliseconds