Lines Matching defs:width
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){
828 int mbWidth = (width+15)>>4;
840 c->yHistogram[i]= width*height/64*15/256;
848 reallocAlign((void **)&c->deintTemp, 2*width+32);
860 av_cold pp_context *pp_get_context(int width, int height, int cpuCaps){
862 int stride= FFALIGN(width, 16); //assumed / will realloc if needed
863 int qpStride= (width+15)/16 + 2; //assumed / will realloc if needed
886 reallocBuffers(c, width, height, stride, qpStride);
918 int width, int height,
922 int mbWidth = (width+15)>>4;
931 reallocBuffers(c, width, height,
993 width, height, QP_store, QPStride, 0, mode, c);
998 width = (width )>>c->hChromaSubSample;
1003 width, height, QP_store, QPStride, 1, mode, c);
1005 width, height, QP_store, QPStride, 2, mode, c);
1013 memcpy(&(dst[1][y*dstStride[1]]), &(src[1][y*srcStride[1]]), width);
1014 memcpy(&(dst[2][y*dstStride[2]]), &(src[2][y*srcStride[2]]), width);