Lines Matching defs:height

112                               int height, const ptrdiff_t linesizes[4])
122 if (linesizes[0] > SIZE_MAX / height)
124 sizes[0] = linesizes[0] * (size_t)height;
136 h = (height + (1 << s) - 1) >> s;
145 int av_image_fill_pointers(uint8_t *data[4], enum AVPixelFormat pix_fmt, int height,
157 ret = av_image_fill_plane_sizes(sizes, pix_fmt, height, linesizes1);
346 ptrdiff_t bytewidth, int height)
352 for (;height > 0; height--) {
361 ptrdiff_t bytewidth, int height)
367 bytewidth, height);
371 image_copy_plane(dst, dst_linesize, src, src_linesize, bytewidth, height);
376 int bytewidth, int height)
378 image_copy_plane(dst, dst_linesize, src, src_linesize, bytewidth, height);
383 enum AVPixelFormat pix_fmt, int width, int height,
395 width, height);
406 int h = height;
413 h = AV_CEIL_RSHIFT(height, desc->log2_chroma_h);
424 enum AVPixelFormat pix_fmt, int width, int height)
435 width, height, image_copy_plane);
440 enum AVPixelFormat pix_fmt, int width, int height)
443 width, height, av_image_copy_plane_uc_from);
448 int width, int height, int align)
452 ret = av_image_check_size(width, height, 0, NULL);
463 return av_image_fill_pointers(dst_data, pix_fmt, height, (uint8_t *)src, dst_linesize);
467 int width, int height, int align)
477 ret = av_image_check_size(width, height, 0, NULL);
488 ret = av_image_fill_plane_sizes(sizes, pix_fmt, height, aligned_linesize);
505 int width, int height, int align)
508 int size = av_image_get_buffer_size(pix_fmt, width, height, align);
526 h = (height + (1 << shift) - 1) >> shift;
584 int width, int height)
616 for (;height > 0; height--) {
683 int plane_h = ((height + ( 1 << chroma_div) - 1)) >> chroma_div;