Searched refs:new_w (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | rv10.c | 212 int f, new_w, new_h; in rv20_decode_picture_header() local 223 new_w = 4 * ((uint8_t *) s->avctx->extradata)[6 + 2 * f]; in rv20_decode_picture_header() 226 new_w = rv->orig_width; in rv20_decode_picture_header() 229 if (new_w != s->width || new_h != s->height || !s->context_initialized) { in rv20_decode_picture_header() 232 "attempting to change resolution to %dx%d\n", new_w, new_h); in rv20_decode_picture_header() 233 if (av_image_check_size(new_w, new_h, 0, s->avctx) < 0) in rv20_decode_picture_header() 236 if (whole_size < (new_w + 15)/16 * ((new_h + 15)/16) / 8) in rv20_decode_picture_header() 244 if (2 * (int64_t)new_w * s->height == (int64_t)new_h * s->width) in rv20_decode_picture_header() 246 if ((int64_t)new_w * s->height == 2 * (int64_t)new_h * s->width) in rv20_decode_picture_header() 249 ret = ff_set_dimensions(s->avctx, new_w, new_h); in rv20_decode_picture_header() [all …]
|
D | rv34.c | 1596 static AVRational update_sar(int old_w, int old_h, AVRational sar, int new_w, int new_h) in update_sar() argument 1602 sar = av_mul_q(sar, av_mul_q((AVRational){new_h, new_w}, (AVRational){old_w, old_h})); in update_sar()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/mir/ |
D | SDL_mirevents.c | 262 int new_w = MIR_mir_resize_event_get_width (resize_event); in MIR_HandleResize() local 268 if (new_w != old_w || new_h != old_h) in MIR_HandleResize() 269 SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESIZED, new_w, new_h); in MIR_HandleResize()
|
/third_party/gstreamer/gstplugins_base/ext/gl/ |
D | gstglimagesink.c | 1524 gint new_w, new_h; in update_output_format() local 1533 new_w = glimage_sink->display_rect.w; in update_output_format() 1535 if (new_w != out_info->width || new_h != out_info->height) { in update_output_format() 1541 !gst_util_fraction_multiply (from_dar_n, from_dar_d, new_h, new_w, in update_output_format() 1548 out_info->width = new_w; in update_output_format()
|
/third_party/skia/src/core/ |
D | SkGpuBlurUtils.cpp | 880 auto get_new_weight = [](float* new_w, float* offset, float wi, float wj) { in Compute1DLinearGaussianKernel() argument 881 *new_w = wi + wj; in Compute1DLinearGaussianKernel()
|