Lines Matching defs:norm
80 int norm, int input, int channel);
505 * generates XF86VideoEncoding[i] with video norm norm, video input format
510 int norm, int input, int channel)
519 norm_string = VideoNorms[norm].name;
535 enc[i].width = VideoNorms[norm].Wa;
536 enc[i].height = VideoNorms[norm].Ha;
537 enc[i].rate = VideoNorms[norm].rate;
544 * builds XF86VideoEncodings with all legal combinations of video norm,
559 /* allocate memory for video norm array */
560 p->norm = calloc(N_ENCODINGS, sizeof(int));
561 if (NULL == p->norm)
579 p->norm[p->nenc] = n;
588 p->norm[p->nenc] = n;
599 free(p->norm);
600 p->norm = NULL;
734 int norm;
737 norm = pPort->norm[value];
741 DEBUG("SetAttribute XV_ENCODING: %d. norm=%d input=%d channel=%d\n",
742 value, norm, input, channel);
744 /* set video norm */
745 if (!xf86I2CWriteVec(&(pPort->I2CDev), SAA7111VideoStd[norm],
746 ENTRIES(SAA7111VideoStd[norm]) / 2)) {
1025 int norm;
1041 norm = pPort->norm[pPort->Attribute[XV_ENCODING]];
1042 vid_x += VideoNorms[norm].HStart;
1043 vid_y += VideoNorms[norm].VStart;