Lines Matching defs:height

175     int height = avctx->height; // Real image height
193 if (c->imgtype == IMGTYPE_RGB24 && len == FFALIGN(width * 3, 4) * height ||
194 c->imgtype == IMGTYPE_YUV111 && len == width * height * 3) {
252 if (len < ((aligned_width * height * bppx2) >> 1))
267 len == width * height * 3) {
304 for (row = 0; row < height; row++) {
319 for (row = 0; row < height; row++) {
336 for (row = 0; row < height; row++) {
350 for (row = 0; row < height; row++) {
363 for (row = 0; row < height/2; row++) {
384 y_out = frame->data[0] + (height - 1) * frame->linesize[0];
385 offset = (height - 1) * frame->linesize[1];
387 offset = (height - 1) * frame->linesize[2];
391 for (row = 0; row < height; row++) {
403 for (row = 0; row < height; row++) {
423 linesize = len < FFALIGN(3 * width, 4) * height ? 3 * width : FFALIGN(3 * width, 4);
424 for (row = height - 1; row >= 0; row--) {
431 for (row = 0; row < height; row++) {
448 for (row = 0; row < height; row++) {
461 u_out = frame->data[1] + ((height >> 1) - 1) * frame->linesize[1];
462 v_out = frame->data[2] + ((height >> 1) - 1) * frame->linesize[2];
463 for (row = 0; row < height - 1; row += 2) {
494 unsigned int basesize = avctx->width * avctx->height;
496 FFALIGN(avctx->height, 4);
521 c->decomp_size = (avctx->width & ~3) * avctx->height * 2;
528 c->decomp_size = FFALIGN(avctx->width*3, 4) * avctx->height;
534 c->decomp_size = (avctx->width & ~3) * avctx->height / 2 * 3;
558 if ((avctx->width % (1<<subsample_h) && !partial_h_supported) || avctx->height % (1<<subsample_v)) {