Searched defs:max_height (Results 1 - 25 of 25) sorted by relevance

/external/webrtc/talk/media/webrtc/
H A Dwebrtcvideoencoderfactory.h47 int max_height; member in struct:cricket::WebRtcVideoEncoderFactory::VideoCodec
52 : type(t), name(nm), max_width(w), max_height(h), max_fps(fr) {
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Ddelay_peak_detector.cc50 int max_height = -1; // Returns -1 for an empty history. local
53 max_height = std::max(max_height, it->peak_height_packets);
55 return max_height;
/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dcontext.c56 unsigned int max_width = 0, max_height = 0; local
96 max_height = surface_info[l].max_height;
112 i, port, surface_type_id, max_width, max_height, *chroma_format,
131 if (width > max_width || height > max_height) {
133 width, height, max_width, max_height);
/external/freetype/src/pshinter/
H A Dpshglob.c712 FT_Short max_height = 1; local
715 max_height = psh_calc_max_height( priv->num_blue_values,
717 max_height );
718 max_height = psh_calc_max_height( priv->num_other_blues,
720 max_height );
721 max_height = psh_calc_max_height( priv->num_family_blues,
723 max_height );
724 max_height = psh_calc_max_height( priv->num_family_other_blues,
726 max_height );
729 max_scale = FT_DivFix( 1000, max_height );
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dv4l2-subdev.h97 __u32 max_height; member in struct:v4l2_subdev_frame_size_enum
H A Dvideodev2.h733 __u32 max_height; /* Maximum frame height [pixel] */ member in struct:v4l2_frmsize_stepwise
1434 * @max_height: height in lines
1445 __u32 max_height; member in struct:v4l2_bt_timings_cap
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
H A Dglx_usefont.c222 unsigned int max_width, max_height, max_bm_width, max_bm_height; local
241 max_height = fs->max_bounds.ascent + fs->max_bounds.descent;
243 max_bm_height = max_height;
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Dquery.c68 VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
74 if (!(is_supported && max_width && max_height))
95 *max_width = *max_height = pow(2,max_2d_texture_level-1);
163 uint32_t *max_width, uint32_t *max_height)
169 if (!(is_supported && max_level && max_macroblocks && max_width && max_height))
192 *max_height = pscreen->get_video_param(pscreen, p_profile, PIPE_VIDEO_ENTRYPOINT_BITSTREAM,
196 *max_macroblocks = (*max_width/16)*(*max_height/16);
199 *max_height = 0;
213 VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
231 if (!(is_supported && max_width && max_height))
67 vlVdpVideoSurfaceQueryCapabilities(VdpDevice device, VdpChromaType surface_chroma_type, VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height) argument
161 vlVdpDecoderQueryCapabilities(VdpDevice device, VdpDecoderProfile profile, VdpBool *is_supported, uint32_t *max_level, uint32_t *max_macroblocks, uint32_t *max_width, uint32_t *max_height) argument
212 vlVdpOutputSurfaceQueryCapabilities(VdpDevice device, VdpRGBAFormat surface_rgba_format, VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height) argument
412 vlVdpBitmapSurfaceQueryCapabilities(VdpDevice device, VdpRGBAFormat surface_rgba_format, VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height) argument
[all...]
/external/mesa3d/src/glx/
H A Dxfont.c232 unsigned int max_width, max_height, max_bm_width, max_bm_height; local
254 max_height = fs->max_bounds.ascent + fs->max_bounds.descent;
256 max_bm_height = max_height;
/external/mesa3d/src/mesa/drivers/x11/
H A Dxfonts.c222 unsigned int max_width, max_height, max_bm_width, max_bm_height; local
240 max_height = fs->max_bounds.ascent + fs->max_bounds.descent;
242 max_bm_height = max_height;
/external/skia/gm/
H A Dblurrect.cpp187 int max_height = 0; local
214 cur_y += max_height + fPadding;
215 max_height = 0;
225 if (bm.height() > max_height)
226 max_height = bm.height();
/external/skqp/gm/
H A Dblurrect.cpp187 int max_height = 0; local
214 cur_y += max_height + fPadding;
215 max_height = 0;
225 if (bm.height() > max_height)
226 max_height = bm.height();
/external/ImageMagick/MagickCore/
H A Dmontage.c386 max_height,
589 max_height=0;
599 if (image_list[tile]->rows > max_height)
600 max_height=image_list[tile]->rows;
612 height=concatenate != MagickFalse ? max_height : extract_info.height;
618 max_height=0;
710 max_height=0;
721 if (image->rows > max_height)
722 max_height=image->rows;
723 height=concatenate != MagickFalse ? max_height
381 max_height, local
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A Dr600_test_dma.c220 unsigned bpp, max_width, max_height, max_depth, j, num; local
309 max_height = MIN2(tsrc.height0, tdst.height0);
323 height = max_height;
337 if (max_width < 8 || max_height < 8)
340 height = ((rand() % (max_height / 8)) + 1) * 8;
349 assert(max_width > 0 && max_height > 0);
352 height = (rand() % max_height) + 1;
/external/tensorflow/tensorflow/core/kernels/
H A Dsample_distorted_bounding_box_op.cc126 int max_height = static_cast<int>(lrintf(sqrt(max_area / aspect_ratio))); local
128 if (lrintf(max_height * aspect_ratio) > original_width) {
129 // We must find the smallest max_height satisfying
130 // round(max_height * aspect_ratio) <= original_width:
132 max_height = static_cast<int>((original_width + 0.5 - kEps) / aspect_ratio);
135 if (max_height > original_height) {
136 max_height = original_height;
139 if (height >= max_height) {
140 height = max_height;
143 if (height < max_height) {
[all...]
/external/freetype/src/autofit/
H A Daflatin.c1198 FT_Pos max_height; local
1206 max_height = metrics->units_per_em;
1210 max_height = FT_MAX( max_height, Axis->blues[nn].ascender );
1211 max_height = FT_MAX( max_height, -Axis->blues[nn].descender );
1214 dist = FT_ABS( FT_MulFix( max_height, new_scale - scale ) );
/external/libdrm/
H A Dxf86drmMode.h201 uint32_t min_height, max_height; member in struct:_drmModeRes
/external/libxcam/modules/isp/
H A Daiq_handler.cpp91 unsigned int max_height,
113 unsigned int max_height,
119 _handle = ia_isp_2_2_init (cpf, max_width, max_height, cmc, mkn);
183 unsigned int max_height,
203 unsigned int max_height,
209 _handle = ia_isp_1_5_init (cpf, max_width, max_height, cmc, mkn);
110 init( const ia_binary_data *cpf, unsigned int max_width, unsigned int max_height, ia_cmc_t *cmc, ia_mkn *mkn) argument
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_state.c913 unsigned max_width, max_height, i; local
918 max_width = max_height = 4096;
920 max_width = max_height = 4021;
922 max_width = max_height = 2560;
925 if (state->width > max_width || state->height > max_height) {
/external/flac/libFLAC/
H A Dmetadata_iterators.c268 FLAC_API FLAC__bool FLAC__metadata_get_picture(const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors) argument
296 obj->data.picture.height <= max_height &&
/external/kernel-headers/original/uapi/drm/
H A Ddrm_mode.h209 __u32 max_height; member in struct:drm_mode_card_res
/external/libdrm/include/drm/
H A Ddrm_mode.h150 __u32 max_height; member in struct:drm_mode_card_res
/external/valgrind/include/vki/
H A Dvki-linux-drm.h366 __vki_u32 min_height, max_height; member in struct:vki_drm_mode_card_res
H A Dvki-linux.h3789 __vki_u32 max_height; /* Maximum frame height [pixel] */ member in struct:vki_v4l2_frmsize_stepwise
4021 __vki_u32 max_height; member in struct:vki_v4l2_bt_timings_cap
4558 __vki_u32 max_height; member in struct:vki_v4l2_subdev_frame_size_enum
/external/v4l2_codec2/vda/
H A Dvideodev2.h693 __u32 max_height; /* Maximum frame height [pixel] */ member in struct:v4l2_frmsize_stepwise
1357 * @max_height: height in lines
1368 __u32 max_height; member in struct:v4l2_bt_timings_cap

Completed in 532 milliseconds