HomeSort by relevance Sort by last modified time
    Searched refs:ch_org (Results 1 - 2 of 2) sorted by null

  /external/libyuv/files/util/
convert.cc 245 uint8* const ch_org = new uint8[org_size]; local
248 if (ch_org == NULL || ch_rec == NULL) {
254 delete[] ch_org;
273 fread(ch_org, sizeof(uint8), static_cast<size_t>(org_size), file_org);
280 libyuv::ARGBAttenuate(ch_org, 0, ch_org, 0, org_size / 4, 1);
284 libyuv::ARGBUnattenuate(ch_org, 0, ch_org, 0, org_size / 4, 1);
297 ch_org, src_width, ch_org + src_width * src_height, half_src_width
    [all...]
psnr_main.cc 93 uint8* const ch_org = new uint8[total_size]; local
94 memset(ch_org, 0, total_size);
95 size_t bytes_org = fread(ch_org, sizeof(uint8), total_size, file_org);
98 if (0 == libyuv::MJPGSize(ch_org, total_size, width_ptr, height_ptr)) {
99 delete[] ch_org;
103 delete[] ch_org;
240 bool UpdateMetrics(uint8* ch_org,
250 const uint8* const u_org = ch_org + y_size + uv_offset;
252 const uint8* const v_org = ch_org + y_size + (uv_size - uv_offset);
257 libyuv::ComputeSumSquareError(ch_org, ch_rec, y_size))
377 uint8* const ch_org = new uint8[total_size]; local
    [all...]

Completed in 66 milliseconds