Home | History | Annotate | Download | only in jpeg

Lines Matching refs:dstdata

223   uint8* dstdata = nullptr;
225 dstdata = new JSAMPLE[stride * target_output_height];
227 dstdata = argball->allocate_output_(target_output_width,
231 uint8* dstdata = argball->allocate_output_(target_output_width,
234 if (dstdata == nullptr) {
238 JSAMPLE* output_line = static_cast<JSAMPLE*>(dstdata);
355 dstdata + static_cast<int64>(target_output_height - 1) * stride);
436 delete[] dstdata;
441 const uint8* full_image = dstdata;
442 dstdata = argball->allocate_output_(target_output_width,
444 if (dstdata == nullptr) {
464 uint8* crop_image_ptr = dstdata;
475 return dstdata;
493 uint8* const dstdata = UncompressLow(srcdata, &argball);
499 if (dstdata == nullptr ||
509 uint8* start = dstdata + first_bad_line * argball.stride_;
514 return dstdata;