Lines Matching defs:height
3078 static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
3306 static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
3374 if(c.frameNum == 1) yHistogram[0]= width*(uint64_t)height/64*15/256;
3467 for(y=0; y<height; y+=BLOCK_SIZE){
3480 if(y+15 >= height){
3485 FFMAX(height-y-copyAhead, 0), srcStride);
3488 for(i=FFMAX(height-y, 8); i<copyAhead+8; i++)
3489 memcpy(tempSrc + srcStride*i, src + srcStride*(height-1), FFABS(srcStride));
3492 linecpy(tempDst, dstBlock - dstStride, FFMIN(height-y+1, copyAhead+1), dstStride);
3495 for(i=height-y+1; i<=copyAhead; i++)
3496 memcpy(tempDst + dstStride*i, dst + dstStride*(height-1), FFABS(dstStride));
3574 if(y + 8 < height){
3687 if(y+15 >= height){
3690 linecpy(dstBlock, tempDst + dstStride, height-y, dstStride);
3693 for(i=0; i<height-y; i++){