Lines Matching defs:height
536 typedef void (*pp_fn)(const uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
539 static inline void postProcess(const uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
573 pp(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c);
827 static void reallocBuffers(PPContext *c, int width, int height, int stride, int qpStride){
829 int mbHeight= (height+15)>>4;
840 c->yHistogram[i]= width*height/64*15/256;
845 reallocAlign((void **)&c->tempBlurredPast[i], 256*((height+7)&(~7))/2 + 17*1024);//FIXME size
860 av_cold pp_context *pp_get_context(int width, int height, int cpuCaps){
886 reallocBuffers(c, width, height, stride, qpStride);
918 int width, int height,
923 int mbHeight= (height+15)>>4;
931 reallocBuffers(c, width, height,
993 width, height, QP_store, QPStride, 0, mode, c);
999 height = (height)>>c->vChromaSubSample;
1003 width, height, QP_store, QPStride, 1, mode, c);
1005 width, height, QP_store, QPStride, 2, mode, c);
1008 linecpy(dst[1], src[1], height, srcStride[1]);
1009 linecpy(dst[2], src[2], height, srcStride[2]);
1012 for(y=0; y<height; y++){