Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavfilter/
Dvsrc_life.c167 int ret, i, i0, j, h = 0, w, max_w = 0; in init_pattern_from_file() local
178 h++; max_w = FFMAX(w, max_w); w = 0; in init_pattern_from_file()
183 av_log(ctx, AV_LOG_DEBUG, "h:%d max_w:%d\n", h, max_w); in init_pattern_from_file()
186 if (max_w > life->w || h > life->h) { in init_pattern_from_file()
189 life->w, life->h, max_w, h); in init_pattern_from_file()
194 life->w = max_w; in init_pattern_from_file()
208 for (j = (life->w - max_w)/2;; j++) { in init_pattern_from_file()
/third_party/gstreamer/gstplugins_bad/sys/dshowsrcwrapper/
Dgstdshow.cpp649 gint min_w, max_w; in gst_dshow_new_video_caps() local
717 max_w = pin_mediatype->vscc.MaxOutputSize.cx; in gst_dshow_new_video_caps()
723 if (min_w == max_w) in gst_dshow_new_video_caps()
727 "width", GST_TYPE_INT_RANGE, min_w, max_w, NULL); in gst_dshow_new_video_caps()
/third_party/flutter/skia/third_party/externals/sdl/src/video/wayland/
DSDL_waylandwindow.c59 if (window->max_w > 0) { in handle_configure()
60 width = SDL_min(width, window->max_w); in handle_configure()
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowsevents.c685 int max_w, max_h; in WIN_WindowProc() local
706 SDL_GetWindowMaximumSize(data->window, &max_w, &max_h); in WIN_WindowProc()
712 if (max_w && max_h) { in WIN_WindowProc()
713 max_w -= w; in WIN_WindowProc()
742 info->ptMaxTrackSize.x = w + max_w; in WIN_WindowProc()
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_video.c1874 if (window->max_w && w > window->max_w) in SDL_SetWindowSize()
1876 w = window->max_w; in SDL_SetWindowSize()
1979 SDL_SetWindowMaximumSize(SDL_Window * window, int max_w, int max_h) in SDL_SetWindowMaximumSize() argument
1982 if (max_w <= 0) { in SDL_SetWindowMaximumSize()
1992 window->max_w = max_w; in SDL_SetWindowMaximumSize()
1998 … SDL_SetWindowSize(window, SDL_min(window->w, window->max_w), SDL_min(window->h, window->max_h)); in SDL_SetWindowMaximumSize()
2003 SDL_GetWindowMaximumSize(SDL_Window * window, int *max_w, int *max_h) in SDL_GetWindowMaximumSize() argument
2006 if (max_w) { in SDL_GetWindowMaximumSize()
2007 *max_w = window->max_w; in SDL_GetWindowMaximumSize()
DSDL_sysvideo.h80 int max_w, max_h; member
/third_party/mesa3d/src/mesa/drivers/dri/nouveau/
Dnv04_surface.c204 const unsigned max_w = 1024; in nv04_surface_copy_swizzle() local
206 unsigned sub_w = w > max_w ? max_w : w; in nv04_surface_copy_swizzle()
/third_party/gstreamer/gstplugins_base/sys/xvimage/
Dxvcontext.c108 gulong max_w = G_MAXINT, max_h = G_MAXINT; in gst_xvcontext_get_xv_support() local
259 max_w = encodings[i].width; in gst_xvcontext_get_xv_support()
296 "width", GST_TYPE_INT_RANGE, 1, max_w, in gst_xvcontext_get_xv_support()
311 "width", GST_TYPE_INT_RANGE, 1, max_w, in gst_xvcontext_get_xv_support()
/third_party/gstreamer/gstplugins_good/sys/v4l2/
Dgstv4l2object.c2919 gint min_w, max_w, min_h, max_h, fix_num = 0, fix_denom = 0; in gst_v4l2_object_probe_caps_for_format() local
2923 max_w = max_h = GST_V4L2_MAX_SIZE; in gst_v4l2_object_probe_caps_for_format()
2930 if (!gst_v4l2_object_get_nearest_size (v4l2object, pixelformat, &max_w, in gst_v4l2_object_probe_caps_for_format()
2938 if (max_w == 0 || max_h == 0) in gst_v4l2_object_probe_caps_for_format()
2939 max_w = max_h = GST_V4L2_MAX_SIZE; in gst_v4l2_object_probe_caps_for_format()
2971 if (min_w == max_w) in gst_v4l2_object_probe_caps_for_format()
2972 gst_structure_set (tmp, "width", G_TYPE_INT, max_w, NULL); in gst_v4l2_object_probe_caps_for_format()
2974 gst_structure_set (tmp, "width", GST_TYPE_INT_RANGE, min_w, max_w, NULL); in gst_v4l2_object_probe_caps_for_format()
2984 gst_v4l2_object_add_interlace_mode (v4l2object, tmp, max_w, max_h, in gst_v4l2_object_probe_caps_for_format()
2989 if (v4l2object->info.width >= min_w && v4l2object->info.width <= max_w && in gst_v4l2_object_probe_caps_for_format()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_video.h678 int max_w, int max_h);
/third_party/flutter/skia/third_party/externals/sdl/src/video/mir/
DSDL_mirwindow.c338 MIR_mir_surface_spec_set_max_width (spec, window->max_w); in MIR_SetWindowMaximumSize()
/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/
DSDL_x11window.c827 sizehints->max_width = window->max_w; in X11_SetWindowMaximumSize()
998 sizehints->max_width = (window->max_w == 0) ? maxsize : window->max_w; in X11_SetWindowResizable()
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoawindow.m1396 maxSize.width = window->max_w;
/third_party/gstreamer/gstplugins_good/
DChangeLog48794 from min_w to max_w with step_w and same for heights.