Home
last modified time | relevance | path

Searched refs:new_width (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/talk/media/webrtc/
Dwebrtcvideoframefactory_unittest.cc89 int new_width = captured_frame.width / 2; in TestCreateAliasedFrame() local
91 frame.reset(factory.CreateAliasedFrame(&captured_frame, new_width, in TestCreateAliasedFrame()
92 new_height, new_width, new_height)); in TestCreateAliasedFrame()
93 VerifyFrame(frame.get(), webrtc::kVideoRotation_270, new_width, new_height, in TestCreateAliasedFrame()
97 &captured_frame, new_width, new_height, new_width / 2, new_height / 2)); in TestCreateAliasedFrame()
98 VerifyFrame(frame.get(), webrtc::kVideoRotation_270, new_width / 2, in TestCreateAliasedFrame()
105 &captured_frame, new_width, new_height, new_width / 2, new_height / 2)); in TestCreateAliasedFrame()
106 VerifyFrame(frame.get(), webrtc::kVideoRotation_270, new_width / 2, in TestCreateAliasedFrame()
Dwebrtcvideoframe.cc212 int new_width = dw; in Reset() local
216 new_width = dh; in Reset()
220 InitToEmptyBuffer(new_width, new_height, pixel_width, pixel_height, in Reset()
/external/webrtc/talk/media/base/
Dvideoadapter.cc427 int new_width, new_height; in OnOutputFormatRequest() local
428 bool changed = AdaptToMinimumFormat(&new_width, &new_height); in OnOutputFormatRequest()
433 << " To: " << new_width << "x" << new_height; in OnOutputFormatRequest()
497 int new_width, new_height; in OnEncoderResolutionRequest() local
498 bool changed = AdaptToMinimumFormat(&new_width, &new_height); in OnEncoderResolutionRequest()
512 << " To: " << new_width << "x" << new_height; in OnEncoderResolutionRequest()
558 int new_width, new_height; in OnCpuResolutionRequest() local
559 bool changed = AdaptToMinimumFormat(&new_width, &new_height); in OnCpuResolutionRequest()
565 << " To: " << new_width << "x" << new_height; in OnCpuResolutionRequest()
624 bool CoordinatedVideoAdapter::AdaptToMinimumFormat(int* new_width, in AdaptToMinimumFormat() argument
[all …]
Dvideoadapter.h169 bool AdaptToMinimumFormat(int* new_width, int* new_height);
/external/v8/src/compiler/
Dloop-analysis.cc274 int new_width = width_ + 1; in ResizeBackwardMarks() local
276 uint32_t* new_backward = zone_->NewArray<uint32_t>(new_width * max); in ResizeBackwardMarks()
277 memset(new_backward, 0, new_width * max * sizeof(uint32_t)); in ResizeBackwardMarks()
280 uint32_t* np = &new_backward[i * new_width]; in ResizeBackwardMarks()
285 width_ = new_width; in ResizeBackwardMarks()
/external/skia/src/effects/
DSkBlurMask.cpp87 int new_width = width + SkMax32(leftRadius, rightRadius) * 2; in boxBlur() local
89 int dst_y_stride = Transpose ? 1 : new_width; in boxBlur()
225 return new_width; in boxBlur()
295 int new_width = width + diameter; in boxBlurInterp() local
297 int dst_y_stride = Transpose ? 1 : new_width; in boxBlurInterp()
407 return new_width; in boxBlurInterp()
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DMediaCodecVideoDecoder.java541 int new_width = format.getInteger(MediaFormat.KEY_WIDTH); in dequeueOutputBuffer() local
543 if (hasDecodedFirstFrame && (new_width != width || new_height != height)) { in dequeueOutputBuffer()
545 height + ". New " + new_width + "*" + new_height); in dequeueOutputBuffer()
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c2987 int new_width = cpi->oxcf.Width; in find_next_key_frame() local
3070 new_height, new_width); in find_next_key_frame()
3121 new_width = ((hs - 1) + (cpi->oxcf.Width * hr)) / hs; in find_next_key_frame()
3128 effective_size_ratio = (double)(new_width * new_height) / in find_next_key_frame()
3145 new_height, new_width); in find_next_key_frame()
3151 if ((cpi->common.Width != new_width) || in find_next_key_frame()
3153 cpi->common.Width = new_width; in find_next_key_frame()
Donyx_if.c2545 int new_width, new_height; in resize_key_frame() local
2567 new_width = ((hs - 1) + (cpi->oxcf.Width * hr)) / hs; in resize_key_frame()
2573 if ((cm->Width != new_width) || (cm->Height != new_height)) { in resize_key_frame()
2574 cm->Width = new_width; in resize_key_frame()
/external/webrtc/webrtc/modules/video_coding/
Dqm_select_unittest.cc65 uint16_t new_width,
1293 uint16_t new_width, in IsSelectedActionCorrect() argument
1299 qm_scale->codec_width == new_width && in IsSelectedActionCorrect()
/external/pdfium/core/fxcrt/
Dfx_coordinates.h81 CFX_STemplate(BaseType new_width, BaseType new_height) in CFX_STemplate() argument
82 : width(new_width), height(new_height) {} in CFX_STemplate()
/external/libjpeg-turbo/
Dtransupp.c1183 JDIMENSION new_width, JDIMENSION new_height) in adjust_exif_parameters() argument
1300 new_value = new_width; /* ExifImageWidth Tag */ in adjust_exif_parameters()
/external/libcups/cups/
Dppd-cache.c987 int new_width, /* New width in 2540ths */ in _ppdCacheCreateWithPPD() local
1099 new_width = pwg_media->width; in _ppdCacheCreateWithPPD()
1120 _PWG_EQUIVALENT(old_size->width, new_width) && in _ppdCacheCreateWithPPD()
1157 new_size->width = new_width; in _ppdCacheCreateWithPPD()
/external/pdfium/core/fxge/dib/
Dfx_dib_composite.cpp4694 int new_width = rect.right / 8 - rect.left / 8; in CompositeRect() local
4710 if (new_width) { in CompositeRect()
4711 FXSYS_memset(dest_scan_top + 1, index ? 255 : 0, new_width - 1); in CompositeRect()