• Home
  • Raw
  • Download

Lines Matching refs:fmt

73 		unsigned char *buf, const struct v4l2_format *fmt)  in v4lprocessing_update_lookup_tables()  argument
86 if (filters[i]->calculate_lookup_tables(data, buf, fmt)) in v4lprocessing_update_lookup_tables()
93 unsigned char *buf, const struct v4l2_format *fmt) in v4lprocessing_do_processing() argument
97 switch (fmt->fmt.pix.pixelformat) { in v4lprocessing_do_processing()
100 for (y = 0; y < fmt->fmt.pix.height / 2; y++) { in v4lprocessing_do_processing()
101 for (x = 0; x < fmt->fmt.pix.width / 2; x++) { in v4lprocessing_do_processing()
107 buf += fmt->fmt.pix.bytesperline - fmt->fmt.pix.width; in v4lprocessing_do_processing()
108 for (x = 0; x < fmt->fmt.pix.width / 2; x++) { in v4lprocessing_do_processing()
114 buf += fmt->fmt.pix.bytesperline - fmt->fmt.pix.width; in v4lprocessing_do_processing()
120 for (y = 0; y < fmt->fmt.pix.height / 2; y++) { in v4lprocessing_do_processing()
121 for (x = 0; x < fmt->fmt.pix.width / 2; x++) { in v4lprocessing_do_processing()
127 buf += fmt->fmt.pix.bytesperline - fmt->fmt.pix.width; in v4lprocessing_do_processing()
128 for (x = 0; x < fmt->fmt.pix.width / 2; x++) { in v4lprocessing_do_processing()
134 buf += fmt->fmt.pix.bytesperline - fmt->fmt.pix.width; in v4lprocessing_do_processing()
140 for (y = 0; y < fmt->fmt.pix.height; y++) { in v4lprocessing_do_processing()
141 for (x = 0; x < fmt->fmt.pix.width; x++) { in v4lprocessing_do_processing()
149 buf += fmt->fmt.pix.bytesperline - 3 * fmt->fmt.pix.width; in v4lprocessing_do_processing()
156 unsigned char *buf, const struct v4l2_format *fmt) in v4lprocessing_processing() argument
162 switch (fmt->fmt.pix.pixelformat) { in v4lprocessing_processing()
180 v4lprocessing_update_lookup_tables(data, buf, fmt); in v4lprocessing_processing()
185 v4lprocessing_do_processing(data, buf, fmt); in v4lprocessing_processing()